You must be logged in to view saved presets
Implements an AWS Evidently feature with a specific evaluation strategy and entity overrides.
resource "aws_evidently_feature" "example" {
entity_overrides = {
test1 = "Variation1"
}
evaluation_strategy = "ALL_RULES"
name = "example"
project = "aws_evidently_project.example.name"
variations {
name = "Variation1"
value {
string_value = "exampleval1"
}
}
}