aws-cdk-lib.aws_evidently.CfnFeature.EntityOverrideProperty

interface EntityOverrideProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnFeature.EntityOverrideProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnFeature_EntityOverrideProperty
Javasoftware.amazon.awscdk.services.evidently.CfnFeature.EntityOverrideProperty
Pythonaws_cdk.aws_evidently.CfnFeature.EntityOverrideProperty
TypeScript aws-cdk-lib » 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 { aws_evidently as evidently } from 'aws-cdk-lib';
const entityOverrideProperty: evidently.CfnFeature.EntityOverrideProperty = {
  entityId: 'entityId',
  variation: 'variation',
};

Properties

NameTypeDescription
entityId?stringThe entity ID to be served the variation specified in Variation .
variation?stringThe 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 .