Interface SearchProfilesResponse.Builder
-
- All Superinterfaces:
AlexaForBusinessResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<SearchProfilesResponse.Builder,SearchProfilesResponse>,SdkBuilder<SearchProfilesResponse.Builder,SearchProfilesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchProfilesResponse
public static interface SearchProfilesResponse.Builder extends AlexaForBusinessResponse.Builder, SdkPojo, CopyableBuilder<SearchProfilesResponse.Builder,SearchProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchProfilesResponse.BuildernextToken(String nextToken)The token returned to indicate that there is more data available.SearchProfilesResponse.Builderprofiles(Collection<ProfileData> profiles)The profiles that meet the specified set of filter criteria, in sort order.SearchProfilesResponse.Builderprofiles(Consumer<ProfileData.Builder>... profiles)The profiles that meet the specified set of filter criteria, in sort order.SearchProfilesResponse.Builderprofiles(ProfileData... profiles)The profiles that meet the specified set of filter criteria, in sort order.SearchProfilesResponse.BuildertotalCount(Integer totalCount)The total number of room profiles returned.-
Methods inherited from interface software.amazon.awssdk.services.alexaforbusiness.model.AlexaForBusinessResponse.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
-
profiles
SearchProfilesResponse.Builder profiles(Collection<ProfileData> profiles)
The profiles that meet the specified set of filter criteria, in sort order.
- Parameters:
profiles- The profiles that meet the specified set of filter criteria, in sort order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
SearchProfilesResponse.Builder profiles(ProfileData... profiles)
The profiles that meet the specified set of filter criteria, in sort order.
- Parameters:
profiles- The profiles that meet the specified set of filter criteria, in sort order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
SearchProfilesResponse.Builder profiles(Consumer<ProfileData.Builder>... profiles)
The profiles that meet the specified set of filter criteria, in sort order.
This is a convenience method that creates an instance of theProfileData.Builderavoiding the need to create one manually viaProfileData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#profiles(List.) - Parameters:
profiles- a consumer that will call methods onProfileData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#profiles(java.util.Collection)
-
nextToken
SearchProfilesResponse.Builder nextToken(String nextToken)
The token returned to indicate that there is more data available.
- Parameters:
nextToken- The token returned to indicate that there is more data available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalCount
SearchProfilesResponse.Builder totalCount(Integer totalCount)
The total number of room profiles returned.
- Parameters:
totalCount- The total number of room profiles returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-