Class: Aws::APIGateway::Types::UpdateApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateApiKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
A request to change information about an ApiKey resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_key ⇒ String
The identifier of the ApiKey resource to be updated.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
Instance Attribute Details
#api_key ⇒ String
The identifier of the ApiKey resource to be updated.
5238 5239 5240 5241 5242 5243 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5238 class UpdateApiKeyRequest < Struct.new( :api_key, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html
5238 5239 5240 5241 5242 5243 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5238 class UpdateApiKeyRequest < Struct.new( :api_key, :patch_operations) SENSITIVE = [] include Aws::Structure end |