Interface ScalingParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScalingParameters.Builder,ScalingParameters>,SdkBuilder<ScalingParameters.Builder,ScalingParameters>,SdkPojo
- Enclosing class:
- ScalingParameters
public static interface ScalingParameters.Builder extends SdkPojo, CopyableBuilder<ScalingParameters.Builder,ScalingParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScalingParameters.BuilderdesiredInstanceType(String desiredInstanceType)The instance type that you want to preconfigure for your domain.ScalingParameters.BuilderdesiredInstanceType(PartitionInstanceType desiredInstanceType)The instance type that you want to preconfigure for your domain.ScalingParameters.BuilderdesiredPartitionCount(Integer desiredPartitionCount)The number of partitions you want to preconfigure for your domain.ScalingParameters.BuilderdesiredReplicationCount(Integer desiredReplicationCount)The number of replicas you want to preconfigure for each index partition.-
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, sdkFields
-
-
-
-
Method Detail
-
desiredInstanceType
ScalingParameters.Builder desiredInstanceType(String desiredInstanceType)
The instance type that you want to preconfigure for your domain. For example,
search.m1.small.- Parameters:
desiredInstanceType- The instance type that you want to preconfigure for your domain. For example,search.m1.small.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PartitionInstanceType,PartitionInstanceType
-
desiredInstanceType
ScalingParameters.Builder desiredInstanceType(PartitionInstanceType desiredInstanceType)
The instance type that you want to preconfigure for your domain. For example,
search.m1.small.- Parameters:
desiredInstanceType- The instance type that you want to preconfigure for your domain. For example,search.m1.small.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PartitionInstanceType,PartitionInstanceType
-
desiredReplicationCount
ScalingParameters.Builder desiredReplicationCount(Integer desiredReplicationCount)
The number of replicas you want to preconfigure for each index partition.
- Parameters:
desiredReplicationCount- The number of replicas you want to preconfigure for each index partition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
desiredPartitionCount
ScalingParameters.Builder desiredPartitionCount(Integer desiredPartitionCount)
The number of partitions you want to preconfigure for your domain. Only valid when you select
m2.2xlargeas the desired instance type.- Parameters:
desiredPartitionCount- The number of partitions you want to preconfigure for your domain. Only valid when you selectm2.2xlargeas the desired instance type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-