Interface GroupType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupType.Builder,GroupType>,SdkBuilder<GroupType.Builder,GroupType>,SdkPojo
- Enclosing class:
- GroupType
public static interface GroupType.Builder extends SdkPojo, CopyableBuilder<GroupType.Builder,GroupType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupType.BuildercreationDate(Instant creationDate)The date and time when the item was created.GroupType.Builderdescription(String description)A friendly description of the group.GroupType.BuildergroupName(String groupName)The name of the group.GroupType.BuilderlastModifiedDate(Instant lastModifiedDate)The date and time when the item was modified.GroupType.Builderprecedence(Integer precedence)A non-negative integer value that specifies the precedence of this group relative to the other groups that a user can belong to in the user pool.GroupType.BuilderroleArn(String roleArn)The ARN of the IAM role associated with the group.GroupType.BuilderuserPoolId(String userPoolId)The ID of the user pool that contains 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
groupName
GroupType.Builder groupName(String groupName)
The name of the group.
- Parameters:
groupName- The name of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userPoolId
GroupType.Builder userPoolId(String userPoolId)
The ID of the user pool that contains the group.
- Parameters:
userPoolId- The ID of the user pool that contains the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GroupType.Builder description(String description)
A friendly description of the group.
- Parameters:
description- A friendly description of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
GroupType.Builder roleArn(String roleArn)
The ARN of the IAM role associated with the group. If a group has the highest priority of a user's groups, users who authenticate with an identity pool get credentials for the
RoleArnthat's associated with the group.- Parameters:
roleArn- The ARN of the IAM role associated with the group. If a group has the highest priority of a user's groups, users who authenticate with an identity pool get credentials for theRoleArnthat's associated with the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
precedence
GroupType.Builder precedence(Integer precedence)
A non-negative integer value that specifies the precedence of this group relative to the other groups that a user can belong to in the user pool. Zero is the highest precedence value. Groups with lower
Precedencevalues take precedence over groups with higher ornullPrecedencevalues. If a user belongs to two or more groups, it is the group with the lowest precedence value whose role ARN is given in the user's tokens for thecognito:rolesandcognito:preferred_roleclaims.Two groups can have the same
Precedencevalue. If this happens, neither group takes precedence over the other. If two groups with the samePrecedencehave the same role ARN, that role is used in thecognito:preferred_roleclaim in tokens for users in each group. If the two groups have different role ARNs, thecognito:preferred_roleclaim isn't set in users' tokens.The default
Precedencevalue isnull.- Parameters:
precedence- A non-negative integer value that specifies the precedence of this group relative to the other groups that a user can belong to in the user pool. Zero is the highest precedence value. Groups with lowerPrecedencevalues take precedence over groups with higher ornullPrecedencevalues. If a user belongs to two or more groups, it is the group with the lowest precedence value whose role ARN is given in the user's tokens for thecognito:rolesandcognito:preferred_roleclaims.Two groups can have the same
Precedencevalue. If this happens, neither group takes precedence over the other. If two groups with the samePrecedencehave the same role ARN, that role is used in thecognito:preferred_roleclaim in tokens for users in each group. If the two groups have different role ARNs, thecognito:preferred_roleclaim isn't set in users' tokens.The default
Precedencevalue isnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedDate
GroupType.Builder lastModifiedDate(Instant lastModifiedDate)
The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java
Dateobject.- Parameters:
lastModifiedDate- The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a JavaDateobject.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
GroupType.Builder creationDate(Instant creationDate)
The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java
Dateobject.- Parameters:
creationDate- The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a JavaDateobject.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-