interface TreatmentOverridesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnExperimentRunPropsMixin.TreatmentOverridesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnExperimentRunPropsMixin_TreatmentOverridesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnExperimentRunPropsMixin.TreatmentOverridesProperty |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnExperimentRunPropsMixin.TreatmentOverridesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » CfnExperimentRunPropsMixin » TreatmentOverridesProperty |
Treatment overrides for specific entities.
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 treatmentOverridesProperty: appconfig.CfnExperimentRunPropsMixin.TreatmentOverridesProperty = {
inline: {
inlineKey: 'inline',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| inline? | IResolvable | { [string]: string } | Map of entity ID to treatment key (t1, t2, ..., or c for control). |
inline?
Type:
IResolvable | { [string]: string }
(optional)
Map of entity ID to treatment key (t1, t2, ..., or c for control).

.NET
Go
Java
Python
TypeScript