Class: Aws::APIGateway::Types::UpdateRestApiRequest

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 UpdateRestApiRequest data as a hash:

{
  rest_api_id: "String", # required
  patch_operations: [
    {
      op: "add", # accepts add, remove, replace, move, copy, test
      path: "String",
      value: "String",
      from: "String",
    },
  ],
}

Request to update an existing RestApi resource in your collection.

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:



7886
7887
7888
7889
7890
7891
# File 'lib/aws-sdk-apigateway/types.rb', line 7886

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

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


7886
7887
7888
7889
7890
7891
# File 'lib/aws-sdk-apigateway/types.rb', line 7886

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