Class: Aws::APIGateway::Types::DeleteUsagePlanRequest

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 DeleteUsagePlanRequest data as a hash:

{
  usage_plan_id: "String", # required
}

The DELETE request to delete a usage plan of a given plan Id.

Instance Attribute Summary collapse

Instance Attribute Details

#usage_plan_idString

[Required] The Id of the to-be-deleted usage plan.

Returns:

  • (String)


2074
2075
2076
2077
# File 'lib/aws-sdk-apigateway/types.rb', line 2074

class DeleteUsagePlanRequest < Struct.new(
  :usage_plan_id)
  include Aws::Structure
end