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);
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forFargateComputeEnvironmentProps
static final class
An implementation forFargateComputeEnvironmentProps
-
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.services.batch.ComputeEnvironmentProps
getComputeEnvironmentName, getEnabled, getServiceRole
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.batch.ManagedComputeEnvironmentProps
getMaxvCpus, getReplaceComputeEnvironment, getSecurityGroups, getSpot, getTerminateOnUpdate, getUpdateTimeout, getUpdateToLatestImageVersion, getVpc, getVpcSubnets
-
Method Details
-
builder
-