Interface CfnConfigurationPolicy.ParameterValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationPolicy.ParameterValueProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationPolicy
@Stability(Stable)
public static interface CfnConfigurationPolicy.ParameterValueProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.securityhub.*; ParameterValueProperty parameterValueProperty = ParameterValueProperty.builder() .boolean(false) .double(123) .enum("enum") .enumList(List.of("enumList")) .integer(123) .integerList(List.of(123)) .string("string") .stringList(List.of("stringList")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationPolicy.ParameterValueProperty
static final class
An implementation forCfnConfigurationPolicy.ParameterValueProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A control parameter that is a boolean.default Number
A control parameter that is a double.A control parameter that is a list of enums.default String
A control parameter that is an enum.default Number
A control parameter that is an integer.default Object
A control parameter that is a list of integers.default String
A control parameter that is a string.A control parameter that is a list of strings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBooleanValue
A control parameter that is a boolean.- See Also:
-
getDoubleValue
A control parameter that is a double.- See Also:
-
getEnumValue
A control parameter that is an enum.- See Also:
-
getEnumList
A control parameter that is a list of enums.- See Also:
-
getInteger
A control parameter that is an integer.- See Also:
-
getIntegerList
A control parameter that is a list of integers.- See Also:
-
getString
A control parameter that is a string.- See Also:
-
getStringList
A control parameter that is a list of strings.- See Also:
-
builder
-