interface S3ReportOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.S3ReportOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_S3ReportOutputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.S3ReportOutputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.S3ReportOutputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » 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/cfn-property-mixins';
const s3ReportOutputConfigurationProperty: resiliencehubv2.CfnServicePropsMixin.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
(optional)
Account ID of the bucket owner.
bucketPath?
Type:
string
(optional)
S3 bucket path where reports will be written.

.NET
Go
Java
Python
TypeScript