You must be logged in to view saved presets
A basic configuration for an AWS Evidently Launch resource with a single group and scheduled split.
resource "aws_evidently_launch" "example" {
groups {
feature = "aws_evidently_feature.example.name"
name = "Variation1"
variation = "Variation1"
}
name = "example"
project = "aws_evidently_project.example.name"
scheduled_splits_config {
steps {
group_weights = {
Variation1 = 0
}
start_time = "2024-01-07 01:43:59+00:00"
}
}
}