interface ParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnSecurityControl.ParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnSecurityControl_ParameterValueProperty |
Java | software.amazon.awscdk.services.securityhub.CfnSecurityControl.ParameterValueProperty |
Python | aws_cdk.aws_securityhub.CfnSecurityControl.ParameterValueProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnSecurityControl » ParameterValueProperty |
An object that includes the data type of a security control parameter and its current value.
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 parameterValueProperty: securityhub.CfnSecurityControl.ParameterValueProperty = {
boolean: false,
double: 123,
enum: 'enum',
enumList: ['enumList'],
integer: 123,
integerList: [123],
string: 'string',
stringList: ['stringList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| boolean? | boolean | IResolvable | A control parameter that is a boolean. |
| double? | number | A control parameter that is a double. |
| enum? | string | A control parameter that is an enum. |
| enum | string[] | A control parameter that is a list of enums. |
| integer? | number | A control parameter that is an integer. |
| integer | number[] | IResolvable | A control parameter that is a list of integers. |
| string? | string | A control parameter that is a string. |
| string | string[] | A control parameter that is a list of strings. |
boolean?
Type:
boolean | IResolvable
(optional)
A control parameter that is a boolean.
double?
Type:
number
(optional)
A control parameter that is a double.
enum?
Type:
string
(optional)
A control parameter that is an enum.
enumList?
Type:
string[]
(optional)
A control parameter that is a list of enums.
integer?
Type:
number
(optional)
A control parameter that is an integer.
integerList?
Type:
number[] | IResolvable
(optional)
A control parameter that is a list of integers.
string?
Type:
string
(optional)
A control parameter that is a string.
stringList?
Type:
string[]
(optional)
A control parameter that is a list of strings.

.NET
Go
Java
Python
TypeScript