interface CfnLaunchMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnLaunchMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnLaunchMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnLaunchMixinProps |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnLaunchMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnLaunchMixinProps |
Properties for CfnLaunchPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-launch.html
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 cfnLaunchMixinProps: evidently_mixins.CfnLaunchMixinProps = {
description: 'description',
executionStatus: {
desiredState: 'desiredState',
reason: 'reason',
status: 'status',
},
groups: [{
description: 'description',
feature: 'feature',
groupName: 'groupName',
variation: 'variation',
}],
metricMonitors: [{
entityIdKey: 'entityIdKey',
eventPattern: 'eventPattern',
metricName: 'metricName',
unitLabel: 'unitLabel',
valueKey: 'valueKey',
}],
name: 'name',
project: 'project',
randomizationSalt: 'randomizationSalt',
scheduledSplitsConfig: [{
groupWeights: [{
groupName: 'groupName',
splitWeight: 123,
}],
segmentOverrides: [{
evaluationOrder: 123,
segment: 'segment',
weights: [{
groupName: 'groupName',
splitWeight: 123,
}],
}],
startTime: 'startTime',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | An optional description for the launch. |
| execution | IResolvable | Execution | A structure that you can use to start and stop the launch. |
| groups? | IResolvable | (IResolvable | Launch)[] | An array of structures that contains the feature and variations that are to be used for the launch. |
| metric | IResolvable | (IResolvable | Metric)[] | An array of structures that define the metrics that will be used to monitor the launch performance. |
| name? | string | The name for the launch. |
| project? | string | The name or ARN of the project that you want to create the launch in. |
| randomization | string | When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served. |
| scheduled | IResolvable | (IResolvable | Step)[] | An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch. |
| tags? | Cfn[] | Assigns one or more tags (key-value pairs) to the launch. |
description?
Type:
string
(optional)
An optional description for the launch.
executionStatus?
Type:
IResolvable | Execution
(optional)
A structure that you can use to start and stop the launch.
groups?
Type:
IResolvable | (IResolvable | Launch)[]
(optional)
An array of structures that contains the feature and variations that are to be used for the launch.
You can up to five launch groups in a launch.
metricMonitors?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)
An array of structures that define the metrics that will be used to monitor the launch performance.
You can have up to three metric monitors in the array.
name?
Type:
string
(optional)
The name for the launch.
It can include up to 127 characters.
project?
Type:
string
(optional)
The name or ARN of the project that you want to create the launch in.
randomizationSalt?
Type:
string
(optional)
When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served.
This randomization ID is a combination of the entity ID and randomizationSalt . If you omit randomizationSalt , Evidently uses the launch name as the randomizationsSalt .
scheduledSplitsConfig?
Type:
IResolvable | (IResolvable | Step)[]
(optional)
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
tags?
Type:
Cfn[]
(optional)
Assigns one or more tags (key-value pairs) to the launch.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.
You can associate as many as 50 tags with a launch.
For more information, see Tagging AWS resources .

.NET
Go
Java
Python
TypeScript