Interface LogPublishingOptionsStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LogPublishingOptionsStatus.Builder,LogPublishingOptionsStatus>,SdkBuilder<LogPublishingOptionsStatus.Builder,LogPublishingOptionsStatus>,SdkPojo
- Enclosing class:
- LogPublishingOptionsStatus
public static interface LogPublishingOptionsStatus.Builder extends SdkPojo, CopyableBuilder<LogPublishingOptionsStatus.Builder,LogPublishingOptionsStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LogPublishingOptionsStatus.Builderoptions(Map<LogType,LogPublishingOption> options)The log publishing options configured for the domain.LogPublishingOptionsStatus.BuilderoptionsWithStrings(Map<String,LogPublishingOption> options)The log publishing options configured for the domain.default LogPublishingOptionsStatus.Builderstatus(Consumer<OptionStatus.Builder> status)The status of the log publishing options for the domain.LogPublishingOptionsStatus.Builderstatus(OptionStatus status)The status of the log publishing options for the domain.-
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
-
optionsWithStrings
LogPublishingOptionsStatus.Builder optionsWithStrings(Map<String,LogPublishingOption> options)
The log publishing options configured for the domain.
- Parameters:
options- The log publishing options configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
LogPublishingOptionsStatus.Builder options(Map<LogType,LogPublishingOption> options)
The log publishing options configured for the domain.
- Parameters:
options- The log publishing options configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
LogPublishingOptionsStatus.Builder status(OptionStatus status)
The status of the log publishing options for the domain.
- Parameters:
status- The status of the log publishing options for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default LogPublishingOptionsStatus.Builder status(Consumer<OptionStatus.Builder> status)
The status of the log publishing options for the domain.
This is a convenience method that creates an instance of theOptionStatus.Builderavoiding the need to create one manually viaOptionStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatus(OptionStatus).- Parameters:
status- a consumer that will call methods onOptionStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
status(OptionStatus)
-
-