aws-cdk-lib.aws_fis.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty

interface ExperimentTemplateLogConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.FIS.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfis#CfnExperimentTemplate_ExperimentTemplateLogConfigurationProperty
Javasoftware.amazon.awscdk.services.fis.CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty
Pythonaws_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 Simulator 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

NameTypeDescription
logSchemaVersionnumberThe schema version.
cloudWatchLogsConfiguration?anyThe configuration for experiment logging to CloudWatch Logs .
s3Configuration?anyThe 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 .