Class: Aws::APIGateway::Types::GetUsagePlanKeysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetUsagePlanKeysRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
When making an API call, you may pass GetUsagePlanKeysRequest data as a hash:
{
usage_plan_id: "String", # required
position: "String",
limit: 1,
name_query: "String",
}
The GET request to get all the usage plan keys representing the API keys added to a specified usage plan.
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of returned results per page.
-
#name_query ⇒ String
A query parameter specifying the name of the to-be-returned usage plan keys.
-
#position ⇒ String
The current pagination position in the paged result set.
-
#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
permalink #limit ⇒ Integer
The maximum number of returned results per page.
3966 3967 3968 3969 3970 3971 3972 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3966 class GetUsagePlanKeysRequest < Struct.new( :usage_plan_id, :position, :limit, :name_query) include Aws::Structure end |
permalink #name_query ⇒ String
A query parameter specifying the name of the to-be-returned usage plan keys.
3966 3967 3968 3969 3970 3971 3972 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3966 class GetUsagePlanKeysRequest < Struct.new( :usage_plan_id, :position, :limit, :name_query) include Aws::Structure end |
permalink #position ⇒ String
The current pagination position in the paged result set.
3966 3967 3968 3969 3970 3971 3972 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3966 class GetUsagePlanKeysRequest < Struct.new( :usage_plan_id, :position, :limit, :name_query) include Aws::Structure end |
permalink #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.
3966 3967 3968 3969 3970 3971 3972 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3966 class GetUsagePlanKeysRequest < Struct.new( :usage_plan_id, :position, :limit, :name_query) include Aws::Structure end |