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 DescribeServices operation. Describes the specified services running in your cluster.

Inheritance Hierarchy

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

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

Syntax

C#
public class DescribeServicesRequest : AmazonECSRequest
         IAmazonWebServiceRequest

The DescribeServicesRequest type exposes the following members

Constructors

NameDescription
Public Method DescribeServicesRequest()

Properties

NameTypeDescription
Public Property Cluster System.String

Gets and sets the property Cluster.

The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.

Public Property Include System.Collections.Generic.List<System.String>

Gets and sets the property Include.

Determines whether you want to see the resource tags for the service. If TAGS is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.

Public Property Services System.Collections.Generic.List<System.String>

Gets and sets the property Services.

A list of services to describe. You may specify up to 10 services to describe in a single operation.

Examples

This example provides descriptive information about the service named ``ecs-simple-service``.

To describe a service


var client = new AmazonECSClient();
var response = client.DescribeServices(new DescribeServicesRequest 
{
    Services = new List<string> {
        "ecs-simple-service"
    }
});

List<Failure> failures = response.Failures;
List<Service> services = response.Services;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5