Interface LogDeliveryDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LogDeliveryDescription.Builder,LogDeliveryDescription>,SdkBuilder<LogDeliveryDescription.Builder,LogDeliveryDescription>,SdkPojo
- Enclosing class:
- LogDeliveryDescription
public static interface LogDeliveryDescription.Builder extends SdkPojo, CopyableBuilder<LogDeliveryDescription.Builder,LogDeliveryDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default LogDeliveryDescription.BuilderworkerLogDelivery(Consumer<WorkerLogDeliveryDescription.Builder> workerLogDelivery)The workers can send worker logs to different destination types.LogDeliveryDescription.BuilderworkerLogDelivery(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 Detail
-
workerLogDelivery
LogDeliveryDescription.Builder workerLogDelivery(WorkerLogDeliveryDescription 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.Builderavoiding the need to create one manually viaWorkerLogDeliveryDescription.builder().When the
Consumercompletes,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:
workerLogDelivery(WorkerLogDeliveryDescription)
-
-