Class: Aws::APIGateway::Types::UpdateAccountRequest

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

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

Requests API Gateway to change information about the current Account resource.

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:



7197
7198
7199
7200
7201
# File 'lib/aws-sdk-apigateway/types.rb', line 7197

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