class CfnFeaturePropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnFeaturePropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnFeaturePropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnFeaturePropsMixin |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnFeaturePropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnFeaturePropsMixin |
Implements
IMixin
Extends
Mixin
Creates or updates an Evidently feature that you want to launch or test.
You can define up to five variations of a feature, and use these variations in your launches and experiments. A feature must be created in a project. For information about creating a project, see CreateProject .
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-feature.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const cfnFeaturePropsMixin = new evidently_mixins.CfnFeaturePropsMixin({
defaultVariation: 'defaultVariation',
description: 'description',
entityOverrides: [{
entityId: 'entityId',
variation: 'variation',
}],
evaluationStrategy: 'evaluationStrategy',
name: 'name',
project: 'project',
tags: [{
key: 'key',
value: 'value',
}],
variations: [{
booleanValue: false,
doubleValue: 123,
longValue: 123,
stringValue: 'stringValue',
variationName: 'variationName',
}],
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnFeaturePropsMixin(props: CfnFeatureMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Feature Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::Evidently::Feature.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): void
Parameters
- construct
IConstruct
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript