Interface CfnExperimentTemplatePropsMixin.OutputsProperty

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

@Stability(Stable) public static interface CfnExperimentTemplatePropsMixin.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.cfnpropertymixins.services.fis.*;
 OutputsProperty outputsProperty = OutputsProperty.builder()
         .experimentReportS3Configuration(ExperimentReportS3ConfigurationProperty.builder()
                 .bucketName("bucketName")
                 .prefix("prefix")
                 .build())
         .build();
 

See Also: