Interface CfnExperimentTemplate.S3ConfigurationProperty

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

@Stability(Stable) public static interface CfnExperimentTemplate.S3ConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration for experiment logging to Amazon S3 .

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.*;
 S3ConfigurationProperty s3ConfigurationProperty = S3ConfigurationProperty.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .prefix("prefix")
         .build();
 

See Also: