NAME
Paws::Batch::ContainerDetail
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::Batch::ContainerDetail object:
$service_obj->Method(Att1 => { Command => $value, ..., Volumes => $value });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::Batch::ContainerDetail object:
$result = $service_obj->Method(...);
$result->Att1->Command
DESCRIPTION
An object representing the details of a container that is part of a job.
ATTRIBUTES
Command => ArrayRef[Str|Undef]
The command that is passed to the container.
ContainerInstanceArn => Str
The Amazon Resource Name (ARN) of the container instance on which the container is running.
Environment => ArrayRef[Paws::Batch::KeyValuePair]
The environment variables to pass to a container.
Environment variables must not start with AWS_BATCH; this naming convention is reserved for variables that are set by the AWS Batch service.
ExitCode => Int
The exit code to return upon completion.
Image => Str
The image used to start the container.
InstanceType => Str
The instance type of the underlying host infrastructure of a multi-node parallel job.
JobRoleArn => Str
The Amazon Resource Name (ARN) associated with the job upon execution.
LinuxParameters => Paws::Batch::LinuxParameters
Linux-specific modifications that are applied to the container, such as details for device mappings.
LogStreamName => Str
The name of the CloudWatch Logs log stream associated with the container. The log group for AWS Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.
Memory => Int
The number of MiB of memory reserved for the job.
MountPoints => ArrayRef[Paws::Batch::MountPoint]
The mount points for data volumes in your container.
NetworkInterfaces => ArrayRef[Paws::Batch::NetworkInterface]
The network interfaces associated with the job.
Privileged => Bool
When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
ReadonlyRootFilesystem => Bool
When this parameter is true, the container is given read-only access to its root file system.
Reason => Str
A short (255 max characters) human-readable string to provide additional details about a running or stopped container.
ResourceRequirements => ArrayRef[Paws::Batch::ResourceRequirement]
The type and amount of a resource to assign to a container. Currently, the only supported resource is GPU.
TaskArn => Str
The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the container job. Each container attempt receives a task ARN when they reach the STARTING status.
Ulimits => ArrayRef[Paws::Batch::Ulimit]
A list of ulimit values to set in the container.
User => Str
The user name to use inside the container.
Vcpus => Int
The number of VCPUs allocated for the job.
Volumes => ArrayRef[Paws::Batch::Volume]
A list of volumes associated with the job.
SEE ALSO
This class forms part of Paws, describing an object used in Paws::Batch
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