Class: Aws::APIGateway::Types::DeleteApiKeyRequest

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 DeleteApiKeyRequest data as a hash:

{
  api_key: "String", # required
}

A request to delete the ApiKey resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyString

[Required] The identifier of the ApiKey resource to be deleted.

Returns:

  • (String)


1636
1637
1638
1639
1640
# File 'lib/aws-sdk-apigateway/types.rb', line 1636

class DeleteApiKeyRequest < Struct.new(
  :api_key)
  SENSITIVE = []
  include Aws::Structure
end