Class: Aws::DataZone::Types::VpcPropertiesInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

The VPC connection properties used when creating a connection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idString

The security group ID of the VPC connection. Must match the pattern ‘^sg-+$`. Maximum length of 32.

Returns:

  • (String)


25298
25299
25300
25301
25302
25303
25304
# File 'lib/aws-sdk-datazone/types.rb', line 25298

class VpcPropertiesInput < Struct.new(
  :vpc_id,
  :subnet_ids,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

The subnet IDs of the VPC connection. You can specify between 1 and 16 subnet IDs.

Returns:

  • (Array<String>)


25298
25299
25300
25301
25302
25303
25304
# File 'lib/aws-sdk-datazone/types.rb', line 25298

class VpcPropertiesInput < Struct.new(
  :vpc_id,
  :subnet_ids,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_idString

The identifier of the VPC. Must match the pattern ‘^vpc-+$`. Maximum length of 32.

Returns:

  • (String)


25298
25299
25300
25301
25302
25303
25304
# File 'lib/aws-sdk-datazone/types.rb', line 25298

class VpcPropertiesInput < Struct.new(
  :vpc_id,
  :subnet_ids,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end