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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_key ⇒ String
[Required] The identifier of the ApiKey resource to be deleted.
Instance Attribute Details
#api_key ⇒ String
[Required] The identifier of the ApiKey resource to be deleted.
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 |