Interface ListUserPoolClientsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CognitoIdentityProviderResponse.Builder,CopyableBuilder<ListUserPoolClientsResponse.Builder,ListUserPoolClientsResponse>,SdkBuilder<ListUserPoolClientsResponse.Builder,ListUserPoolClientsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListUserPoolClientsResponse
public static interface ListUserPoolClientsResponse.Builder extends CognitoIdentityProviderResponse.Builder, SdkPojo, CopyableBuilder<ListUserPoolClientsResponse.Builder,ListUserPoolClientsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListUserPoolClientsResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.ListUserPoolClientsResponse.BuilderuserPoolClients(Collection<UserPoolClientDescription> userPoolClients)The user pool clients in the response that lists user pool clients.ListUserPoolClientsResponse.BuilderuserPoolClients(Consumer<UserPoolClientDescription.Builder>... userPoolClients)The user pool clients in the response that lists user pool clients.ListUserPoolClientsResponse.BuilderuserPoolClients(UserPoolClientDescription... userPoolClients)The user pool clients in the response that lists user pool clients.-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
userPoolClients
ListUserPoolClientsResponse.Builder userPoolClients(Collection<UserPoolClientDescription> userPoolClients)
The user pool clients in the response that lists user pool clients.
- Parameters:
userPoolClients- The user pool clients in the response that lists user pool clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userPoolClients
ListUserPoolClientsResponse.Builder userPoolClients(UserPoolClientDescription... userPoolClients)
The user pool clients in the response that lists user pool clients.
- Parameters:
userPoolClients- The user pool clients in the response that lists user pool clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userPoolClients
ListUserPoolClientsResponse.Builder userPoolClients(Consumer<UserPoolClientDescription.Builder>... userPoolClients)
The user pool clients in the response that lists user pool clients.
This is a convenience method that creates an instance of theUserPoolClientDescription.Builderavoiding the need to create one manually viaUserPoolClientDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#userPoolClients(List.) - Parameters:
userPoolClients- a consumer that will call methods onUserPoolClientDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#userPoolClients(java.util.Collection)
-
nextToken
ListUserPoolClientsResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-