Interface ListUserProficienciesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,ConnectResponse.Builder
,CopyableBuilder<ListUserProficienciesResponse.Builder,ListUserProficienciesResponse>
,SdkBuilder<ListUserProficienciesResponse.Builder,ListUserProficienciesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListUserProficienciesResponse
public static interface ListUserProficienciesResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<ListUserProficienciesResponse.Builder,ListUserProficienciesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListUserProficienciesResponse.Builder
lastModifiedRegion(String lastModifiedRegion)
The region in which a user's proficiencies were last modified.ListUserProficienciesResponse.Builder
lastModifiedTime(Instant lastModifiedTime)
The last time that the user's proficiencies are were modified.ListUserProficienciesResponse.Builder
nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.ListUserProficienciesResponse.Builder
userProficiencyList(Collection<UserProficiency> userProficiencyList)
Information about the user proficiencies.ListUserProficienciesResponse.Builder
userProficiencyList(Consumer<UserProficiency.Builder>... userProficiencyList)
Information about the user proficiencies.ListUserProficienciesResponse.Builder
userProficiencyList(UserProficiency... userProficiencyList)
Information about the user proficiencies.-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListUserProficienciesResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken
- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencyList
ListUserProficienciesResponse.Builder userProficiencyList(Collection<UserProficiency> userProficiencyList)
Information about the user proficiencies.
- Parameters:
userProficiencyList
- Information about the user proficiencies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencyList
ListUserProficienciesResponse.Builder userProficiencyList(UserProficiency... userProficiencyList)
Information about the user proficiencies.
- Parameters:
userProficiencyList
- Information about the user proficiencies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencyList
ListUserProficienciesResponse.Builder userProficiencyList(Consumer<UserProficiency.Builder>... userProficiencyList)
Information about the user proficiencies.
This is a convenience method that creates an instance of theUserProficiency.Builder
avoiding the need to create one manually viaUserProficiency.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#userProficiencyList(List
.) - Parameters:
userProficiencyList
- a consumer that will call methods onUserProficiency.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#userProficiencyList(java.util.Collection
)
-
lastModifiedTime
ListUserProficienciesResponse.Builder lastModifiedTime(Instant lastModifiedTime)
The last time that the user's proficiencies are were modified.
- Parameters:
lastModifiedTime
- The last time that the user's proficiencies are were modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedRegion
ListUserProficienciesResponse.Builder lastModifiedRegion(String lastModifiedRegion)
The region in which a user's proficiencies were last modified.
- Parameters:
lastModifiedRegion
- The region in which a user's proficiencies were last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-