#[non_exhaustive]
pub struct AwsEcsTaskDefinitionDetails {
Show 15 fields pub container_definitions: Option<Vec<AwsEcsTaskDefinitionContainerDefinitionsDetails>>, pub cpu: Option<String>, pub execution_role_arn: Option<String>, pub family: Option<String>, pub inference_accelerators: Option<Vec<AwsEcsTaskDefinitionInferenceAcceleratorsDetails>>, pub ipc_mode: Option<String>, pub memory: Option<String>, pub network_mode: Option<String>, pub pid_mode: Option<String>, pub placement_constraints: Option<Vec<AwsEcsTaskDefinitionPlacementConstraintsDetails>>, pub proxy_configuration: Option<AwsEcsTaskDefinitionProxyConfigurationDetails>, pub requires_compatibilities: Option<Vec<String>>, pub task_role_arn: Option<String>, pub volumes: Option<Vec<AwsEcsTaskDefinitionVolumesDetails>>, pub status: Option<String>,
}
Expand description

Details about a task definition. A task definition describes the container and volume definitions of an Amazon Elastic Container Service task.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§container_definitions: Option<Vec<AwsEcsTaskDefinitionContainerDefinitionsDetails>>

The container definitions that describe the containers that make up the task.

§cpu: Option<String>

The number of CPU units used by the task.Valid values are as follows:

  • 256 (.25 vCPU)

  • 512 (.5 vCPU)

  • 1024 (1 vCPU)

  • 2048 (2 vCPU)

  • 4096 (4 vCPU)

§execution_role_arn: Option<String>

The ARN of the task execution role that grants the container agent permission to make API calls on behalf of the container user.

§family: Option<String>

The name of a family that this task definition is registered to.

§inference_accelerators: Option<Vec<AwsEcsTaskDefinitionInferenceAcceleratorsDetails>>

The Elastic Inference accelerators to use for the containers in the task.

§ipc_mode: Option<String>

The inter-process communication (IPC) resource namespace to use for the containers in the task. Valid values are as follows:

  • host

  • none

  • task

§memory: Option<String>

The amount (in MiB) of memory used by the task.

For tasks that are hosted on Amazon EC2, you can provide a task-level memory value or a container-level memory value. For tasks that are hosted on Fargate, you must use one of the specified values in the Amazon Elastic Container Service Developer Guide , which determines your range of supported values for the Cpu and Memory parameters.

§network_mode: Option<String>

The Docker networking mode to use for the containers in the task. Valid values are as follows:

  • awsvpc

  • bridge

  • host

  • none

§pid_mode: Option<String>

The process namespace to use for the containers in the task. Valid values are host or task.

§placement_constraints: Option<Vec<AwsEcsTaskDefinitionPlacementConstraintsDetails>>

The placement constraint objects to use for tasks.

§proxy_configuration: Option<AwsEcsTaskDefinitionProxyConfigurationDetails>

The configuration details for the App Mesh proxy.

§requires_compatibilities: Option<Vec<String>>

The task launch types that the task definition was validated against.

§task_role_arn: Option<String>

The short name or ARN of the IAM role that grants containers in the task permission to call Amazon Web Services API operations on your behalf.

§volumes: Option<Vec<AwsEcsTaskDefinitionVolumesDetails>>

The data volume definitions for the task.

§status: Option<String>

The status of the task definition.

Implementations§

source§

impl AwsEcsTaskDefinitionDetails

source

pub fn container_definitions( &self ) -> &[AwsEcsTaskDefinitionContainerDefinitionsDetails]

The container definitions that describe the containers that make up the task.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .container_definitions.is_none().

source

pub fn cpu(&self) -> Option<&str>

The number of CPU units used by the task.Valid values are as follows:

  • 256 (.25 vCPU)

  • 512 (.5 vCPU)

  • 1024 (1 vCPU)

  • 2048 (2 vCPU)

  • 4096 (4 vCPU)

source

pub fn execution_role_arn(&self) -> Option<&str>

The ARN of the task execution role that grants the container agent permission to make API calls on behalf of the container user.

source

pub fn family(&self) -> Option<&str>

The name of a family that this task definition is registered to.

source

pub fn inference_accelerators( &self ) -> &[AwsEcsTaskDefinitionInferenceAcceleratorsDetails]

The Elastic Inference accelerators to use for the containers in the task.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .inference_accelerators.is_none().

source

pub fn ipc_mode(&self) -> Option<&str>

The inter-process communication (IPC) resource namespace to use for the containers in the task. Valid values are as follows:

  • host

  • none

  • task

source

pub fn memory(&self) -> Option<&str>

The amount (in MiB) of memory used by the task.

For tasks that are hosted on Amazon EC2, you can provide a task-level memory value or a container-level memory value. For tasks that are hosted on Fargate, you must use one of the specified values in the Amazon Elastic Container Service Developer Guide , which determines your range of supported values for the Cpu and Memory parameters.

source

pub fn network_mode(&self) -> Option<&str>

The Docker networking mode to use for the containers in the task. Valid values are as follows:

  • awsvpc

  • bridge

  • host

  • none

source

pub fn pid_mode(&self) -> Option<&str>

The process namespace to use for the containers in the task. Valid values are host or task.

source

pub fn placement_constraints( &self ) -> &[AwsEcsTaskDefinitionPlacementConstraintsDetails]

The placement constraint objects to use for tasks.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .placement_constraints.is_none().

source

pub fn proxy_configuration( &self ) -> Option<&AwsEcsTaskDefinitionProxyConfigurationDetails>

The configuration details for the App Mesh proxy.

source

pub fn requires_compatibilities(&self) -> &[String]

The task launch types that the task definition was validated against.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .requires_compatibilities.is_none().

source

pub fn task_role_arn(&self) -> Option<&str>

The short name or ARN of the IAM role that grants containers in the task permission to call Amazon Web Services API operations on your behalf.

source

pub fn volumes(&self) -> &[AwsEcsTaskDefinitionVolumesDetails]

The data volume definitions for the task.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .volumes.is_none().

source

pub fn status(&self) -> Option<&str>

The status of the task definition.

source§

impl AwsEcsTaskDefinitionDetails

source

pub fn builder() -> AwsEcsTaskDefinitionDetailsBuilder

Creates a new builder-style object to manufacture AwsEcsTaskDefinitionDetails.

Trait Implementations§

source§

impl Clone for AwsEcsTaskDefinitionDetails

source§

fn clone(&self) -> AwsEcsTaskDefinitionDetails

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AwsEcsTaskDefinitionDetails

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for AwsEcsTaskDefinitionDetails

source§

fn eq(&self, other: &AwsEcsTaskDefinitionDetails) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for AwsEcsTaskDefinitionDetails

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more