Class: Aws::DataZone::Types::VpcPropertiesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::VpcPropertiesInput
- 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
-
#security_group_id ⇒ String
The security group ID of the VPC connection.
-
#subnet_ids ⇒ Array<String>
The subnet IDs of the VPC connection.
-
#vpc_id ⇒ String
The identifier of the VPC.
Instance Attribute Details
#security_group_id ⇒ String
The security group ID of the VPC connection. Must match the pattern ‘^sg-+$`. Maximum length of 32.
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_ids ⇒ Array<String>
The subnet IDs of the VPC connection. You can specify between 1 and 16 subnet IDs.
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_id ⇒ String
The identifier of the VPC. Must match the pattern ‘^vpc-+$`. Maximum length of 32.
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 |