public static interface LoggingConfiguration.Builder extends SdkPojo, CopyableBuilder<LoggingConfiguration.Builder,LoggingConfiguration>
| Modifier and Type | Method and Description |
|---|---|
LoggingConfiguration.Builder |
destinations(Collection<LogDestination> destinations)
An object that describes where your execution history events will be logged.
|
LoggingConfiguration.Builder |
destinations(Consumer<LogDestination.Builder>... destinations)
An object that describes where your execution history events will be logged.
|
LoggingConfiguration.Builder |
destinations(LogDestination... destinations)
An object that describes where your execution history events will be logged.
|
LoggingConfiguration.Builder |
includeExecutionData(Boolean includeExecutionData)
Determines whether execution history data is included in your log.
|
LoggingConfiguration.Builder |
level(LogLevel level)
Defines which category of execution history events are logged.
|
LoggingConfiguration.Builder |
level(String level)
Defines which category of execution history events are logged.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildLoggingConfiguration.Builder level(String level)
Defines which category of execution history events are logged.
LoggingConfiguration.Builder level(LogLevel level)
Defines which category of execution history events are logged.
LoggingConfiguration.Builder includeExecutionData(Boolean includeExecutionData)
Determines whether execution history data is included in your log. When set to FALSE, data is
excluded.
includeExecutionData - Determines whether execution history data is included in your log. When set to FALSE,
data is excluded.LoggingConfiguration.Builder destinations(Collection<LogDestination> destinations)
An object that describes where your execution history events will be logged. Limited to size 1. Required, if
your log level is not set to OFF.
destinations - An object that describes where your execution history events will be logged. Limited to size 1.
Required, if your log level is not set to OFF.LoggingConfiguration.Builder destinations(LogDestination... destinations)
An object that describes where your execution history events will be logged. Limited to size 1. Required, if
your log level is not set to OFF.
destinations - An object that describes where your execution history events will be logged. Limited to size 1.
Required, if your log level is not set to OFF.LoggingConfiguration.Builder destinations(Consumer<LogDestination.Builder>... destinations)
An object that describes where your execution history events will be logged. Limited to size 1. Required, if
your log level is not set to OFF.
List.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #destinations(List) .destinations - a consumer that will call methods on List.Builder #destinations(List) Copyright © 2019. All rights reserved.