interface ExperimentTemplateLogConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.FIS.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfis#CfnExperimentTemplate_ExperimentTemplateLogConfigurationProperty | 
|  Java | software.amazon.awscdk.services.fis.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty | 
|  Python | aws_cdk.aws_fis.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_fis»CfnExperimentTemplate»ExperimentTemplateLogConfigurationProperty | 
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 { aws_fis as fis } from 'aws-cdk-lib';
declare const cloudWatchLogsConfiguration: any;
declare const s3Configuration: any;
const experimentTemplateLogConfigurationProperty: fis.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty = {
  logSchemaVersion: 123,
  // the properties below are optional
  cloudWatchLogsConfiguration: cloudWatchLogsConfiguration,
  s3Configuration: s3Configuration,
};
Properties
| Name | Type | Description | 
|---|---|---|
| log | number | The schema version. | 
| cloud | any | The configuration for experiment logging to CloudWatch Logs . | 
| s3 | any | The configuration for experiment logging to Amazon S3 . | 
logSchemaVersion
Type:
number
The schema version.
cloudWatchLogsConfiguration?
Type:
any
(optional)
The configuration for experiment logging to CloudWatch Logs .
s3Configuration?
Type:
any
(optional)
The configuration for experiment logging to Amazon S3 .
