Interface FargateComputeEnvironmentProps

All Superinterfaces:
ComputeEnvironmentProps, software.amazon.jsii.JsiiSerializable, ManagedComputeEnvironmentProps
All Known Implementing Classes:
FargateComputeEnvironmentProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-12T12:31:58.675Z") @Stability(Stable) public interface FargateComputeEnvironmentProps extends software.amazon.jsii.JsiiSerializable, ManagedComputeEnvironmentProps
Props for a FargateComputeEnvironment.

Example:

 IVpc vpc;
 FargateComputeEnvironment sharedComputeEnv = FargateComputeEnvironment.Builder.create(this, "spotEnv")
         .vpc(vpc)
         .spot(true)
         .build();
 JobQueue lowPriorityQueue = JobQueue.Builder.create(this, "JobQueue")
         .priority(1)
         .build();
 JobQueue highPriorityQueue = JobQueue.Builder.create(this, "JobQueue")
         .priority(10)
         .build();
 lowPriorityQueue.addComputeEnvironment(sharedComputeEnv, 1);
 highPriorityQueue.addComputeEnvironment(sharedComputeEnv, 1);