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 Service 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogSchemaVersion
The schema version.- See Also:
-
getCloudWatchLogsConfiguration
The configuration for experiment logging to CloudWatch Logs .- See Also:
-
getS3Configuration
The configuration for experiment logging to Amazon S3 .- See Also:
-
builder
@Stability(Stable) static CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty.Builder builder()
-