NAME
Paws::ECS::TaskDefinition
USAGE
This class represents one of two things:
Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::ECS::TaskDefinition object:
$service_obj->Method(Att1 => { ContainerDefinitions => $value, ..., Volumes => $value });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::ECS::TaskDefinition object:
$result = $service_obj->Method(...);
$result->Att1->ContainerDefinitions
DESCRIPTION
Details of a task definition.
ATTRIBUTES
ContainerDefinitions => ArrayRef[Paws::ECS::ContainerDefinition]
A list of container definitions in JSON format that describe the
different containers that make up your task. For more information about
container definition parameters and defaults, see Amazon ECS Task
Definitions in the I<Amazon EC2 Container Service Developer Guide>.
Family => Str
The family of your task definition, used as the definition name.
RequiresAttributes => ArrayRef[Paws::ECS::Attribute]
The container instance attributes required by your task.
Revision => Int
The revision of the task in a particular family. The revision is a
version number of a task definition in a family. When you register a
task definition for the first time, the revision is C<1>; each time you
register a new revision of a task definition in the same family, the
revision value always increases by one (even if you have deregistered
previous revisions in this family).
Status => Str
The status of the task definition.
TaskDefinitionArn => Str
The full Amazon Resource Name (ARN) of the of the task definition.
Volumes => ArrayRef[Paws::ECS::Volume]
The list of volumes in a task. For more information about volume
definition parameters and defaults, see Amazon ECS Task Definitions in
the I<Amazon EC2 Container Service Developer Guide>.
SEE ALSO
This class forms part of Paws, describing an object used in Paws::ECS
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues