Interface IFairshareSchedulingPolicy.Jsii$Default
- All Superinterfaces:
software.constructs.IConstruct
,software.constructs.IConstruct.Jsii$Default
,software.constructs.IDependable
,software.constructs.IDependable.Jsii$Default
,IFairshareSchedulingPolicy
,IResource
,IResource.Jsii$Default
,ISchedulingPolicy
,ISchedulingPolicy.Jsii$Default
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IFairshareSchedulingPolicy.Jsii$Proxy
- Enclosing interface:
IFairshareSchedulingPolicy
IFairshareSchedulingPolicy
.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IDependable
software.constructs.IDependable.Jsii$Default, software.constructs.IDependable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.batch.IFairshareSchedulingPolicy
IFairshareSchedulingPolicy.Jsii$Default, IFairshareSchedulingPolicy.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default, IResource.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.batch.ISchedulingPolicy
ISchedulingPolicy.Jsii$Default, ISchedulingPolicy.Jsii$Proxy
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
applyRemovalPolicy
(RemovalPolicy policy) Apply the given removal policy to this resource.default Number
Used to calculate the percentage of the maximum available vCPU to reserve for share identifiers not present in the Queue.default ResourceEnvironment
getEnv()
The environment this resource belongs to.default software.constructs.Node
getNode()
The tree node.default String
The arn of this scheduling policy.default String
The name of this scheduling policy.default Duration
The amount of time to use to measure the usage of each job.The shares that this Scheduling Policy applies to.default Stack
getStack()
The stack in which this resource is defined.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNode
@Stability(Stable) @NotNull default software.constructs.Node getNode()The tree node.- Specified by:
getNode
in interfacesoftware.constructs.IConstruct
- Specified by:
getNode
in interfacesoftware.constructs.IConstruct.Jsii$Default
- Specified by:
getNode
in interfaceIResource.Jsii$Default
- Specified by:
getNode
in interfaceISchedulingPolicy.Jsii$Default
-
getEnv
The environment this resource belongs to.For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- Specified by:
getEnv
in interfaceIResource
- Specified by:
getEnv
in interfaceIResource.Jsii$Default
- Specified by:
getEnv
in interfaceISchedulingPolicy.Jsii$Default
-
getStack
The stack in which this resource is defined.- Specified by:
getStack
in interfaceIResource
- Specified by:
getStack
in interfaceIResource.Jsii$Default
- Specified by:
getStack
in interfaceISchedulingPolicy.Jsii$Default
-
getSchedulingPolicyArn
The arn of this scheduling policy.- Specified by:
getSchedulingPolicyArn
in interfaceISchedulingPolicy
- Specified by:
getSchedulingPolicyArn
in interfaceISchedulingPolicy.Jsii$Default
-
getSchedulingPolicyName
The name of this scheduling policy.- Specified by:
getSchedulingPolicyName
in interfaceISchedulingPolicy
- Specified by:
getSchedulingPolicyName
in interfaceISchedulingPolicy.Jsii$Default
-
getComputeReservation
Used to calculate the percentage of the maximum available vCPU to reserve for share identifiers not present in the Queue.The percentage reserved is defined by the Scheduler as:
(computeReservation/100)^ActiveFairShares
whereActiveFairShares
is the number of active fair share identifiers.For example, a computeReservation value of 50 indicates that AWS Batch reserves 50% of the maximum available vCPU if there's only one fair share identifier. It reserves 25% if there are two fair share identifiers. It reserves 12.5% if there are three fair share identifiers.
A computeReservation value of 25 indicates that AWS Batch should reserve 25% of the maximum available vCPU if there's only one fair share identifier, 6.25% if there are two fair share identifiers, and 1.56% if there are three fair share identifiers.
Default: - no vCPU is reserved
- Specified by:
getComputeReservation
in interfaceIFairshareSchedulingPolicy
-
applyRemovalPolicy
Apply the given removal policy to this resource.The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Specified by:
applyRemovalPolicy
in interfaceIResource
- Specified by:
applyRemovalPolicy
in interfaceIResource.Jsii$Default
- Specified by:
applyRemovalPolicy
in interfaceISchedulingPolicy.Jsii$Default
- Parameters:
policy
- This parameter is required.
-