class Aws::States::Types::LoggingConfiguration

The `LoggingConfiguration` data type is used to set CloudWatch Logs options.

@note When making an API call, you may pass LoggingConfiguration

data as a hash:

    {
      level: "ALL", # accepts ALL, ERROR, FATAL, OFF
      include_execution_data: false,
      destinations: [
        {
          cloud_watch_logs_log_group: {
            log_group_arn: "Arn",
          },
        },
      ],
    }

@!attribute [rw] level

Defines which category of execution history events are logged.
@return [String]

@!attribute [rw] include_execution_data

Determines whether execution data is included in your log. When set
to `false`, data is excluded.
@return [Boolean]

@!attribute [rw] destinations

An array of objects that describes where your execution history
events will be logged. Limited to size 1. Required, if your log
level is not set to `OFF`.
@return [Array<Types::LogDestination>]

@see docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/LoggingConfiguration AWS API Documentation

Constants

SENSITIVE