Interface UserInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserInfo.Builder,UserInfo>,SdkBuilder<UserInfo.Builder,UserInfo>,SdkPojo
- Enclosing class:
- UserInfo
public static interface UserInfo.Builder extends SdkPojo, CopyableBuilder<UserInfo.Builder,UserInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserInfo.Builderdate(String date)The date when the specified commit was commited, in timestamp format with GMT offset.UserInfo.Builderemail(String email)The email address associated with the user who made the commit, if any.UserInfo.Buildername(String name)The name of the user who made the specified commit.-
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
-
name
UserInfo.Builder name(String name)
The name of the user who made the specified commit.
- Parameters:
name- The name of the user who made the specified commit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
email
UserInfo.Builder email(String email)
The email address associated with the user who made the commit, if any.
- Parameters:
email- The email address associated with the user who made the commit, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
date
UserInfo.Builder date(String date)
The date when the specified commit was commited, in timestamp format with GMT offset.
- Parameters:
date- The date when the specified commit was commited, in timestamp format with GMT offset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-