@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.865Z") @Stability(value=Stable) public interface CfnReportPlanProps 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 reportDeliveryChannel;
Object reportSetting;
CfnReportPlanProps cfnReportPlanProps = CfnReportPlanProps.builder()
.reportDeliveryChannel(reportDeliveryChannel)
.reportSetting(reportSetting)
// the properties below are optional
.reportPlanDescription("reportPlanDescription")
.reportPlanName("reportPlanName")
.reportPlanTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnReportPlanProps.Builder
A builder for
CfnReportPlanProps |
static class |
CfnReportPlanProps.Jsii$Proxy
An implementation for
CfnReportPlanProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnReportPlanProps.Builder |
builder() |
Object |
getReportDeliveryChannel()
Contains information about where and how to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
|
default String |
getReportPlanDescription()
An optional description of the report plan with a maximum 1,024 characters.
|
default String |
getReportPlanName()
The unique name of the report plan.
|
default Object |
getReportPlanTags()
A list of tags to tag your report plan.
|
Object |
getReportSetting()
Identifies the report template for the report.
|
@Stability(value=Stable) @NotNull Object getReportDeliveryChannel()
@Stability(value=Stable) @NotNull Object getReportSetting()
RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT
If the report template is RESOURCE_COMPLIANCE_REPORT or CONTROL_COMPLIANCE_REPORT , this API resource also describes the report coverage by AWS Regions and frameworks.
@Stability(value=Stable) @Nullable default String getReportPlanDescription()
@Stability(value=Stable) @Nullable default String getReportPlanName()
This name is between 1 and 256 characters starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
@Stability(value=Stable) @Nullable default Object getReportPlanTags()
@Stability(value=Stable) static CfnReportPlanProps.Builder builder()
CfnReportPlanProps.Builder of CfnReportPlanPropsCopyright © 2022. All rights reserved.