Class: Aws::APIGateway::Types::DeleteApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteApiKeyRequest
- 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
-
#api_key ⇒ String
The identifier of the ApiKey resource to be deleted.
Instance Attribute Details
#api_key ⇒ String
The identifier of the ApiKey resource to be deleted.
1233 1234 1235 1236 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1233 class DeleteApiKeyRequest < Struct.new( :api_key) include Aws::Structure end |