Interface CfnFramework.FrameworkControlProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFramework.FrameworkControlProperty.Jsii$Proxy
Enclosing class:
CfnFramework

@Stability(Stable) public static interface CfnFramework.FrameworkControlProperty extends software.amazon.jsii.JsiiSerializable
Contains detailed information about all of the controls of a framework.

Each framework must contain at least one control.

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.backup.*;
 Object controlScope;
 FrameworkControlProperty frameworkControlProperty = FrameworkControlProperty.builder()
         .controlName("controlName")
         // the properties below are optional
         .controlInputParameters(List.of(ControlInputParameterProperty.builder()
                 .parameterName("parameterName")
                 .parameterValue("parameterValue")
                 .build()))
         .controlScope(controlScope)
         .build();
 

See Also: