Interface CfnSchedulingPolicy.FairsharePolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSchedulingPolicy.FairsharePolicyProperty.Jsii$Proxy
Enclosing class:
CfnSchedulingPolicy

@Stability(Stable) public static interface CfnSchedulingPolicy.FairsharePolicyProperty extends software.amazon.jsii.JsiiSerializable
The fair share policy for a scheduling policy.

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.*;
 FairsharePolicyProperty fairsharePolicyProperty = FairsharePolicyProperty.builder()
         .computeReservation(123)
         .shareDecaySeconds(123)
         .shareDistribution(List.of(ShareAttributesProperty.builder()
                 .shareIdentifier("shareIdentifier")
                 .weightFactor(123)
                 .build()))
         .build();
 

See Also: