interface TreatmentOverridesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.CfnExperimentRun.TreatmentOverridesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnExperimentRun_TreatmentOverridesProperty |
Java | software.amazon.awscdk.services.appconfig.CfnExperimentRun.TreatmentOverridesProperty |
Python | aws_cdk.aws_appconfig.CfnExperimentRun.TreatmentOverridesProperty |
TypeScript | aws-cdk-lib » aws_appconfig » CfnExperimentRun » 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-lib';
const treatmentOverridesProperty: appconfig.CfnExperimentRun.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