Interface CfnExperimentTemplate.ExperimentReportS3ConfigurationProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.ExperimentReportS3ConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The S3 destination for 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.*;
 ExperimentReportS3ConfigurationProperty experimentReportS3ConfigurationProperty = ExperimentReportS3ConfigurationProperty.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .prefix("prefix")
         .build();
 

See Also: