Interface PrincipalGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PrincipalGroup.Builder,PrincipalGroup>,SdkBuilder<PrincipalGroup.Builder,PrincipalGroup>,SdkPojo
- Enclosing class:
- PrincipalGroup
public static interface PrincipalGroup.Builder extends SdkPojo, CopyableBuilder<PrincipalGroup.Builder,PrincipalGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrincipalGroup.Builderaccess(String access)Provides information about whether to allow or deny access to the principal.PrincipalGroup.Builderaccess(ReadAccessType access)Provides information about whether to allow or deny access to the principal.PrincipalGroup.BuildermembershipType(String membershipType)The type of group.PrincipalGroup.BuildermembershipType(MembershipType membershipType)The type of group.PrincipalGroup.Buildername(String name)The name of the 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
-
name
PrincipalGroup.Builder name(String name)
The name of the group.
- Parameters:
name- The name of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
access
PrincipalGroup.Builder access(String access)
Provides information about whether to allow or deny access to the principal.
- Parameters:
access- Provides information about whether to allow or deny access to the principal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReadAccessType,ReadAccessType
-
access
PrincipalGroup.Builder access(ReadAccessType access)
Provides information about whether to allow or deny access to the principal.
- Parameters:
access- Provides information about whether to allow or deny access to the principal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReadAccessType,ReadAccessType
-
membershipType
PrincipalGroup.Builder membershipType(String membershipType)
The type of group.
- Parameters:
membershipType- The type of group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MembershipType,MembershipType
-
membershipType
PrincipalGroup.Builder membershipType(MembershipType membershipType)
The type of group.
- Parameters:
membershipType- The type of group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MembershipType,MembershipType
-
-