interface AttributeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.CfnExperimentDefinition.AttributeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnExperimentDefinition_AttributeValueProperty |
Java | software.amazon.awscdk.services.appconfig.CfnExperimentDefinition.AttributeValueProperty |
Python | aws_cdk.aws_appconfig.CfnExperimentDefinition.AttributeValueProperty |
TypeScript | aws-cdk-lib » aws_appconfig » CfnExperimentDefinition » AttributeValueProperty |
A typed attribute value for a treatment flag.
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 attributeValueProperty: appconfig.CfnExperimentDefinition.AttributeValueProperty = {
booleanValue: false,
numberArray: [123],
numberValue: 123,
stringArray: ['stringArray'],
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| boolean | boolean | IResolvable | A boolean value. |
| number | number[] | IResolvable | An array of numeric values. |
| number | number | A numeric value. |
| string | string[] | An array of string values. |
| string | string | A string value. |
booleanValue?
Type:
boolean | IResolvable
(optional)
A boolean value.
numberArray?
Type:
number[] | IResolvable
(optional)
An array of numeric values.
numberValue?
Type:
number
(optional)
A numeric value.
stringArray?
Type:
string[]
(optional)
An array of string values.
stringValue?
Type:
string
(optional)
A string value.

.NET
Go
Java
Python
TypeScript