Interface SelectOptionDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SelectOptionDescription.Builder,SelectOptionDescription>,SdkBuilder<SelectOptionDescription.Builder,SelectOptionDescription>,SdkPojo
- Enclosing class:
- SelectOptionDescription
public static interface SelectOptionDescription.Builder extends SdkPojo, CopyableBuilder<SelectOptionDescription.Builder,SelectOptionDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SelectOptionDescription.Builderdescription(String description)A description of the option meaning.SelectOptionDescription.Builderoption(String option)The value of the option.SelectOptionDescription.Buildertitle(String title)The title of the select option.-
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, sdkFields
-
-
-
-
Method Detail
-
option
SelectOptionDescription.Builder option(String option)
The value of the option.
- Parameters:
option- The value of the option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
SelectOptionDescription.Builder title(String title)
The title of the select option.
- Parameters:
title- The title of the select option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
SelectOptionDescription.Builder description(String description)
A description of the option meaning.
- Parameters:
description- A description of the option meaning.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-