Class: Aws::APIGateway::Types::DeleteMethodResponseRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteMethodResponseRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteMethodResponseRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
http_method: "String", # required
status_code: "StatusCode", # required
}
A request to delete an existing MethodResponse resource.
Instance Attribute Summary collapse
-
#http_method ⇒ String
The HTTP verb of the Method resource.
-
#resource_id ⇒ String
The Resource identifier for the MethodResponse resource.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
-
#status_code ⇒ String
The status code identifier for the MethodResponse resource.
Instance Attribute Details
#http_method ⇒ String
The HTTP verb of the Method resource.
1565 1566 1567 1568 1569 1570 1571 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1565 class DeleteMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#resource_id ⇒ String
The Resource identifier for the MethodResponse resource.
1565 1566 1567 1568 1569 1570 1571 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1565 class DeleteMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1565 1566 1567 1568 1569 1570 1571 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1565 class DeleteMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#status_code ⇒ String
The status code identifier for the MethodResponse resource.
1565 1566 1567 1568 1569 1570 1571 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1565 class DeleteMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |