interface ParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnSecurityControlPropsMixin.ParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnSecurityControlPropsMixin_ParameterValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnSecurityControlPropsMixin.ParameterValueProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnSecurityControlPropsMixin.ParameterValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnSecurityControlPropsMixin » 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 { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const parameterValueProperty: securityhub_mixins.CfnSecurityControlPropsMixin.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