interface S3ReportOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.S3ReportOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_S3ReportOutputConfigurationProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.S3ReportOutputConfigurationProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.S3ReportOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » S3ReportOutputConfigurationProperty |
S3 configuration for report output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const s3ReportOutputConfigurationProperty: resiliencehubv2.CfnService.S3ReportOutputConfigurationProperty = {
bucketOwner: 'bucketOwner',
bucketPath: 'bucketPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Account ID of the bucket owner. |
| bucket | string | S3 bucket path where reports will be written. |
bucketOwner
Type:
string
Account ID of the bucket owner.
bucketPath
Type:
string
S3 bucket path where reports will be written.

.NET
Go
Java
Python
TypeScript