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