Interface PriorityClass.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PriorityClass.Builder,PriorityClass>,SdkBuilder<PriorityClass.Builder,PriorityClass>,SdkPojo
- Enclosing class:
- PriorityClass
public static interface PriorityClass.Builder extends SdkPojo, CopyableBuilder<PriorityClass.Builder,PriorityClass>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PriorityClass.Buildername(String name)Name of the priority class.PriorityClass.Builderweight(Integer weight)Weight of the priority class.-
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
-
name
PriorityClass.Builder name(String name)
Name of the priority class.
- Parameters:
name- Name of the priority class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
weight
PriorityClass.Builder weight(Integer weight)
Weight of the priority class. The value is within a range from 0 to 100, where 0 is the default.
A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
- Parameters:
weight- Weight of the priority class. The value is within a range from 0 to 100, where 0 is the default.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.
-
-