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.

Describes a specified task or tasks.

Currently, stopped tasks appear in the returned results for at least one hour.

If you have tasks with tags, and then delete the cluster, the tagged tasks are returned in the response. If you create a new cluster with the same name as the deleted cluster, the tagged tasks are not included in the response.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeTasksAsync.

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

Syntax

C#
public virtual DescribeTasksResponse DescribeTasks(
         DescribeTasksRequest request
)

Parameters

request
Type: Amazon.ECS.Model.DescribeTasksRequest

Container for the necessary parameters to execute the DescribeTasks service method.

Return Value


The response from the DescribeTasks service method, as returned by ECS.

Exceptions

ExceptionCondition
ClientException These errors are usually caused by a client action. This client action might be using an action or resource on behalf of a user that doesn't have permissions to use the action or resource. Or, it might be specifying an identifier that isn't valid. The following list includes additional causes for the error: The RunTask could not be processed because you use managed scaling and there is a capacity error because the quota of tasks in the PROVISIONING per cluster has been reached. For information about the service quotas, see Amazon ECS service quotas.
ClusterNotFoundException The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.
InvalidParameterException The specified parameter isn't valid. Review the available parameters for the API request.
ServerException These errors are usually caused by a server issue.

Examples

This example provides a description of the specified task, using the task UUID as an identifier.

To describe a task


var client = new AmazonECSClient();
var response = client.DescribeTasks(new DescribeTasksRequest 
{
    Tasks = new List<string> {
        "c5cba4eb-5dad-405e-96db-71ef8eefe6a8"
    }
});

List<Failure> failures = response.Failures;
List<Task> tasks = response.Tasks;

            

Version Information

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

See Also