interface RuntimePlatformProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.RuntimePlatformProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_RuntimePlatformProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.RuntimePlatformProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.RuntimePlatformProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnJobDefinition » RuntimePlatformProperty |
An object that represents the compute environment architecture for AWS Batch jobs on Fargate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const runtimePlatformProperty: batch.CfnJobDefinition.RuntimePlatformProperty = {
cpuArchitecture: 'cpuArchitecture',
operatingSystemFamily: 'operatingSystemFamily',
};
Properties
| Name | Type | Description |
|---|---|---|
| cpu | string | The vCPU architecture. The default value is X86_64 . Valid values are X86_64 and ARM64 . |
| operating | string | The operating system for the compute environment. |
cpuArchitecture?
Type:
string
(optional)
The vCPU architecture. The default value is X86_64 . Valid values are X86_64 and ARM64 .
This parameter must be set to
X86_64for Windows containers. > Fargate Spot is not supported on Windows-based containers on Fargate. A job queue will be blocked if a Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach bothFARGATEandFARGATE_SPOTcompute environments to the same job queue.
operatingSystemFamily?
Type:
string
(optional)
The operating system for the compute environment.
Valid values are: LINUX (default), WINDOWS_SERVER_2019_CORE , WINDOWS_SERVER_2019_FULL , WINDOWS_SERVER_2022_CORE , and WINDOWS_SERVER_2022_FULL .
The following parameters can’t be set for Windows containers:
linuxParameters,privileged,user,ulimits,readonlyRootFilesystem, andefsVolumeConfiguration. > The AWS Batch Scheduler checks the compute environments that are attached to the job queue before registering a task definition with Fargate. In this scenario, the job queue is where the job is submitted. If the job requires a Windows container and the first compute environment isLINUX, the compute environment is skipped and the next compute environment is checked until a Windows-based compute environment is found. > Fargate Spot is not supported on Windows-based containers on Fargate. A job queue will be blocked if a Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach bothFARGATEandFARGATE_SPOTcompute environments to the same job queue.

.NET
Go
Java
Python
TypeScript