interface EnabledControlParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ControlTower.CfnEnabledControl.EnabledControlParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscontroltower#CfnEnabledControl_EnabledControlParameterProperty |
Java | software.amazon.awscdk.services.controltower.CfnEnabledControl.EnabledControlParameterProperty |
Python | aws_cdk.aws_controltower.CfnEnabledControl.EnabledControlParameterProperty |
TypeScript | aws-cdk-lib » aws_controltower » CfnEnabledControl » 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 { aws_controltower as controltower } from 'aws-cdk-lib';
declare const value: any;
const enabledControlParameterProperty: controltower.CfnEnabledControl.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
The key of a key/value pair.
It is of type string .
value
Type:
any
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