Class: Aws::APIGateway::Types::UpdateApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateApiKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateApiKeyRequest data as a hash:
{
api_key: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
A request to change information about an ApiKey resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_key ⇒ String
[Required] The identifier of the ApiKey resource to be updated.
-
#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
#api_key ⇒ String
[Required] The identifier of the ApiKey resource to be updated.
7229 7230 7231 7232 7233 7234 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7229 class UpdateApiKeyRequest < Struct.new( :api_key, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#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.
7229 7230 7231 7232 7233 7234 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7229 class UpdateApiKeyRequest < Struct.new( :api_key, :patch_operations) SENSITIVE = [] include Aws::Structure end |