Class: Aws::APIGateway::Types::UpdateAccountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateAccountRequest
- 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
-
#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.
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.
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 |