interface ServiceReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.ServiceReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_ServiceReportConfigurationProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.ServiceReportConfigurationProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.ServiceReportConfigurationProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » ServiceReportConfigurationProperty |
Configuration for automatic report generation on a Service.
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 serviceReportConfigurationProperty: resiliencehubv2.CfnService.ServiceReportConfigurationProperty = {
reportOutput: [{
s3: {
bucketOwner: 'bucketOwner',
bucketPath: 'bucketPath',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| report | IResolvable | (IResolvable | Report)[] | Output destinations for generated reports. |
reportOutput
Type:
IResolvable | (IResolvable | Report)[]
Output destinations for generated reports.

.NET
Go
Java
Python
TypeScript