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)


1627
1628
1629
1630
1631
# File 'lib/aws-sdk-apigateway/types.rb', line 1627

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