Class: Aws::MWAAServerless::Types::LoggingConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mwaaserverless/types.rb

Overview

Configuration for workflow logging that specifies where you should store your workflow execution logs. Amazon Managed Workflows for Apache Airflow Serverless provides comprehensive logging capabilities that capture workflow execution details, task-level information, and system events. Logs are automatically exported to your specified CloudWatch log group using remote logging functionality, providing centralized observability across the distributed, multi-tenant execution environment. This enables effective debugging, monitoring, and compliance auditing of workflow executions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#log_group_nameString

The name of the CloudWatch log group where workflow execution logs are stored.

Returns:

  • (String)


892
893
894
895
896
# File 'lib/aws-sdk-mwaaserverless/types.rb', line 892

class LoggingConfiguration < Struct.new(
  :log_group_name)
  SENSITIVE = []
  include Aws::Structure
end