Class: Aws::APIGateway::Types::GetUsagePlanKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetUsagePlanKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetUsagePlanKeyRequest data as a hash:
{
usage_plan_id: "String", # required
key_id: "String", # required
}
The GET request to get a usage plan key of a given key identifier.
Instance Attribute Summary collapse
-
#key_id ⇒ String
The key Id of the to-be-retrieved UsagePlanKey resource representing a plan customer.
-
#usage_plan_id ⇒ String
The Id of the UsagePlan resource representing the usage plan containing the to-be-retrieved UsagePlanKey resource representing a plan customer.
Instance Attribute Details
#key_id ⇒ String
The key Id of the to-be-retrieved UsagePlanKey resource representing a plan customer.
3539 3540 3541 3542 3543 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3539 class GetUsagePlanKeyRequest < Struct.new( :usage_plan_id, :key_id) include Aws::Structure end |
#usage_plan_id ⇒ String
The Id of the UsagePlan resource representing the usage plan containing the to-be-retrieved UsagePlanKey resource representing a plan customer.
3539 3540 3541 3542 3543 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3539 class GetUsagePlanKeyRequest < Struct.new( :usage_plan_id, :key_id) include Aws::Structure end |