AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the StopServiceDeployment operation. Stops an ongoing service deployment.

The following stop types are avaiable:

For more information, see Stopping Amazon ECS service deployments in the Amazon Elastic Container Service Developer Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ECS.AmazonECSRequest
      Amazon.ECS.Model.StopServiceDeploymentRequest

Namespace: Amazon.ECS.Model
Assembly: AWSSDK.ECS.dll
Version: 3.x.y.z

Syntax

C#
public class StopServiceDeploymentRequest : AmazonECSRequest
         IAmazonWebServiceRequest

The StopServiceDeploymentRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ServiceDeploymentArn System.String

Gets and sets the property ServiceDeploymentArn.

The ARN of the service deployment that you want to stop.

Public Property StopType Amazon.ECS.StopServiceDeploymentStopType

Gets and sets the property StopType.

How you want Amazon ECS to stop the service.

The valid values are ROLLBACK.

Examples

This example stops the service deployment using the ROLLBACK option.

To stop a service deployment


var client = new AmazonECSClient();
var response = client.StopServiceDeployment(new StopServiceDeploymentRequest 
{
    ServiceDeploymentArn = "arn:aws:ecs:us-east-1:123456789012:service-deployment/MyCluster/MyService/r9i43YFjvgF_xlg7m2eJ1r",
    StopType = "ROLLBACK"
});

string serviceDeploymentArn = response.ServiceDeploymentArn;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5