Class: Aws::APIGateway::Types::DeleteModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteModelRequest data as a hash:
{
rest_api_id: "String", # required
model_name: "String", # required
}
Request to delete an existing model in an existing RestApi resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_name ⇒ String
[Required] The name of the model to delete.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#model_name ⇒ String
[Required] The name of the model to delete.
1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1997 class DeleteModelRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1997 class DeleteModelRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end |