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.
5224 5225 5226 5227 5228 5229 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5224 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
5224 5225 5226 5227 5228 5229 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5224 class UpdateApiKeyRequest < Struct.new( :api_key, :patch_operations) SENSITIVE = [] include Aws::Structure end |