Interface LogoConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LogoConfiguration.Builder,
,LogoConfiguration> SdkBuilder<LogoConfiguration.Builder,
,LogoConfiguration> SdkPojo
- Enclosing class:
LogoConfiguration
@Mutable
@NotThreadSafe
public static interface LogoConfiguration.Builder
extends SdkPojo, CopyableBuilder<LogoConfiguration.Builder,LogoConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionThe alt text for the logo.default LogoConfiguration.Builder
logoSet
(Consumer<LogoSetConfiguration.Builder> logoSet) A set of configured logos.logoSet
(LogoSetConfiguration logoSet) A set of configured logos.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
-
altText
The alt text for the logo.
- Parameters:
altText
- The alt text for the logo.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logoSet
A set of configured logos.
- Parameters:
logoSet
- A set of configured logos.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logoSet
A set of configured logos.
This is a convenience method that creates an instance of theLogoSetConfiguration.Builder
avoiding the need to create one manually viaLogoSetConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tologoSet(LogoSetConfiguration)
.- Parameters:
logoSet
- a consumer that will call methods onLogoSetConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-