Interface UnmanagedComputeEnvironmentProps
- All Superinterfaces:
ComputeEnvironmentProps
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
UnmanagedComputeEnvironmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:55.505Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forUnmanagedComputeEnvironmentProps
static final class
An implementation forUnmanagedComputeEnvironmentProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.batch.ComputeEnvironmentProps
getComputeEnvironmentName, getEnabled, getServiceRole
Methods 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 inQueue
s that useFairshareSchedulingPolicy
s.If this parameter is not provided on a fairshare queue, no capacity is reserved; that is, the
FairshareSchedulingPolicy
is ignored.Default: 0
-
builder
-