Class: Aws::ApiGatewayV2::Types::CreateVpcLinkInput

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

Overview

Represents the input parameters for a CreateVpcLink request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the VPC link.

Returns:

  • (String)


2650
2651
2652
2653
2654
2655
2656
2657
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 2650

class CreateVpcLinkInput < Struct.new(
  :name,
  :security_group_ids,
  :subnet_ids,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#security_group_idsArray<String>

A list of security group IDs for the VPC link.

Returns:

  • (Array<String>)


2650
2651
2652
2653
2654
2655
2656
2657
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 2650

class CreateVpcLinkInput < Struct.new(
  :name,
  :security_group_ids,
  :subnet_ids,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

A list of subnet IDs to include in the VPC link.

Returns:

  • (Array<String>)


2650
2651
2652
2653
2654
2655
2656
2657
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 2650

class CreateVpcLinkInput < Struct.new(
  :name,
  :security_group_ids,
  :subnet_ids,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

A list of tags.

Returns:

  • (Hash<String,String>)


2650
2651
2652
2653
2654
2655
2656
2657
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 2650

class CreateVpcLinkInput < Struct.new(
  :name,
  :security_group_ids,
  :subnet_ids,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end