Class: Aws::APIGateway::Types::DeleteVpcLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteVpcLinkRequest
- Defined in:
- gems/aws-sdk-apigateway/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2159 class DeleteVpcLinkRequest < Struct.new( :vpc_link_id) SENSITIVE = [] include Aws::Structure end |