interface ParameterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConfigurationPolicy.ParameterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConfigurationPolicy_ParameterConfigurationProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConfigurationPolicy.ParameterConfigurationProperty |
Python | aws_cdk.aws_securityhub.CfnConfigurationPolicy.ParameterConfigurationProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConfigurationPolicy » 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 { aws_securityhub as securityhub } from 'aws-cdk-lib';
const parameterConfigurationProperty: securityhub.CfnConfigurationPolicy.ParameterConfigurationProperty = {
valueType: 'valueType',
// the properties below are optional
value: {
boolean: false,
double: 123,
enum: 'enum',
enumList: ['enumList'],
integer: 123,
integerList: [123],
string: 'string',
stringList: ['stringList'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| value | string | Identifies whether a control parameter uses a custom user-defined value or subscribes to the default AWS Security Hub behavior. |
| value? | IResolvable | Parameter | The current value of a control parameter. |
valueType
Type:
string
Identifies whether a control parameter uses a custom user-defined value or subscribes to the default AWS Security Hub behavior.
When ValueType is set equal to DEFAULT , the default behavior can be a specific Security Hub default value, or the default behavior can be to ignore a specific parameter. When ValueType is set equal to DEFAULT , Security Hub ignores user-provided input for the Value field.
When ValueType is set equal to CUSTOM , the Value field can't be empty.
value?
Type:
IResolvable | Parameter
(optional)
The current value of a control parameter.

.NET
Go
Java
Python
TypeScript