Interface RuntimePlatform

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RuntimePlatform.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-15T21:09:18.682Z") @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();
 
  • Method Details