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