interface EntityOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnFeaturePropsMixin.EntityOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnFeaturePropsMixin_EntityOverrideProperty |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnFeaturePropsMixin.EntityOverrideProperty |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnFeaturePropsMixin.EntityOverrideProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnFeaturePropsMixin » 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 { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const entityOverrideProperty: evidently_mixins.CfnFeaturePropsMixin.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 .

.NET
Go
Java
Python
TypeScript