Class: Aws::APIGateway::Types::DeleteVpcLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteVpcLinkRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteVpcLinkRequest data as a hash:
{
vpc_link_id: "String", # required
}
Deletes an existing VpcLink of a specified identifier.
Instance Attribute Summary collapse
-
#vpc_link_id ⇒ String
[Required] The identifier of the VpcLink.
Instance Attribute Details
permalink #vpc_link_id ⇒ String
[Required] The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
1940 1941 1942 1943 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1940 class DeleteVpcLinkRequest < Struct.new( :vpc_link_id) include Aws::Structure end |