Interface TrafficRoutingConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrafficRoutingConfig.Builder,TrafficRoutingConfig>
,SdkBuilder<TrafficRoutingConfig.Builder,TrafficRoutingConfig>
,SdkPojo
- Enclosing class:
- TrafficRoutingConfig
public static interface TrafficRoutingConfig.Builder extends SdkPojo, CopyableBuilder<TrafficRoutingConfig.Builder,TrafficRoutingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TrafficRoutingConfig.Builder
canarySize(Consumer<CapacitySize.Builder> canarySize)
Batch size for the first step to turn on traffic on the new endpoint fleet.TrafficRoutingConfig.Builder
canarySize(CapacitySize canarySize)
Batch size for the first step to turn on traffic on the new endpoint fleet.default TrafficRoutingConfig.Builder
linearStepSize(Consumer<CapacitySize.Builder> linearStepSize)
Batch size for each step to turn on traffic on the new endpoint fleet.TrafficRoutingConfig.Builder
linearStepSize(CapacitySize linearStepSize)
Batch size for each step to turn on traffic on the new endpoint fleet.TrafficRoutingConfig.Builder
type(String type)
Traffic routing strategy type.TrafficRoutingConfig.Builder
type(TrafficRoutingConfigType type)
Traffic routing strategy type.TrafficRoutingConfig.Builder
waitIntervalInSeconds(Integer waitIntervalInSeconds)
The waiting time (in seconds) between incremental steps to turn on traffic on the new endpoint fleet.-
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
-
type
TrafficRoutingConfig.Builder type(String type)
Traffic routing strategy type.
-
ALL_AT_ONCE
: Endpoint traffic shifts to the new fleet in a single step. -
CANARY
: Endpoint traffic shifts to the new fleet in two steps. The first step is the canary, which is a small portion of the traffic. The second step is the remainder of the traffic. -
LINEAR
: Endpoint traffic shifts to the new fleet in n steps of a configurable size.
- Parameters:
type
- Traffic routing strategy type.-
ALL_AT_ONCE
: Endpoint traffic shifts to the new fleet in a single step. -
CANARY
: Endpoint traffic shifts to the new fleet in two steps. The first step is the canary, which is a small portion of the traffic. The second step is the remainder of the traffic. -
LINEAR
: Endpoint traffic shifts to the new fleet in n steps of a configurable size.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrafficRoutingConfigType
,TrafficRoutingConfigType
-
-
type
TrafficRoutingConfig.Builder type(TrafficRoutingConfigType type)
Traffic routing strategy type.
-
ALL_AT_ONCE
: Endpoint traffic shifts to the new fleet in a single step. -
CANARY
: Endpoint traffic shifts to the new fleet in two steps. The first step is the canary, which is a small portion of the traffic. The second step is the remainder of the traffic. -
LINEAR
: Endpoint traffic shifts to the new fleet in n steps of a configurable size.
- Parameters:
type
- Traffic routing strategy type.-
ALL_AT_ONCE
: Endpoint traffic shifts to the new fleet in a single step. -
CANARY
: Endpoint traffic shifts to the new fleet in two steps. The first step is the canary, which is a small portion of the traffic. The second step is the remainder of the traffic. -
LINEAR
: Endpoint traffic shifts to the new fleet in n steps of a configurable size.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrafficRoutingConfigType
,TrafficRoutingConfigType
-
-
waitIntervalInSeconds
TrafficRoutingConfig.Builder waitIntervalInSeconds(Integer waitIntervalInSeconds)
The waiting time (in seconds) between incremental steps to turn on traffic on the new endpoint fleet.
- Parameters:
waitIntervalInSeconds
- The waiting time (in seconds) between incremental steps to turn on traffic on the new endpoint fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
canarySize
TrafficRoutingConfig.Builder canarySize(CapacitySize canarySize)
Batch size for the first step to turn on traffic on the new endpoint fleet.
Value
must be less than or equal to 50% of the variant's total instance count.- Parameters:
canarySize
- Batch size for the first step to turn on traffic on the new endpoint fleet.Value
must be less than or equal to 50% of the variant's total instance count.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
canarySize
default TrafficRoutingConfig.Builder canarySize(Consumer<CapacitySize.Builder> canarySize)
Batch size for the first step to turn on traffic on the new endpoint fleet.
This is a convenience method that creates an instance of theValue
must be less than or equal to 50% of the variant's total instance count.CapacitySize.Builder
avoiding the need to create one manually viaCapacitySize.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocanarySize(CapacitySize)
.- Parameters:
canarySize
- a consumer that will call methods onCapacitySize.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
canarySize(CapacitySize)
-
linearStepSize
TrafficRoutingConfig.Builder linearStepSize(CapacitySize linearStepSize)
Batch size for each step to turn on traffic on the new endpoint fleet.
Value
must be 10-50% of the variant's total instance count.- Parameters:
linearStepSize
- Batch size for each step to turn on traffic on the new endpoint fleet.Value
must be 10-50% of the variant's total instance count.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
linearStepSize
default TrafficRoutingConfig.Builder linearStepSize(Consumer<CapacitySize.Builder> linearStepSize)
Batch size for each step to turn on traffic on the new endpoint fleet.
This is a convenience method that creates an instance of theValue
must be 10-50% of the variant's total instance count.CapacitySize.Builder
avoiding the need to create one manually viaCapacitySize.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolinearStepSize(CapacitySize)
.- Parameters:
linearStepSize
- a consumer that will call methods onCapacitySize.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
linearStepSize(CapacitySize)
-
-