Interface LogDeliveryDescription.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LogDeliveryDescription.Builder,
,LogDeliveryDescription> SdkBuilder<LogDeliveryDescription.Builder,
,LogDeliveryDescription> SdkPojo
- Enclosing class:
LogDeliveryDescription
@Mutable
@NotThreadSafe
public static interface LogDeliveryDescription.Builder
extends SdkPojo, CopyableBuilder<LogDeliveryDescription.Builder,LogDeliveryDescription>
-
Method Summary
Modifier and TypeMethodDescriptiondefault LogDeliveryDescription.Builder
workerLogDelivery
(Consumer<WorkerLogDeliveryDescription.Builder> workerLogDelivery) The workers can send worker logs to different destination types.workerLogDelivery
(WorkerLogDeliveryDescription workerLogDelivery) The workers can send worker logs to different destination types.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
-
workerLogDelivery
The workers can send worker logs to different destination types. This configuration specifies the details of these destinations.
- Parameters:
workerLogDelivery
- The workers can send worker logs to different destination types. This configuration specifies the details of these destinations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workerLogDelivery
default LogDeliveryDescription.Builder workerLogDelivery(Consumer<WorkerLogDeliveryDescription.Builder> workerLogDelivery) The workers can send worker logs to different destination types. This configuration specifies the details of these destinations.
This is a convenience method that creates an instance of theWorkerLogDeliveryDescription.Builder
avoiding the need to create one manually viaWorkerLogDeliveryDescription.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toworkerLogDelivery(WorkerLogDeliveryDescription)
.- Parameters:
workerLogDelivery
- a consumer that will call methods onWorkerLogDeliveryDescription.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-