Interface RuntimePlatform
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RuntimePlatform.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:41.001Z")
@Stability(Stable)
public interface RuntimePlatform
extends software.amazon.jsii.JsiiSerializable
The interface for Runtime Platform.
Example:
Cluster cluster;
ApplicationLoadBalancedFargateService applicationLoadBalancedFargateService = ApplicationLoadBalancedFargateService.Builder.create(this, "Service")
.cluster(cluster)
.memoryLimitMiB(512)
.taskImageOptions(ApplicationLoadBalancedTaskImageOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build())
.minHealthyPercent(100)
.runtimePlatform(RuntimePlatform.builder()
.cpuArchitecture(CpuArchitecture.ARM64)
.operatingSystemFamily(OperatingSystemFamily.LINUX)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRuntimePlatformstatic final classAn implementation forRuntimePlatform -
Method Summary
Modifier and TypeMethodDescriptionstatic RuntimePlatform.Builderbuilder()default CpuArchitectureThe CpuArchitecture for Fargate Runtime Platform.default OperatingSystemFamilyThe operating system for Fargate Runtime Platform.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCpuArchitecture
The CpuArchitecture for Fargate Runtime Platform.Default: - Undefined.
-
getOperatingSystemFamily
The operating system for Fargate Runtime Platform.Default: - Undefined.
-
builder
- Returns:
- a
RuntimePlatform.BuilderofRuntimePlatform
-