interface ParameterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnSecurityControlPropsMixin_ParameterConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnSecurityControlPropsMixin.ParameterConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » 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 { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const parameterConfigurationProperty: securityhub.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