Interface PermissionGroupByUser.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PermissionGroupByUser.Builder,PermissionGroupByUser>,SdkBuilder<PermissionGroupByUser.Builder,PermissionGroupByUser>,SdkPojo
- Enclosing class:
- PermissionGroupByUser
public static interface PermissionGroupByUser.Builder extends SdkPojo, CopyableBuilder<PermissionGroupByUser.Builder,PermissionGroupByUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PermissionGroupByUser.BuildermembershipStatus(String membershipStatus)Indicates the status of the user within a permission group.PermissionGroupByUser.BuildermembershipStatus(PermissionGroupMembershipStatus membershipStatus)Indicates the status of the user within a permission group.PermissionGroupByUser.Buildername(String name)The name of the permission group.PermissionGroupByUser.BuilderpermissionGroupId(String permissionGroupId)The unique identifier for the permission group.-
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
-
permissionGroupId
PermissionGroupByUser.Builder permissionGroupId(String permissionGroupId)
The unique identifier for the permission group.
- Parameters:
permissionGroupId- The unique identifier for the permission group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
PermissionGroupByUser.Builder name(String name)
The name of the permission group.
- Parameters:
name- The name of the permission group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
membershipStatus
PermissionGroupByUser.Builder membershipStatus(String membershipStatus)
Indicates the status of the user within a permission group.
-
ADDITION_IN_PROGRESS– The user is currently being added to the permission group. -
ADDITION_SUCCESS– The user is successfully added to the permission group. -
REMOVAL_IN_PROGRESS– The user is currently being removed from the permission group.
- Parameters:
membershipStatus- Indicates the status of the user within a permission group.-
ADDITION_IN_PROGRESS– The user is currently being added to the permission group. -
ADDITION_SUCCESS– The user is successfully added to the permission group. -
REMOVAL_IN_PROGRESS– The user is currently being removed from the permission group.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PermissionGroupMembershipStatus,PermissionGroupMembershipStatus
-
-
membershipStatus
PermissionGroupByUser.Builder membershipStatus(PermissionGroupMembershipStatus membershipStatus)
Indicates the status of the user within a permission group.
-
ADDITION_IN_PROGRESS– The user is currently being added to the permission group. -
ADDITION_SUCCESS– The user is successfully added to the permission group. -
REMOVAL_IN_PROGRESS– The user is currently being removed from the permission group.
- Parameters:
membershipStatus- Indicates the status of the user within a permission group.-
ADDITION_IN_PROGRESS– The user is currently being added to the permission group. -
ADDITION_SUCCESS– The user is successfully added to the permission group. -
REMOVAL_IN_PROGRESS– The user is currently being removed from the permission group.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PermissionGroupMembershipStatus,PermissionGroupMembershipStatus
-
-
-