Interface UnmanagedComputeEnvironmentProps
- All Superinterfaces:
ComputeEnvironmentProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
UnmanagedComputeEnvironmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:33.446Z")
@Stability(Stable)
public interface UnmanagedComputeEnvironmentProps
extends software.amazon.jsii.JsiiSerializable, ComputeEnvironmentProps
Represents an UnmanagedComputeEnvironment.
Batch will not provision instances on your behalf in this ComputeEvironment.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.batch.*;
import software.amazon.awscdk.services.iam.*;
Role role;
UnmanagedComputeEnvironmentProps unmanagedComputeEnvironmentProps = UnmanagedComputeEnvironmentProps.builder()
.computeEnvironmentName("computeEnvironmentName")
.enabled(false)
.serviceRole(role)
.unmanagedvCpus(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forUnmanagedComputeEnvironmentPropsstatic final classAn implementation forUnmanagedComputeEnvironmentProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.batch.ComputeEnvironmentProps
getComputeEnvironmentName, getEnabled, getServiceRoleMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUnmanagedvCpus
The vCPUs this Compute Environment provides. Used only by the scheduler to schedule jobs inQueues that useFairshareSchedulingPolicys.If this parameter is not provided on a fairshare queue, no capacity is reserved; that is, the
FairshareSchedulingPolicyis ignored.Default: 0
-
builder
-