Interface IUnmanagedComputeEnvironmentProps
Represents an UnmanagedComputeEnvironment.
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUnmanagedComputeEnvironmentProps : IComputeEnvironmentProps
Syntax (vb)
Public Interface IUnmanagedComputeEnvironmentProps Inherits IComputeEnvironmentProps
Remarks
Batch will not provision instances on your behalf in this ComputeEvironment.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
using Amazon.CDK.AWS.IAM;
Role role;
var unmanagedComputeEnvironmentProps = new UnmanagedComputeEnvironmentProps {
ComputeEnvironmentName = "computeEnvironmentName",
Enabled = false,
ServiceRole = role,
UnmanagedvCpus = 123
};
Synopsis
Properties
| UnmanagedvCpus | The vCPUs this Compute Environment provides. Used only by the scheduler to schedule jobs in |
Properties
UnmanagedvCpus
The vCPUs this Compute Environment provides. Used only by the scheduler to schedule jobs in Queues that use FairshareSchedulingPolicys.
double? UnmanagedvCpus { get; }
Property Value
Remarks
If this parameter is not provided on a fairshare queue, no capacity is reserved;
that is, the FairshareSchedulingPolicy is ignored.
Default: 0