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();