interface EntityOverrideProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Evidently.CfnFeature.EntityOverrideProperty |
Java | software.amazon.awscdk.services.evidently.CfnFeature.EntityOverrideProperty |
Python | aws_cdk.aws_evidently.CfnFeature.EntityOverrideProperty |
TypeScript | @aws-cdk/aws-evidently » CfnFeature » EntityOverrideProperty |
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 * as evidently from '@aws-cdk/aws-evidently';
const entityOverrideProperty: evidently.CfnFeature.EntityOverrideProperty = {
entityId: 'entityId',
variation: 'variation',
};
Properties
Name | Type | Description |
---|---|---|
entity | string | The entity ID to be served the variation specified in Variation . |
variation? | string | The name of the variation to serve to the user session that matches the EntityId . |
entityId?
Type:
string
(optional)
The entity ID to be served the variation specified in Variation
.
variation?
Type:
string
(optional)
The name of the variation to serve to the user session that matches the EntityId
.