@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.699Z") @Stability(value=Stable) public interface CfnFeatureProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.evidently.*;
CfnFeatureProps cfnFeatureProps = CfnFeatureProps.builder()
.name("name")
.project("project")
.variations(List.of(VariationObjectProperty.builder()
.booleanValue(false)
.doubleValue(123)
.longValue(123)
.stringValue("stringValue")
.variationName("variationName")
.build()))
// the properties below are optional
.defaultVariation("defaultVariation")
.description("description")
.entityOverrides(List.of(EntityOverrideProperty.builder()
.entityId("entityId")
.variation("variation")
.build()))
.evaluationStrategy("evaluationStrategy")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFeatureProps.Builder
A builder for
CfnFeatureProps |
static class |
CfnFeatureProps.Jsii$Proxy
An implementation for
CfnFeatureProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFeatureProps.Builder |
builder() |
default String |
getDefaultVariation()
`AWS::Evidently::Feature.DefaultVariation`.
|
default String |
getDescription()
`AWS::Evidently::Feature.Description`.
|
default Object |
getEntityOverrides()
`AWS::Evidently::Feature.EntityOverrides`.
|
default String |
getEvaluationStrategy()
`AWS::Evidently::Feature.EvaluationStrategy`.
|
String |
getName()
`AWS::Evidently::Feature.Name`.
|
String |
getProject()
`AWS::Evidently::Feature.Project`.
|
default List<CfnTag> |
getTags()
`AWS::Evidently::Feature.Tags`.
|
Object |
getVariations()
`AWS::Evidently::Feature.Variations`.
|
@Stability(value=Stable) @Nullable default String getDefaultVariation()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEntityOverrides()
@Stability(value=Stable) @Nullable default String getEvaluationStrategy()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getProject()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull Object getVariations()
@Stability(value=Stable) static CfnFeatureProps.Builder builder()
CfnFeatureProps.Builder of CfnFeaturePropsCopyright © 2021. All rights reserved.