Class: Aws::APIGateway::Types::DeleteDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteDeploymentRequest data as a hash:
{
rest_api_id: "String", # required
deployment_id: "String", # required
}
Requests Amazon API Gateway to delete a Deployment resource.
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The identifier of the Deployment resource to delete.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#deployment_id ⇒ String
The identifier of the Deployment resource to delete.
1322 1323 1324 1325 1326 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1322 class DeleteDeploymentRequest < Struct.new( :rest_api_id, :deployment_id) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1322 1323 1324 1325 1326 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1322 class DeleteDeploymentRequest < Struct.new( :rest_api_id, :deployment_id) include Aws::Structure end |