Class: Aws::APIGateway::Types::GetUsagePlansRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Note:

When making an API call, you may pass GetUsagePlansRequest data as a hash:

{
  position: "String",
  key_id: "String",
  limit: 1,
}

The GET request to get all the usage plans of the caller’s account.

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

The identifier of the API key associated with the usage plans.

Returns:

  • (String)


4235
4236
4237
4238
4239
4240
# File 'lib/aws-sdk-apigateway/types.rb', line 4235

class GetUsagePlansRequest < Struct.new(
  :position,
  :key_id,
  :limit)
  include Aws::Structure
end

#limitInteger

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

Returns:

  • (Integer)


4235
4236
4237
4238
4239
4240
# File 'lib/aws-sdk-apigateway/types.rb', line 4235

class GetUsagePlansRequest < Struct.new(
  :position,
  :key_id,
  :limit)
  include Aws::Structure
end

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)


4235
4236
4237
4238
4239
4240
# File 'lib/aws-sdk-apigateway/types.rb', line 4235

class GetUsagePlansRequest < Struct.new(
  :position,
  :key_id,
  :limit)
  include Aws::Structure
end