Interface CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the report configuration for the experiment template.

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.fis.*;
 ExperimentTemplateExperimentReportConfigurationProperty experimentTemplateExperimentReportConfigurationProperty = ExperimentTemplateExperimentReportConfigurationProperty.builder()
         .outputs(OutputsProperty.builder()
                 .experimentReportS3Configuration(ExperimentReportS3ConfigurationProperty.builder()
                         .bucketName("bucketName")
                         // the properties below are optional
                         .prefix("prefix")
                         .build())
                 .build())
         // the properties below are optional
         .dataSources(DataSourcesProperty.builder()
                 .cloudWatchDashboards(List.of(CloudWatchDashboardProperty.builder()
                         .dashboardIdentifier("dashboardIdentifier")
                         .build()))
                 .build())
         .postExperimentDuration("postExperimentDuration")
         .preExperimentDuration("preExperimentDuration")
         .build();
 

See Also: