Interface CfnService.ServiceReportConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.ServiceReportConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.ServiceReportConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.resiliencehubv2.*;
 ServiceReportConfigurationProperty serviceReportConfigurationProperty = ServiceReportConfigurationProperty.builder()
         .reportOutput(List.of(ReportOutputConfigurationProperty.builder()
                 .s3(S3ReportOutputConfigurationProperty.builder()
                         .bucketOwner("bucketOwner")
                         .bucketPath("bucketPath")
                         .build())
                 .build()))
         .build();
 

See Also: