Interface ListProfilesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProfilesResponse.Builder,ListProfilesResponse>,Route53ProfilesResponse.Builder,SdkBuilder<ListProfilesResponse.Builder,ListProfilesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProfilesResponse
public static interface ListProfilesResponse.Builder extends Route53ProfilesResponse.Builder, SdkPojo, CopyableBuilder<ListProfilesResponse.Builder,ListProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProfilesResponse.BuildernextToken(String nextToken)If more thanMaxResultsresource associations match the specified criteria, you can submit anotherListProfilesrequest to get the next group of results.ListProfilesResponse.BuilderprofileSummaries(Collection<ProfileSummary> profileSummaries)Summary information about the Profiles.ListProfilesResponse.BuilderprofileSummaries(Consumer<ProfileSummary.Builder>... profileSummaries)Summary information about the Profiles.ListProfilesResponse.BuilderprofileSummaries(ProfileSummary... profileSummaries)Summary information about the Profiles.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53profiles.model.Route53ProfilesResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
nextToken
ListProfilesResponse.Builder nextToken(String nextToken)
If more than
MaxResultsresource associations match the specified criteria, you can submit anotherListProfilesrequest to get the next group of results. In the next request, specify the value ofNextTokenfrom the previous response.- Parameters:
nextToken- If more thanMaxResultsresource associations match the specified criteria, you can submit anotherListProfilesrequest to get the next group of results. In the next request, specify the value ofNextTokenfrom the previous response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileSummaries
ListProfilesResponse.Builder profileSummaries(Collection<ProfileSummary> profileSummaries)
Summary information about the Profiles.
- Parameters:
profileSummaries- Summary information about the Profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileSummaries
ListProfilesResponse.Builder profileSummaries(ProfileSummary... profileSummaries)
Summary information about the Profiles.
- Parameters:
profileSummaries- Summary information about the Profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileSummaries
ListProfilesResponse.Builder profileSummaries(Consumer<ProfileSummary.Builder>... profileSummaries)
Summary information about the Profiles.
This is a convenience method that creates an instance of theProfileSummary.Builderavoiding the need to create one manually viaProfileSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#profileSummaries(List.) - Parameters:
profileSummaries- a consumer that will call methods onProfileSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#profileSummaries(java.util.Collection)
-
-