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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The data sources for the experiment report.The output destinations of the experiment report.default String
The duration after the experiment end time for the data sources to include in the report.default String
The duration before the experiment start time for the data sources to include in the report.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputs
The output destinations of the experiment report.- See Also:
-
getDataSources
The data sources for the experiment report.- See Also:
-
getPostExperimentDuration
The duration after the experiment end time for the data sources to include in the report.- See Also:
-
getPreExperimentDuration
The duration before the experiment start time for the data sources to include in the report.- See Also:
-
builder
@Stability(Stable) static CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty.Builder builder()
-