interface ExperimentTemplateExperimentReportConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.FIS.CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsfis#CfnExperimentTemplate_ExperimentTemplateExperimentReportConfigurationProperty |
![]() | software.amazon.awscdk.services.fis.CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty |
![]() | aws_cdk.aws_fis.CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty |
![]() | aws-cdk-lib » aws_fis » CfnExperimentTemplate » 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 { aws_fis as fis } from 'aws-cdk-lib';
const experimentTemplateExperimentReportConfigurationProperty: fis.CfnExperimentTemplate.ExperimentTemplateExperimentReportConfigurationProperty = {
outputs: {
experimentReportS3Configuration: {
bucketName: 'bucketName',
// the properties below are optional
prefix: 'prefix',
},
},
// the properties below are optional
dataSources: {
cloudWatchDashboards: [{
dashboardIdentifier: 'dashboardIdentifier',
}],
},
postExperimentDuration: 'postExperimentDuration',
preExperimentDuration: 'preExperimentDuration',
};
Properties
Name | Type | Description |
---|---|---|
outputs | IResolvable | Outputs | The output destinations of the experiment report. |
data | IResolvable | Data | The data sources for 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. |
outputs
Type:
IResolvable
|
Outputs
The output destinations of the experiment report.
dataSources?
Type:
IResolvable
|
Data
(optional)
The data sources for 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.