Class: Aws::APIGateway::Types::GetVpcLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetVpcLinkRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetVpcLinkRequest data as a hash:
{
vpc_link_id: "String", # required
}
Gets a specified VPC link under the caller’s account in a region.
Instance Attribute Summary collapse
-
#vpc_link_id ⇒ String
[Required] The identifier of the VpcLink.
Instance Attribute Details
#vpc_link_id ⇒ String
[Required] The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
4085 4086 4087 4088 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4085 class GetVpcLinkRequest < Struct.new( :vpc_link_id) include Aws::Structure end |