Interface CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnExperimentTemplatePropsMixin
@Stability(Stable)
public static interface CfnExperimentTemplatePropsMixin.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.cfnpropertymixins.services.fis.*;
ExperimentTemplateExperimentReportConfigurationProperty experimentTemplateExperimentReportConfigurationProperty = ExperimentTemplateExperimentReportConfigurationProperty.builder()
.dataSources(DataSourcesProperty.builder()
.cloudWatchDashboards(List.of(CloudWatchDashboardProperty.builder()
.dashboardIdentifier("dashboardIdentifier")
.build()))
.build())
.outputs(OutputsProperty.builder()
.experimentReportS3Configuration(ExperimentReportS3ConfigurationProperty.builder()
.bucketName("bucketName")
.prefix("prefix")
.build())
.build())
.postExperimentDuration("postExperimentDuration")
.preExperimentDuration("preExperimentDuration")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty.Builderbuilder()default ObjectThe data sources for the experiment report.default ObjectThe output destinations of the experiment report.default StringThe duration after the experiment end time for the data sources to include in the report.default StringThe 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
-
getDataSources
The data sources for the experiment report.Returns union: either
IResolvableorCfnExperimentTemplatePropsMixin.DataSourcesProperty- See Also:
-
getOutputs
The output destinations of the experiment report.Returns union: either
IResolvableorCfnExperimentTemplatePropsMixin.OutputsProperty- 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 CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty.Builder builder()
-