Interface GetGroupMembershipIdRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<GetGroupMembershipIdRequest.Builder,GetGroupMembershipIdRequest>,IdentitystoreRequest.Builder,SdkBuilder<GetGroupMembershipIdRequest.Builder,GetGroupMembershipIdRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetGroupMembershipIdRequest
public static interface GetGroupMembershipIdRequest.Builder extends IdentitystoreRequest.Builder, SdkPojo, CopyableBuilder<GetGroupMembershipIdRequest.Builder,GetGroupMembershipIdRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetGroupMembershipIdRequest.BuildergroupId(String groupId)The identifier for a group in the identity store.GetGroupMembershipIdRequest.BuilderidentityStoreId(String identityStoreId)The globally unique identifier for the identity store.default GetGroupMembershipIdRequest.BuildermemberId(Consumer<MemberId.Builder> memberId)An object that contains the identifier of a group member.GetGroupMembershipIdRequest.BuildermemberId(MemberId memberId)An object that contains the identifier of a group member.GetGroupMembershipIdRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetGroupMembershipIdRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.identitystore.model.IdentitystoreRequest.Builder
build
-
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
-
identityStoreId
GetGroupMembershipIdRequest.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.
-
groupId
GetGroupMembershipIdRequest.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.
-
memberId
GetGroupMembershipIdRequest.Builder memberId(MemberId memberId)
An object that contains the identifier of a group member. Setting the
UserIDfield to the specific identifier for a user indicates that the user is a member of the group.- Parameters:
memberId- An object that contains the identifier of a group member. Setting theUserIDfield to the specific identifier for a user indicates that the user is a member of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberId
default GetGroupMembershipIdRequest.Builder memberId(Consumer<MemberId.Builder> memberId)
An object that contains the identifier of a group member. Setting the
This is a convenience method that creates an instance of theUserIDfield to the specific identifier for a user indicates that the user is a member of the group.MemberId.Builderavoiding the need to create one manually viaMemberId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomemberId(MemberId).- Parameters:
memberId- a consumer that will call methods onMemberId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
memberId(MemberId)
-
overrideConfiguration
GetGroupMembershipIdRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetGroupMembershipIdRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-