interface ServiceReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.ServiceReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_ServiceReportConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.ServiceReportConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.ServiceReportConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » 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/cfn-property-mixins';
const serviceReportConfigurationProperty: resiliencehubv2.CfnServicePropsMixin.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)[]
(optional)
Output destinations for generated reports.

.NET
Go
Java
Python
TypeScript