interface ReportDeliveryChannelProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Backup.CfnReportPlan.ReportDeliveryChannelProperty |
Java | software.amazon.awscdk.services.backup.CfnReportPlan.ReportDeliveryChannelProperty |
Python | aws_cdk.aws_backup.CfnReportPlan.ReportDeliveryChannelProperty |
TypeScript | @aws-cdk/aws-backup » CfnReportPlan » ReportDeliveryChannelProperty |
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 * as backup from '@aws-cdk/aws-backup';
const reportDeliveryChannelProperty: backup.CfnReportPlan.ReportDeliveryChannelProperty = {
s3BucketName: 's3BucketName',
// the properties below are optional
formats: ['formats'],
s3KeyPrefix: 's3KeyPrefix',
};
Properties
Name | Type | Description |
---|---|---|
s3 | string | The unique name of the S3 bucket that receives your reports. |
formats? | string[] | A list of the format of your reports: CSV , JSON , or both. |
s3 | string | The prefix for where AWS Backup Audit Manager delivers your reports to Amazon S3. |
s3BucketName
Type:
string
The unique name of the S3 bucket that receives your reports.
formats?
Type:
string[]
(optional)
A list of the format of your reports: CSV
, JSON
, or both.
If not specified, the default format is CSV
.
s3KeyPrefix?
Type:
string
(optional)
The prefix for where AWS Backup Audit Manager delivers your reports to Amazon S3.
The prefix is this part of the following path: s3://your-bucket-name/ prefix
/Backup/us-west-2/year/month/day/report-name. If not specified, there is no prefix.