Interface CfnExperimentTemplate.DataSourcesProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.DataSourcesProperty extends software.amazon.jsii.JsiiSerializable
Describes the data sources for the experiment report.

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.*;
 DataSourcesProperty dataSourcesProperty = DataSourcesProperty.builder()
         .cloudWatchDashboards(List.of(CloudWatchDashboardProperty.builder()
                 .dashboardIdentifier("dashboardIdentifier")
                 .build()))
         .build();
 

See Also: