Class: Aws::APIGateway::Types::GetApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetApiKeyRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
A request to get information about the current ApiKey resource.
Constant Summary collapse
- SENSITIVE =
[]
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
#api_key ⇒ String
The identifier of the ApiKey resource.
2285 2286 2287 2288 2289 2290 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2285 class GetApiKeyRequest < Struct.new( :api_key, :include_value) SENSITIVE = [] include Aws::Structure end |
#include_value ⇒ Boolean
A boolean flag to specify whether (true
) or not (false
) the
result contains the key value.
2285 2286 2287 2288 2289 2290 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2285 class GetApiKeyRequest < Struct.new( :api_key, :include_value) SENSITIVE = [] include Aws::Structure end |