Class: Aws::APIGateway::Types::GetUsagePlanKeyRequest

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 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

Instance Attribute Details

#key_idString

[Required] The key Id of the to-be-retrieved UsagePlanKey resource representing a plan customer.

Returns:

  • (String)


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_idString

[Required] The Id of the UsagePlan resource representing the usage plan containing the to-be-retrieved UsagePlanKey resource representing a plan customer.

Returns:

  • (String)


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