Interface CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty

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

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

For more information, see Experiment logging in the AWS Fault Injection Simulator User Guide .

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.*;
 Object cloudWatchLogsConfiguration;
 Object s3Configuration;
 ExperimentTemplateLogConfigurationProperty experimentTemplateLogConfigurationProperty = ExperimentTemplateLogConfigurationProperty.builder()
         .logSchemaVersion(123)
         // the properties below are optional
         .cloudWatchLogsConfiguration(cloudWatchLogsConfiguration)
         .s3Configuration(s3Configuration)
         .build();