public static interface CfnTaskDefinition.RuntimePlatformProperty
For more information about RuntimePlatform
, see RuntimePlatform in the Amazon Elastic Container Service Developer Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ecs.*; RuntimePlatformProperty runtimePlatformProperty = RuntimePlatformProperty.builder() .cpuArchitecture("cpuArchitecture") .operatingSystemFamily("operatingSystemFamily") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTaskDefinition.RuntimePlatformProperty.Builder
A builder for
CfnTaskDefinition.RuntimePlatformProperty |
static class |
CfnTaskDefinition.RuntimePlatformProperty.Jsii$Proxy
An implementation for
CfnTaskDefinition.RuntimePlatformProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTaskDefinition.RuntimePlatformProperty.Builder |
builder() |
default java.lang.String |
getCpuArchitecture()
The CPU architecture.
|
default java.lang.String |
getOperatingSystemFamily()
The operating system.
|
default java.lang.String getCpuArchitecture()
You can run your Linux tasks on an ARM-based platform by setting the value to ARM64
. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
default java.lang.String getOperatingSystemFamily()
static CfnTaskDefinition.RuntimePlatformProperty.Builder builder()