Class: Aws::States::Types::LoggingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LoggingConfiguration
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
The LoggingConfiguration data type is used to set CloudWatch Logs
options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destinations ⇒ Array<Types::LogDestination>
An array of objects that describes where your execution history events will be logged.
-
#include_execution_data ⇒ Boolean
Determines whether execution data is included in your log.
-
#level ⇒ String
Defines which category of execution history events are logged.
Instance Attribute Details
#destinations ⇒ Array<Types::LogDestination>
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.
3008 3009 3010 3011 3012 3013 3014 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3008 class LoggingConfiguration < Struct.new( :level, :include_execution_data, :destinations) SENSITIVE = [] include Aws::Structure end |
#include_execution_data ⇒ Boolean
Determines whether execution data is included in your log. When set
to false, data is excluded.
3008 3009 3010 3011 3012 3013 3014 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3008 class LoggingConfiguration < Struct.new( :level, :include_execution_data, :destinations) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
Defines which category of execution history events are logged.
3008 3009 3010 3011 3012 3013 3014 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3008 class LoggingConfiguration < Struct.new( :level, :include_execution_data, :destinations) SENSITIVE = [] include Aws::Structure end |