Interface ComputeQuotaTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComputeQuotaTarget.Builder,ComputeQuotaTarget>,SdkBuilder<ComputeQuotaTarget.Builder,ComputeQuotaTarget>,SdkPojo
- Enclosing class:
- ComputeQuotaTarget
public static interface ComputeQuotaTarget.Builder extends SdkPojo, CopyableBuilder<ComputeQuotaTarget.Builder,ComputeQuotaTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComputeQuotaTarget.BuilderfairShareWeight(Integer fairShareWeight)Assigned entity fair-share weight.ComputeQuotaTarget.BuilderteamName(String teamName)Name of the team to allocate compute resources to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
teamName
ComputeQuotaTarget.Builder teamName(String teamName)
Name of the team to allocate compute resources to.
- Parameters:
teamName- Name of the team to allocate compute resources to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fairShareWeight
ComputeQuotaTarget.Builder fairShareWeight(Integer fairShareWeight)
Assigned entity fair-share weight. Idle compute will be shared across entities based on these assigned weights. This weight is only used when
FairShareis enabled.A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
- Parameters:
fairShareWeight- Assigned entity fair-share weight. Idle compute will be shared across entities based on these assigned weights. This weight is only used whenFairShareis enabled.A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-