Struct aws_sdk_batch::model::Ec2Configuration
source · [−]#[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 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 Amazon Linux 2 AMI (ECS_AL2
) is used.
- ECS_AL2
-
Amazon Linux 2− Default for all non-GPU instance families.
- 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. 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
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 Amazon Linux 2 AMI (ECS_AL2
) is used.
- ECS_AL2
-
Amazon Linux 2− Default for all non-GPU instance families.
- 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. Amazon Linux is reaching the end-of-life of standard support. For more information, see Amazon Linux AMI.
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.
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