Class: Aws::CloudWatchEvidently::Types::ScheduledSplitConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb

Overview

This structure defines the traffic allocation percentages among the feature variations during one step of a launch, and the start time of that step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_weightsHash<String,Integer>

The traffic allocation percentages among the feature variations during one step of a launch. This is a set of key-value pairs. The keys are variation names. The values represent the percentage of traffic to allocate to that variation during this step.

The values is expressed in thousandths of a percent, so assigning a weight of 50000 assigns 50% of traffic to that variation.

If the sum of the weights for all the variations in a segment override does not add up to 100,000, then the remaining traffic that matches this segment is not assigned by this segment override, and instead moves on to the next segment override or the default traffic split.

Returns:

  • (Hash<String,Integer>)


2708
2709
2710
2711
2712
2713
2714
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 2708

class ScheduledSplitConfig < Struct.new(
  :group_weights,
  :segment_overrides,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#segment_overridesArray<Types::SegmentOverride>

Use this parameter to specify different traffic splits for one or more audience segments. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age.

This parameter is an array of up to six segment override objects. Each of these objects specifies a segment that you have already created, and defines the traffic split for that segment.

Returns:



2708
2709
2710
2711
2712
2713
2714
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 2708

class ScheduledSplitConfig < Struct.new(
  :group_weights,
  :segment_overrides,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The date and time that this step of the launch starts.

Returns:

  • (Time)


2708
2709
2710
2711
2712
2713
2714
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 2708

class ScheduledSplitConfig < Struct.new(
  :group_weights,
  :segment_overrides,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end