Interface RuntimePlatform.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RuntimePlatform.Builder,RuntimePlatform>
,SdkBuilder<RuntimePlatform.Builder,RuntimePlatform>
,SdkPojo
- Enclosing class:
- RuntimePlatform
public static interface RuntimePlatform.Builder extends SdkPojo, CopyableBuilder<RuntimePlatform.Builder,RuntimePlatform>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuntimePlatform.Builder
cpuArchitecture(String cpuArchitecture)
The CPU architecture.RuntimePlatform.Builder
cpuArchitecture(CPUArchitecture cpuArchitecture)
The CPU architecture.RuntimePlatform.Builder
operatingSystemFamily(String operatingSystemFamily)
The operating system.RuntimePlatform.Builder
operatingSystemFamily(OSFamily operatingSystemFamily)
The operating system.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
cpuArchitecture
RuntimePlatform.Builder cpuArchitecture(String cpuArchitecture)
The CPU architecture.
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.- Parameters:
cpuArchitecture
- The CPU architecture.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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CPUArchitecture
,CPUArchitecture
-
cpuArchitecture
RuntimePlatform.Builder cpuArchitecture(CPUArchitecture cpuArchitecture)
The CPU architecture.
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.- Parameters:
cpuArchitecture
- The CPU architecture.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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CPUArchitecture
,CPUArchitecture
-
operatingSystemFamily
RuntimePlatform.Builder operatingSystemFamily(String operatingSystemFamily)
The operating system.
-
operatingSystemFamily
RuntimePlatform.Builder operatingSystemFamily(OSFamily operatingSystemFamily)
The operating system.
-
-