Interface SessionTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SessionTag.Builder,SessionTag>,SdkBuilder<SessionTag.Builder,SessionTag>,SdkPojo
- Enclosing class:
- SessionTag
@Mutable @NotThreadSafe public static interface SessionTag.Builder extends SdkPojo, CopyableBuilder<SessionTag.Builder,SessionTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SessionTag.Builderkey(String key)The key for the tag.SessionTag.Buildervalue(String value)The value that you want to assign the tag.-
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
-
key
SessionTag.Builder key(String key)
The key for the tag.
- Parameters:
key- The key for the tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
SessionTag.Builder value(String value)
The value that you want to assign the tag.
- Parameters:
value- The value that you want to assign the tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-