interface TreatmentObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Evidently.CfnExperimentPropsMixin.TreatmentObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsevidently#CfnExperimentPropsMixin_TreatmentObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.evidently.CfnExperimentPropsMixin.TreatmentObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_evidently.CfnExperimentPropsMixin.TreatmentObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_evidently » CfnExperimentPropsMixin » TreatmentObjectProperty |
A structure that defines one treatment in an experiment.
A treatment is a variation of the feature that you are including in the experiment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_evidently as evidently } from '@aws-cdk/cfn-property-mixins';
const treatmentObjectProperty: evidently.CfnExperimentPropsMixin.TreatmentObjectProperty = {
description: 'description',
feature: 'feature',
treatmentName: 'treatmentName',
variation: 'variation',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the treatment. |
| feature? | string | The name of the feature for this experiment. |
| treatment | string | A name for this treatment. |
| variation? | string | The name of the variation to use for this treatment. |
description?
Type:
string
(optional)
The description of the treatment.
feature?
Type:
string
(optional)
The name of the feature for this experiment.
treatmentName?
Type:
string
(optional)
A name for this treatment.
It can include up to 127 characters.
variation?
Type:
string
(optional)
The name of the variation to use for this treatment.

.NET
Go
Java
Python
TypeScript