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 Details

    • 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:
    • 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:
    • 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

      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

      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.

      This is a convenience method that creates an instance of the CapacitySize.Builder avoiding the need to create one manually via CapacitySize.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to canarySize(CapacitySize).

      Parameters:
      canarySize - a consumer that will call methods on CapacitySize.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • 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. Value must be 10-50% of the variant's total instance count.

      This is a convenience method that creates an instance of the CapacitySize.Builder avoiding the need to create one manually via CapacitySize.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to linearStepSize(CapacitySize).

      Parameters:
      linearStepSize - a consumer that will call methods on CapacitySize.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: