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.

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyString

The identifier of the ApiKey resource to be deleted.

Returns:

  • (String)


1233
1234
1235
1236
# File 'lib/aws-sdk-apigateway/types.rb', line 1233

class DeleteApiKeyRequest < Struct.new(
  :api_key)
  include Aws::Structure
end