Interface CfnAssessmentFrameworkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssessmentFrameworkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:50:57.201Z")
@Stability(Stable)
public interface CfnAssessmentFrameworkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAssessmentFramework.
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.auditmanager.*;
CfnAssessmentFrameworkProps cfnAssessmentFrameworkProps = CfnAssessmentFrameworkProps.builder()
.controlSets(List.of(ControlSetProperty.builder()
.controls(List.of(ControlSetControlProperty.builder()
.id("id")
.build()))
.name("name")
.build()))
.name("name")
// the properties below are optional
.complianceType("complianceType")
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssessmentFrameworkPropsstatic final classAn implementation forCfnAssessmentFrameworkProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe compliance type that the framework supports, such as CIS or HIPAA.The control sets that are associated with the framework.default StringThe description of the framework.getName()The name of the framework.getTags()The tags associated with the framework.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getControlSets
The control sets that are associated with the framework.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAssessmentFramework.ControlSetProperty>- See Also:
-
getName
The name of the framework.- See Also:
-
getComplianceType
The compliance type that the framework supports, such as CIS or HIPAA.- See Also:
-
getDescription
The description of the framework.- See Also:
-
getTags
The tags associated with the framework.- See Also:
-
builder
-