Interface ComputeEnvironmentOrder.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComputeEnvironmentOrder.Builder,ComputeEnvironmentOrder>,SdkBuilder<ComputeEnvironmentOrder.Builder,ComputeEnvironmentOrder>,SdkPojo
- Enclosing class:
- ComputeEnvironmentOrder
public static interface ComputeEnvironmentOrder.Builder extends SdkPojo, CopyableBuilder<ComputeEnvironmentOrder.Builder,ComputeEnvironmentOrder>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComputeEnvironmentOrder.BuildercomputeEnvironment(String computeEnvironment)The Amazon Resource Name (ARN) of the compute environment.ComputeEnvironmentOrder.Builderorder(Integer order)The order of the compute environment.-
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
-
order
ComputeEnvironmentOrder.Builder order(Integer order)
The order of the compute environment. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower
orderinteger value is tried for job placement first.- Parameters:
order- The order of the compute environment. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lowerorderinteger value is tried for job placement first.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computeEnvironment
ComputeEnvironmentOrder.Builder computeEnvironment(String computeEnvironment)
The Amazon Resource Name (ARN) of the compute environment.
- Parameters:
computeEnvironment- The Amazon Resource Name (ARN) of the compute environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-