Interface CfnConfigurationPolicy.SecurityControlCustomParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationPolicy.SecurityControlCustomParameterProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationPolicy
@Stability(Stable)
public static interface CfnConfigurationPolicy.SecurityControlCustomParameterProperty
extends software.amazon.jsii.JsiiSerializable
A list of security controls and control parameter values that are included in a configuration policy.
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.*;
SecurityControlCustomParameterProperty securityControlCustomParameterProperty = SecurityControlCustomParameterProperty.builder()
.parameters(Map.of(
"parametersKey", ParameterConfigurationProperty.builder()
.valueType("valueType")
// the properties below are optional
.value(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())
.build()))
.securityControlId("securityControlId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationPolicy.SecurityControlCustomParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
An object that specifies parameter values for a control in a configuration policy.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnConfigurationPolicy.ParameterConfigurationProperty>- See Also:
-
getSecurityControlId
The ID of the security control.- See Also:
-
builder
@Stability(Stable) static CfnConfigurationPolicy.SecurityControlCustomParameterProperty.Builder builder()
-