Interface PermissionInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PermissionInfo.Builder,PermissionInfo>,SdkBuilder<PermissionInfo.Builder,PermissionInfo>,SdkPojo
- Enclosing class:
- PermissionInfo
public static interface PermissionInfo.Builder extends SdkPojo, CopyableBuilder<PermissionInfo.Builder,PermissionInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PermissionInfo.Builderrole(String role)The role of the user.PermissionInfo.Builderrole(RoleType role)The role of the user.PermissionInfo.Buildertype(String type)The type of permissions.PermissionInfo.Buildertype(RolePermissionType type)The type of permissions.-
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
-
role
PermissionInfo.Builder role(String role)
The role of the user.
-
role
PermissionInfo.Builder role(RoleType role)
The role of the user.
-
type
PermissionInfo.Builder type(String type)
The type of permissions.
- Parameters:
type- The type of permissions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RolePermissionType,RolePermissionType
-
type
PermissionInfo.Builder type(RolePermissionType type)
The type of permissions.
- Parameters:
type- The type of permissions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RolePermissionType,RolePermissionType
-
-