interface ExperimentTemplateExperimentReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/mixins#CfnExperimentTemplatePropsMixin_ExperimentTemplateExperimentReportConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fis » mixins » CfnExperimentTemplatePropsMixin » ExperimentTemplateExperimentReportConfigurationProperty |
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 { mixins as fis_mixins } from '@aws-cdk/mixins-preview/aws-fis';
const experimentTemplateExperimentReportConfigurationProperty: fis_mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateExperimentReportConfigurationProperty = {
dataSources: {
cloudWatchDashboards: [{
dashboardIdentifier: 'dashboardIdentifier',
}],
},
outputs: {
experimentReportS3Configuration: {
bucketName: 'bucketName',
prefix: 'prefix',
},
},
postExperimentDuration: 'postExperimentDuration',
preExperimentDuration: 'preExperimentDuration',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | The data sources for the experiment report. |
| outputs? | IResolvable | Outputs | The output destinations of the experiment report. |
| post | string | The duration after the experiment end time for the data sources to include in the report. |
| pre | string | The duration before the experiment start time for the data sources to include in the report. |
dataSources?
Type:
IResolvable | Data
(optional)
The data sources for the experiment report.
outputs?
Type:
IResolvable | Outputs
(optional)
The output destinations of the experiment report.
postExperimentDuration?
Type:
string
(optional)
The duration after the experiment end time for the data sources to include in the report.
preExperimentDuration?
Type:
string
(optional)
The duration before the experiment start time for the data sources to include in the report.

.NET
Go
Java
Python
TypeScript