Class: Aws::APIGateway::Types::DeleteIntegrationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteIntegrationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteIntegrationRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
http_method: "String", # required
}
Represents a delete integration request.
Instance Attribute Summary collapse
-
#http_method ⇒ String
Specifies a delete integration request’s HTTP method.
-
#resource_id ⇒ String
Specifies a delete integration request’s resource identifier.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#http_method ⇒ String
Specifies a delete integration request’s HTTP method.
1657 1658 1659 1660 1661 1662 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1657 class DeleteIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |
#resource_id ⇒ String
Specifies a delete integration request’s resource identifier.
1657 1658 1659 1660 1661 1662 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1657 class DeleteIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1657 1658 1659 1660 1661 1662 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1657 class DeleteIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |