Class: Aws::APIGateway::Types::UpdateVpcLinkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateVpcLinkRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateVpcLinkRequest data as a hash:
{
vpc_link_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Updates an existing VpcLink of a specified identifier.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
-
#vpc_link_id ⇒ String
[Required] The identifier of the VpcLink.
Instance Attribute Details
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
8036 8037 8038 8039 8040 8041 |
# File 'lib/aws-sdk-apigateway/types.rb', line 8036 class UpdateVpcLinkRequest < Struct.new( :vpc_link_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#vpc_link_id ⇒ String
[Required] The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
8036 8037 8038 8039 8040 8041 |
# File 'lib/aws-sdk-apigateway/types.rb', line 8036 class UpdateVpcLinkRequest < Struct.new( :vpc_link_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |