Class: Aws::APIGateway::Types::UpdateApiKeyRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#api_keyString

The identifier of the ApiKey resource to be updated.

Returns:

  • (String)


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_operationsArray<Types::PatchOperation>

For more information about supported patch operations, see [Patch Operations].

[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html

Returns:



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