Class: Aws::APIGateway::Types::DeleteUsagePlanRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteUsagePlanRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteUsagePlanRequest data as a hash:
{
usage_plan_id: "String", # required
}
The DELETE request to delete a usage plan of a given plan Id.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#usage_plan_id ⇒ String
The Id of the to-be-deleted usage plan.
Instance Attribute Details
#usage_plan_id ⇒ String
The Id of the to-be-deleted usage plan.
1994 1995 1996 1997 1998 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1994 class DeleteUsagePlanRequest < Struct.new( :usage_plan_id) SENSITIVE = [] include Aws::Structure end |