LogOptions¶
-
class
aws_cdk.aws_stepfunctions.
LogOptions
(*, destination, include_execution_data=None, level=None)¶ Bases:
object
Defines what execution history events are logged and where they are logged.
- Parameters
destination (
ILogGroup
) – The log group where the execution history events will be logged.include_execution_data (
Optional
[bool
]) – Determines whether execution data is included in your log. Default: truelevel (
Optional
[LogLevel
]) – Defines which category of execution history events are logged. Default: ERROR
Attributes
-
include_execution_data
¶ Determines whether execution data is included in your log.
- Default
true
- Return type
Optional
[bool
]