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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
[Required] The key Id of the to-be-retrieved UsagePlanKey resource representing a plan customer.
-
#usage_plan_id ⇒ String
[Required] 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
[Required] The key Id of the to-be-retrieved UsagePlanKey resource representing a plan customer.
4243 4244 4245 4246 4247 4248 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4243 class GetUsagePlanKeyRequest < Struct.new( :usage_plan_id, :key_id) SENSITIVE = [] include Aws::Structure end |
#usage_plan_id ⇒ String
[Required] The Id of the UsagePlan resource representing the usage plan containing the to-be-retrieved UsagePlanKey resource representing a plan customer.
4243 4244 4245 4246 4247 4248 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4243 class GetUsagePlanKeyRequest < Struct.new( :usage_plan_id, :key_id) SENSITIVE = [] include Aws::Structure end |