GetTaskDefinitionResult

data class GetTaskDefinitionResult(val arn: String, val arnWithoutRevision: String, val executionRoleArn: String, val family: String, val id: String, val networkMode: String, val revision: Int, val status: String, val taskDefinition: String, val taskRoleArn: String)

A collection of values returned by getTaskDefinition.

Constructors

Link copied to clipboard
constructor(arn: String, arnWithoutRevision: String, executionRoleArn: String, family: String, id: String, networkMode: String, revision: Int, status: String, taskDefinition: String, taskRoleArn: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arn: String

ARN of the task definition.

Link copied to clipboard

ARN of the Task Definition with the trailing revision removed. This may be useful for situations where the latest task definition is always desired. If a revision isn't specified, the latest ACTIVE revision is used. See the AWS documentation for details.

Link copied to clipboard

ARN of the task execution role that the Amazon ECS container agent and the Docker.

Link copied to clipboard

Family of this task definition.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

Docker networking mode to use for the containers in this task.

Link copied to clipboard

Revision of this task definition.

Link copied to clipboard

Status of this task definition.

Link copied to clipboard
Link copied to clipboard

ARN of the IAM role that containers in this task can assume.