interface EnabledControlParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ControlTower.Mixins.CfnEnabledControlPropsMixin.EnabledControlParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscontroltower/mixins#CfnEnabledControlPropsMixin_EnabledControlParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.controltower.mixins.CfnEnabledControlPropsMixin.EnabledControlParameterProperty |
Python | aws_cdk.mixins_preview.aws_controltower.mixins.CfnEnabledControlPropsMixin.EnabledControlParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_controltower » mixins » CfnEnabledControlPropsMixin » EnabledControlParameterProperty |
A set of parameters that configure the behavior of the enabled control.
Expressed as a key/value pair, where Key is of type String and Value is of type Document .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as controltower_mixins } from '@aws-cdk/mixins-preview/aws-controltower';
declare const value: any;
const enabledControlParameterProperty: controltower_mixins.CfnEnabledControlPropsMixin.EnabledControlParameterProperty = {
key: 'key',
value: value,
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key of a key/value pair. |
| value? | any | The value of a key/value pair. |
key?
Type:
string
(optional)
The key of a key/value pair.
It is of type string .
value?
Type:
any
(optional)
The value of a key/value pair.
It can be of type array , string , number , object , or boolean . [Note: The Type field that follows may show a single type such as Number, which is only one possible type.]

.NET
Go
Java
Python
TypeScript