Class: Aws::APIGateway::Types::DeleteModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to delete an existing model in an existing RestApi resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_name ⇒ String
The name of the model to delete.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#model_name ⇒ String
The name of the model to delete.
1468 1469 1470 1471 1472 1473 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1468 class DeleteModelRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1468 1469 1470 1471 1472 1473 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1468 class DeleteModelRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end |