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