Interface UpdateGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateGroupRequest.Builder,UpdateGroupRequest>,IdentitystoreRequest.Builder,SdkBuilder<UpdateGroupRequest.Builder,UpdateGroupRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateGroupRequest
public static interface UpdateGroupRequest.Builder extends IdentitystoreRequest.Builder, SdkPojo, CopyableBuilder<UpdateGroupRequest.Builder,UpdateGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateGroupRequest.BuildergroupId(String groupId)The identifier for a group in the identity store.UpdateGroupRequest.BuilderidentityStoreId(String identityStoreId)The globally unique identifier for the identity store.UpdateGroupRequest.Builderoperations(Collection<AttributeOperation> operations)A list ofAttributeOperationobjects to apply to the requested group.UpdateGroupRequest.Builderoperations(Consumer<AttributeOperation.Builder>... operations)A list ofAttributeOperationobjects to apply to the requested group.UpdateGroupRequest.Builderoperations(AttributeOperation... operations)A list ofAttributeOperationobjects to apply to the requested group.UpdateGroupRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateGroupRequest.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
UpdateGroupRequest.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
UpdateGroupRequest.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.
-
operations
UpdateGroupRequest.Builder operations(Collection<AttributeOperation> operations)
A list of
AttributeOperationobjects to apply to the requested group. These operations might add, replace, or remove an attribute.- Parameters:
operations- A list ofAttributeOperationobjects to apply to the requested group. These operations might add, replace, or remove an attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
UpdateGroupRequest.Builder operations(AttributeOperation... operations)
A list of
AttributeOperationobjects to apply to the requested group. These operations might add, replace, or remove an attribute.- Parameters:
operations- A list ofAttributeOperationobjects to apply to the requested group. These operations might add, replace, or remove an attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
UpdateGroupRequest.Builder operations(Consumer<AttributeOperation.Builder>... operations)
A list of
This is a convenience method that creates an instance of theAttributeOperationobjects to apply to the requested group. These operations might add, replace, or remove an attribute.AttributeOperation.Builderavoiding the need to create one manually viaAttributeOperation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#operations(List.) - Parameters:
operations- a consumer that will call methods onAttributeOperation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#operations(java.util.Collection)
-
overrideConfiguration
UpdateGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-