Class: Aws::DataZone::Types::VpcPropertiesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::VpcPropertiesInput
- Defined in:
- gems/aws-sdk-datazone/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-[a-z0-9]+$. Maximum length of 32.
25337 25338 25339 25340 25341 25342 25343 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25337 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.
25337 25338 25339 25340 25341 25342 25343 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25337 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-[a-z0-9]+$.
Maximum length of 32.
25337 25338 25339 25340 25341 25342 25343 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25337 class VpcPropertiesInput < Struct.new( :vpc_id, :subnet_ids, :security_group_id) SENSITIVE = [] include Aws::Structure end |