Interface Group.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Group.Builder,Group>,SdkBuilder<Group.Builder,Group>,SdkPojo
- Enclosing class:
- Group
public static interface Group.Builder extends SdkPojo, CopyableBuilder<Group.Builder,Group>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Group.Builderdescription(String description)A string containing a description of the specified group.Group.BuilderdisplayName(String displayName)The display name value for the group.Group.BuilderexternalIds(Collection<ExternalId> externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.Group.BuilderexternalIds(Consumer<ExternalId.Builder>... externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.Group.BuilderexternalIds(ExternalId... externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.Group.BuildergroupId(String groupId)The identifier for a group in the identity store.Group.BuilderidentityStoreId(String identityStoreId)The globally unique identifier for the identity store.-
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
-
groupId
Group.Builder groupId(String groupId)
The identifier for a group in the identity store.
- Parameters:
groupId- The identifier for a group in the identity store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
Group.Builder displayName(String displayName)
The display name value for the group. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.
- Parameters:
displayName- The display name value for the group. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
externalIds
Group.Builder externalIds(Collection<ExternalId> externalIds)
A list of
ExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.- Parameters:
externalIds- A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
externalIds
Group.Builder externalIds(ExternalId... externalIds)
A list of
ExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.- Parameters:
externalIds- A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
externalIds
Group.Builder externalIds(Consumer<ExternalId.Builder>... externalIds)
A list of
This is a convenience method that creates an instance of theExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.ExternalId.Builderavoiding the need to create one manually viaExternalId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#externalIds(List.) - Parameters:
externalIds- a consumer that will call methods onExternalId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#externalIds(java.util.Collection)
-
description
Group.Builder description(String description)
A string containing a description of the specified group.
- Parameters:
description- A string containing a description of the specified group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityStoreId
Group.Builder identityStoreId(String identityStoreId)
The globally unique identifier for the identity store.
- Parameters:
identityStoreId- The globally unique identifier for the identity store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-