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

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

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyString

The identifier of the ApiKey resource to be updated.

Returns:

  • (String)


5926
5927
5928
5929
5930
# File 'lib/aws-sdk-apigateway/types.rb', line 5926

class UpdateApiKeyRequest < Struct.new(
  :api_key,
  :patch_operations)
  include Aws::Structure
end

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



5926
5927
5928
5929
5930
# File 'lib/aws-sdk-apigateway/types.rb', line 5926

class UpdateApiKeyRequest < Struct.new(
  :api_key,
  :patch_operations)
  include Aws::Structure
end