Interface CfnSecurityControlProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityControlProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:48.637Z")
@Stability(Stable)
public interface CfnSecurityControlProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSecurityControl.
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.*;
CfnSecurityControlProps cfnSecurityControlProps = CfnSecurityControlProps.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()))
// the properties below are optional
.lastUpdateReason("lastUpdateReason")
.securityControlArn("securityControlArn")
.securityControlId("securityControlId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityControlPropsstatic final classAn implementation forCfnSecurityControlProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe most recent reason for updating the customizable properties of a security control.An object that identifies the name of a control parameter, its current value, and whether it has been customized.default StringThe Amazon Resource Name (ARN) for a security control across standards, such asarn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1.default StringThe unique identifier of a security control across standards.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
An object that identifies the name of a control parameter, its current value, and whether it has been customized.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnSecurityControl.ParameterConfigurationProperty>- See Also:
-
getLastUpdateReason
The most recent reason for updating the customizable properties of a security control.This differs from the
UpdateReasonfield of theBatchUpdateStandardsControlAssociationsAPI, which tracks the reason for updating the enablement status of a control. This field accepts alphanumeric characters in addition to white spaces, dashes, and underscores.- See Also:
-
getSecurityControlArn
The Amazon Resource Name (ARN) for a security control across standards, such asarn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1. This parameter doesn't mention a specific standard.- See Also:
-
getSecurityControlId
The unique identifier of a security control across standards.Values for this field typically consist of an AWS service name and a number, such as APIGateway.3.
- See Also:
-
builder
- Returns:
- a
CfnSecurityControlProps.BuilderofCfnSecurityControlProps
-