@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.174Z") @Stability(value=Stable) public interface CfnFrameworkProps extends software.amazon.jsii.JsiiSerializable
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;
CfnFrameworkProps cfnFrameworkProps = CfnFrameworkProps.builder()
.frameworkControls(List.of(FrameworkControlProperty.builder()
.controlName("controlName")
// the properties below are optional
.controlInputParameters(List.of(ControlInputParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.controlScope(controlScope)
.build()))
// the properties below are optional
.frameworkDescription("frameworkDescription")
.frameworkName("frameworkName")
.frameworkTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFrameworkProps.Builder
A builder for
CfnFrameworkProps |
static class |
CfnFrameworkProps.Jsii$Proxy
An implementation for
CfnFrameworkProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFrameworkProps.Builder |
builder() |
Object |
getFrameworkControls()
`AWS::Backup::Framework.FrameworkControls`.
|
default String |
getFrameworkDescription()
`AWS::Backup::Framework.FrameworkDescription`.
|
default String |
getFrameworkName()
`AWS::Backup::Framework.FrameworkName`.
|
default Object |
getFrameworkTags()
`AWS::Backup::Framework.FrameworkTags`.
|
@Stability(value=Stable) @NotNull Object getFrameworkControls()
@Stability(value=Stable) @Nullable default String getFrameworkDescription()
@Stability(value=Stable) @Nullable default String getFrameworkName()
@Stability(value=Stable) @Nullable default Object getFrameworkTags()
@Stability(value=Stable) static CfnFrameworkProps.Builder builder()
CfnFrameworkProps.Builder of CfnFrameworkPropsCopyright © 2021. All rights reserved.