Interface CfnFeature.EntityOverrideProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFeature.EntityOverrideProperty.Jsii$Proxy
- Enclosing class:
CfnFeature
@Stability(Stable)
public static interface CfnFeature.EntityOverrideProperty
extends software.amazon.jsii.JsiiSerializable
A set of key-value pairs that specify users who should always be served a specific variation of a feature.
Each key specifies a user using their user ID, account ID, or some other identifier. The value specifies the name of the variation that the user is to be served.
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.*; EntityOverrideProperty entityOverrideProperty = EntityOverrideProperty.builder() .entityId("entityId") .variation("variation") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFeature.EntityOverrideProperty
static final class
An implementation forCfnFeature.EntityOverrideProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntityId
The entity ID to be served the variation specified inVariation
. -
getVariation
The name of the variation to serve to the user session that matches theEntityId
. -
builder
-