Struct aws_sdk_batch::model::Ec2Configuration [−][src]
#[non_exhaustive]pub struct Ec2Configuration {
pub image_type: Option<String>,
pub image_id_override: Option<String>,
}
Expand description
Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If
Ec2Configuration
isn't specified, the default is currently ECS_AL1
(Amazon Linux) for
non-GPU, non AWSGraviton instances. Starting on March 31, 2021, this default will be changing to ECS_AL2
(Amazon Linux
2).
This object isn't applicable to jobs that are running on Fargate resources.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image_type: Option<String>
The image type to match with the instance type to select an AMI. If the imageIdOverride
parameter
isn't specified, then a recent Amazon ECS-optimized AMI (ECS_AL1
) is
used. Starting on March 31, 2021, this default will be changing to ECS_AL2
(Amazon Linux 2).
- ECS_AL2
-
Amazon Linux 2− Default for all Amazon Web Services Graviton-based instance families (for example,
C6g
,M6g
,R6g
, andT4g
) and can be used for all non-GPU instance types. - ECS_AL2_NVIDIA
-
Amazon Linux 2 (GPU)−Default for all GPU instance families (for example
P4
andG4
) and can be used for all non Amazon Web Services Graviton-based instance types. - ECS_AL1
-
Amazon Linux−Default for all non-GPU, non Amazon Web Services Graviton instance families. Amazon Linux is reaching the end-of-life of standard support. For more information, see Amazon Linux AMI.
image_id_override: Option<String>
The AMI ID used for instances launched in the compute environment that match the image type. This setting
overrides the imageId
set in the computeResource
object.
Implementations
Creates a new builder-style object to manufacture Ec2Configuration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for Ec2Configuration
impl Send for Ec2Configuration
impl Sync for Ec2Configuration
impl Unpin for Ec2Configuration
impl UnwindSafe for Ec2Configuration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more