interface ParameterValueProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConfigurationPolicy.ParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConfigurationPolicy_ParameterValueProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConfigurationPolicy.ParameterValueProperty |
Python | aws_cdk.aws_securityhub.CfnConfigurationPolicy.ParameterValueProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConfigurationPolicy » 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.CfnConfigurationPolicy.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 | IResolvable | number[] | 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:
IResolvable
| number[]
(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.