[−][src]Struct rusoto_batch::ContainerDetail
An object representing the details of a container that is part of a job.
Fields
command: Option<Vec<String>>
The command that is passed to the container.
container_instance_arn: Option<String>
The Amazon Resource Name (ARN) of the container instance on which the container is running.
environment: Option<Vec<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.
exit_code: Option<i64>
The exit code to return upon completion.
image: Option<String>
The image used to start the container.
instance_type: Option<String>
The instance type of the underlying host infrastructure of a multi-node parallel job.
job_role_arn: Option<String>
The Amazon Resource Name (ARN) associated with the job upon execution.
log_stream_name: Option<String>
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: Option<i64>
The number of MiB of memory reserved for the job.
mount_points: Option<Vec<MountPoint>>
The mount points for data volumes in your container.
network_interfaces: Option<Vec<NetworkInterface>>
The network interfaces associated with the job.
privileged: Option<bool>
When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root
user).
readonly_root_filesystem: Option<bool>
When this parameter is true, the container is given read-only access to its root file system.
reason: Option<String>
A short (255 max characters) human-readable string to provide additional details about a running or stopped container.
resource_requirements: Option<Vec<ResourceRequirement>>
The type and amount of a resource to assign to a container. Currently, the only supported resource is GPU
.
task_arn: Option<String>
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: Option<Vec<Ulimit>>
A list of ulimit
values to set in the container.
user: Option<String>
The user name to use inside the container.
vcpus: Option<i64>
The number of VCPUs allocated for the job.
volumes: Option<Vec<Volume>>
A list of volumes associated with the job.
Trait Implementations
impl PartialEq<ContainerDetail> for ContainerDetail
[src]
fn eq(&self, other: &ContainerDetail) -> bool
[src]
fn ne(&self, other: &ContainerDetail) -> bool
[src]
impl Default for ContainerDetail
[src]
fn default() -> ContainerDetail
[src]
impl Clone for ContainerDetail
[src]
fn clone(&self) -> ContainerDetail
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ContainerDetail
[src]
impl<'de> Deserialize<'de> for ContainerDetail
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ContainerDetail
impl Sync for ContainerDetail
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self