Interface DescribeGroupResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeGroupResponse.Builder,DescribeGroupResponse>,IdentitystoreResponse.Builder,SdkBuilder<DescribeGroupResponse.Builder,DescribeGroupResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeGroupResponse
public static interface DescribeGroupResponse.Builder extends IdentitystoreResponse.Builder, SdkPojo, CopyableBuilder<DescribeGroupResponse.Builder,DescribeGroupResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeGroupResponse.Builderdescription(String description)A string containing a description of the group.DescribeGroupResponse.BuilderdisplayName(String displayName)The group’s display name value.DescribeGroupResponse.BuilderexternalIds(Collection<ExternalId> externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.DescribeGroupResponse.BuilderexternalIds(Consumer<ExternalId.Builder>... externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.DescribeGroupResponse.BuilderexternalIds(ExternalId... externalIds)A list ofExternalIdobjects that contains the identifiers issued to this resource by an external identity provider.DescribeGroupResponse.BuildergroupId(String groupId)The identifier for a group in the identity store.DescribeGroupResponse.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.services.identitystore.model.IdentitystoreResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
groupId
DescribeGroupResponse.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
DescribeGroupResponse.Builder displayName(String displayName)
The group’s display name value. 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 that the group is created and stored as an attribute of the group object in the identity store.
- Parameters:
displayName- The group’s display name value. 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 that 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
DescribeGroupResponse.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
DescribeGroupResponse.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
DescribeGroupResponse.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
DescribeGroupResponse.Builder description(String description)
A string containing a description of the group.
- Parameters:
description- A string containing a description of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityStoreId
DescribeGroupResponse.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.
-
-