interface ParameterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnSecurityControlPropsMixin_ParameterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnSecurityControlPropsMixin » ParameterConfigurationProperty |
An object that provides the current value of a security control parameter and identifies whether it has been customized.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const parameterConfigurationProperty: securityhub_mixins.CfnSecurityControlPropsMixin.ParameterConfigurationProperty = {
value: {
boolean: false,
double: 123,
enum: 'enum',
enumList: ['enumList'],
integer: 123,
integerList: [123],
string: 'string',
stringList: ['stringList'],
},
valueType: 'valueType',
};
Properties
| Name | Type | Description |
|---|---|---|
| value? | IResolvable | Parameter | The current value of a control parameter. |
| value | string | Identifies whether a control parameter uses a custom user-defined value or subscribes to the default AWS Security Hub CSPM behavior. |
value?
Type:
IResolvable | Parameter
(optional)
The current value of a control parameter.
valueType?
Type:
string
(optional)
Identifies whether a control parameter uses a custom user-defined value or subscribes to the default AWS Security Hub CSPM behavior.
When ValueType is set equal to DEFAULT , the default behavior can be a specific Security Hub CSPM default value, or the default behavior can be to ignore a specific parameter. When ValueType is set equal to DEFAULT , Security Hub CSPM ignores user-provided input for the Value field.
When ValueType is set equal to CUSTOM , the Value field can't be empty.

.NET
Go
Java
Python
TypeScript