interface CfnExperimentRunMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnExperimentRunMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnExperimentRunMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnExperimentRunMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnExperimentRunMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » CfnExperimentRunMixinProps |
Properties for CfnExperimentRunPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as appconfig } from '@aws-cdk/cfn-property-mixins';
const cfnExperimentRunMixinProps: appconfig.CfnExperimentRunMixinProps = {
applicationIdentifier: 'applicationIdentifier',
description: 'description',
experimentDefinitionIdentifier: 'experimentDefinitionIdentifier',
exposurePercentage: 123,
tags: [{
key: 'key',
value: 'value',
}],
treatmentOverrides: {
inline: {
inlineKey: 'inline',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The application name or ID used to create the experiment run. |
| description? | string | Description of the experiment run. |
| experiment | string | The experiment definition name or ID used to create the experiment run. |
| exposure | number | Percentage of traffic exposed to the experiment (0-100). |
| tags? | Cfn[] | Tags to associate with the experiment run. |
| treatment | IResolvable | Treatment | Treatment overrides for specific entities. |
applicationIdentifier?
Type:
string
(optional)
The application name or ID used to create the experiment run.
description?
Type:
string
(optional)
Description of the experiment run.
experimentDefinitionIdentifier?
Type:
string
(optional)
The experiment definition name or ID used to create the experiment run.
exposurePercentage?
Type:
number
(optional)
Percentage of traffic exposed to the experiment (0-100).
tags?
Type:
Cfn[]
(optional)
Tags to associate with the experiment run.
treatmentOverrides?
Type:
IResolvable | Treatment
(optional)
Treatment overrides for specific entities.

.NET
Go
Java
Python
TypeScript