Class: Aws::MWAAServerless::Types::LoggingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAAServerless::Types::LoggingConfiguration
- Defined in:
- gems/aws-sdk-mwaaserverless/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
-
#log_group_name ⇒ String
The name of the CloudWatch log group where workflow execution logs are stored.
Instance Attribute Details
#log_group_name ⇒ String
The name of the CloudWatch log group where workflow execution logs are stored.
848 849 850 851 852 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 848 class LoggingConfiguration < Struct.new( :log_group_name) SENSITIVE = [] include Aws::Structure end |