Class: Aws::APIGateway::Types::CreateUsagePlanRequest

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

Overview

The POST request to create a usage plan with the name, description, throttle limits and quota limits, as well as the associated API stages, specified in the payload.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_stagesArray<Types::ApiStage>

The associated API stages of the usage plan.

Returns:



1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the usage plan.

Returns:

  • (String)


1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the usage plan.

Returns:

  • (String)


1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#quotaTypes::QuotaSettings

The quota of the usage plan.



1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

Returns:

  • (Hash<String,String>)


1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#throttleTypes::ThrottleSettings

The throttling limits of the usage plan.



1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1173

class CreateUsagePlanRequest < Struct.new(
  :name,
  :description,
  :api_stages,
  :throttle,
  :quota,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end