Class: Aws::ApiGatewayV2::Types::CreateVpcLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::CreateVpcLinkRequest
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Note:
When making an API call, you may pass CreateVpcLinkRequest data as a hash:
{
name: "StringWithLengthBetween1And128", # required
security_group_ids: ["__string"],
subnet_ids: ["__string"], # required
tags: {
"__string" => "StringWithLengthBetween1And1600",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A string with a length between [1-128].
-
#security_group_ids ⇒ Array<String>
A list of security group IDs for the VPC link.
-
#subnet_ids ⇒ Array<String>
A list of subnet IDs to include in the VPC link.
-
#tags ⇒ Hash<String,String>
Represents a collection of tags associated with the resource.
Instance Attribute Details
#name ⇒ String
A string with a length between [1-128].
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2946 class CreateVpcLinkRequest < Struct.new( :name, :security_group_ids, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
A list of security group IDs for the VPC link.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2946 class CreateVpcLinkRequest < Struct.new( :name, :security_group_ids, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of subnet IDs to include in the VPC link.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2946 class CreateVpcLinkRequest < Struct.new( :name, :security_group_ids, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Represents a collection of tags associated with the resource.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2946 class CreateVpcLinkRequest < Struct.new( :name, :security_group_ids, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |