Interface ListAudienceModelsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CleanRoomsMlResponse.Builder,CopyableBuilder<ListAudienceModelsResponse.Builder,ListAudienceModelsResponse>,SdkBuilder<ListAudienceModelsResponse.Builder,ListAudienceModelsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAudienceModelsResponse
public static interface ListAudienceModelsResponse.Builder extends CleanRoomsMlResponse.Builder, SdkPojo, CopyableBuilder<ListAudienceModelsResponse.Builder,ListAudienceModelsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAudienceModelsResponse.BuilderaudienceModels(Collection<AudienceModelSummary> audienceModels)The audience models that match the request.ListAudienceModelsResponse.BuilderaudienceModels(Consumer<AudienceModelSummary.Builder>... audienceModels)The audience models that match the request.ListAudienceModelsResponse.BuilderaudienceModels(AudienceModelSummary... audienceModels)The audience models that match the request.ListAudienceModelsResponse.BuildernextToken(String nextToken)The token value retrieved from a previous call to access the next page of results.-
Methods inherited from interface software.amazon.awssdk.services.cleanroomsml.model.CleanRoomsMlResponse.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
-
nextToken
ListAudienceModelsResponse.Builder nextToken(String nextToken)
The token value retrieved from a previous call to access the next page of results.
- Parameters:
nextToken- The token value retrieved from a previous call to access the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
audienceModels
ListAudienceModelsResponse.Builder audienceModels(Collection<AudienceModelSummary> audienceModels)
The audience models that match the request.
- Parameters:
audienceModels- The audience models that match the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
audienceModels
ListAudienceModelsResponse.Builder audienceModels(AudienceModelSummary... audienceModels)
The audience models that match the request.
- Parameters:
audienceModels- The audience models that match the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
audienceModels
ListAudienceModelsResponse.Builder audienceModels(Consumer<AudienceModelSummary.Builder>... audienceModels)
The audience models that match the request.
This is a convenience method that creates an instance of theAudienceModelSummary.Builderavoiding the need to create one manually viaAudienceModelSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#audienceModels(List.) - Parameters:
audienceModels- a consumer that will call methods onAudienceModelSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#audienceModels(java.util.Collection)
-
-