Interface JourneysResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JourneysResponse.Builder,JourneysResponse>,SdkBuilder<JourneysResponse.Builder,JourneysResponse>,SdkPojo
- Enclosing class:
- JourneysResponse
public static interface JourneysResponse.Builder extends SdkPojo, CopyableBuilder<JourneysResponse.Builder,JourneysResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JourneysResponse.Builderitem(Collection<JourneyResponse> item)An array of responses, one for each journey that's associated with the application.JourneysResponse.Builderitem(Consumer<JourneyResponse.Builder>... item)An array of responses, one for each journey that's associated with the application.JourneysResponse.Builderitem(JourneyResponse... item)An array of responses, one for each journey that's associated with the application.JourneysResponse.BuildernextToken(String nextToken)The string to use in a subsequent request to get the next page of results in a paginated response.-
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
-
-
-
-
Method Detail
-
item
JourneysResponse.Builder item(Collection<JourneyResponse> item)
An array of responses, one for each journey that's associated with the application.
- Parameters:
item- An array of responses, one for each journey that's associated with the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
item
JourneysResponse.Builder item(JourneyResponse... item)
An array of responses, one for each journey that's associated with the application.
- Parameters:
item- An array of responses, one for each journey that's associated with the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
item
JourneysResponse.Builder item(Consumer<JourneyResponse.Builder>... item)
An array of responses, one for each journey that's associated with the application.
This is a convenience method that creates an instance of theJourneyResponse.Builderavoiding the need to create one manually viaJourneyResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#item(List.) - Parameters:
item- a consumer that will call methods onJourneyResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#item(java.util.Collection)
-
nextToken
JourneysResponse.Builder nextToken(String nextToken)
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
- Parameters:
nextToken- The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-