Class: Aws::APIGateway::Types::GetApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetApiKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetApiKeyRequest data as a hash:
{
api_key: "String", # required
include_value: false,
}
A request to get information about the current ApiKey resource.
Instance Attribute Summary collapse
-
#api_key ⇒ String
The identifier of the ApiKey resource.
-
#include_value ⇒ Boolean
A boolean flag to specify whether (‘true`) or not (`false`) the result contains the key value.
Instance Attribute Details
permalink #api_key ⇒ String
The identifier of the ApiKey resource.
2743 2744 2745 2746 2747 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2743 class GetApiKeyRequest < Struct.new( :api_key, :include_value) include Aws::Structure end |
permalink #include_value ⇒ Boolean
A boolean flag to specify whether (‘true`) or not (`false`) the result contains the key value.
2743 2744 2745 2746 2747 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2743 class GetApiKeyRequest < Struct.new( :api_key, :include_value) include Aws::Structure end |