Class: Aws::APIGateway::Types::UpdateVpcLinkRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



8120
8121
8122
8123
8124
8125
# File 'lib/aws-sdk-apigateway/types.rb', line 8120

class UpdateVpcLinkRequest < Struct.new(
  :vpc_link_id,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end

[Required] The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.

Returns:

  • (String)


8120
8121
8122
8123
8124
8125
# File 'lib/aws-sdk-apigateway/types.rb', line 8120

class UpdateVpcLinkRequest < Struct.new(
  :vpc_link_id,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end