Interface Session.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Session.Builder,Session>,SdkBuilder<Session.Builder,Session>,SdkPojo
- Enclosing class:
- Session
public static interface Session.Builder extends SdkPojo, CopyableBuilder<Session.Builder,Session>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Session.BuilderisPrimary(Boolean isPrimary)When true, this Boolean value indicates the primary session for the specified resource.Session.Buildername(String name)The session name.Session.Builderurl(String url)The session URL.-
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
-
name
Session.Builder name(String name)
The session name.
- Parameters:
name- The session name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
url
Session.Builder url(String url)
The session URL.
- Parameters:
url- The session URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isPrimary
Session.Builder isPrimary(Boolean isPrimary)
When true, this Boolean value indicates the primary session for the specified resource.
- Parameters:
isPrimary- When true, this Boolean value indicates the primary session for the specified resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-