Interface CfnSecurityControlMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityControlMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.411Z")
@Stability(Stable)
public interface CfnSecurityControlMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSecurityControlPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.securityhub.*;
CfnSecurityControlMixinProps cfnSecurityControlMixinProps = CfnSecurityControlMixinProps.builder()
.lastUpdateReason("lastUpdateReason")
.parameters(Map.of(
"parametersKey", ParameterConfigurationProperty.builder()
.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())
.valueType("valueType")
.build()))
.securityControlArn("securityControlArn")
.securityControlId("securityControlId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityControlMixinPropsstatic final classAn implementation forCfnSecurityControlMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe most recent reason for updating the customizable properties of a security control.default ObjectAn 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
-
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:
-
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, eitherIResolvableorCfnSecurityControlPropsMixin.ParameterConfigurationProperty>- 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
-