Method: Aws::MWAA::Types::UpdateEnvironmentInput#logging_configuration

Defined in:
lib/aws-sdk-mwaa/types.rb

#logging_configurationTypes::LoggingConfigurationInput

The Apache Airflow log types to send to CloudWatch Logs.



1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
# File 'lib/aws-sdk-mwaa/types.rb', line 1728

class UpdateEnvironmentInput < Struct.new(
  :name,
  :execution_role_arn,
  :airflow_configuration_options,
  :airflow_version,
  :dag_s3_path,
  :environment_class,
  :logging_configuration,
  :max_workers,
  :min_workers,
  :max_webservers,
  :min_webservers,
  :worker_replacement_strategy,
  :network_configuration,
  :plugins_s3_path,
  :plugins_s3_object_version,
  :requirements_s3_path,
  :requirements_s3_object_version,
  :schedulers,
  :source_bucket_arn,
  :startup_script_s3_path,
  :startup_script_s3_object_version,
  :webserver_access_mode,
  :weekly_maintenance_window_start)
  SENSITIVE = [:airflow_configuration_options]
  include Aws::Structure
end