Interface LoggingConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LoggingConfiguration.Builder,
,LoggingConfiguration> SdkBuilder<LoggingConfiguration.Builder,
,LoggingConfiguration> SdkPojo
- Enclosing class:
LoggingConfiguration
@Mutable
@NotThreadSafe
public static interface LoggingConfiguration.Builder
extends SdkPojo, CopyableBuilder<LoggingConfiguration.Builder,LoggingConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondestinations
(Collection<LogDestination> destinations) A list of the locations where SimSpace Weaver sends simulation log data.destinations
(Consumer<LogDestination.Builder>... destinations) A list of the locations where SimSpace Weaver sends simulation log data.destinations
(LogDestination... destinations) A list of the locations where SimSpace Weaver sends simulation log data.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
destinations
A list of the locations where SimSpace Weaver sends simulation log data.
- Parameters:
destinations
- A list of the locations where SimSpace Weaver sends simulation log data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinations
A list of the locations where SimSpace Weaver sends simulation log data.
- Parameters:
destinations
- A list of the locations where SimSpace Weaver sends simulation log data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinations
A list of the locations where SimSpace Weaver sends simulation log data.
This is a convenience method that creates an instance of theLogDestination.Builder
avoiding the need to create one manually viaLogDestination.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todestinations(List<LogDestination>)
.- Parameters:
destinations
- a consumer that will call methods onLogDestination.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-