Interface CfnReportPlan.ReportDeliveryChannelProperty

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

@Stability(Stable) public static interface CfnReportPlan.ReportDeliveryChannelProperty extends software.amazon.jsii.JsiiSerializable
Contains information from your report plan about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.

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.*;
 ReportDeliveryChannelProperty reportDeliveryChannelProperty = ReportDeliveryChannelProperty.builder()
         .s3BucketName("s3BucketName")
         // the properties below are optional
         .formats(List.of("formats"))
         .s3KeyPrefix("s3KeyPrefix")
         .build();
 

See Also: