Interface CfnExperimentTemplate.OutputsProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.OutputsProperty extends software.amazon.jsii.JsiiSerializable
Describes the output destinations of 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.*;
 OutputsProperty outputsProperty = OutputsProperty.builder()
         .experimentReportS3Configuration(ExperimentReportS3ConfigurationProperty.builder()
                 .bucketName("bucketName")
                 // the properties below are optional
                 .prefix("prefix")
                 .build())
         .build();
 

See Also: