com.pulumi.aws.evidently.outputs.LaunchScheduledSplitsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.evidently.outputs;
import com.pulumi.aws.evidently.outputs.LaunchScheduledSplitsConfigStep;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
@CustomType
public final class LaunchScheduledSplitsConfig {
/**
* @return One or up to six blocks that define the traffic allocation percentages among the feature variations during each step of the launch. This also defines the start time of each step. Detailed below.
*
*/
private List steps;
private LaunchScheduledSplitsConfig() {}
/**
* @return One or up to six blocks that define the traffic allocation percentages among the feature variations during each step of the launch. This also defines the start time of each step. Detailed below.
*
*/
public List steps() {
return this.steps;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LaunchScheduledSplitsConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List steps;
public Builder() {}
public Builder(LaunchScheduledSplitsConfig defaults) {
Objects.requireNonNull(defaults);
this.steps = defaults.steps;
}
@CustomType.Setter
public Builder steps(List steps) {
if (steps == null) {
throw new MissingRequiredPropertyException("LaunchScheduledSplitsConfig", "steps");
}
this.steps = steps;
return this;
}
public Builder steps(LaunchScheduledSplitsConfigStep... steps) {
return steps(List.of(steps));
}
public LaunchScheduledSplitsConfig build() {
final var _resultValue = new LaunchScheduledSplitsConfig();
_resultValue.steps = steps;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy