Interface ListEnvironmentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>,DataZoneResponse.Builder,SdkBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEnvironmentsResponse
public static interface ListEnvironmentsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEnvironmentsResponse.Builderitems(Collection<EnvironmentSummary> items)The results of theListEnvironmentsaction.ListEnvironmentsResponse.Builderitems(Consumer<EnvironmentSummary.Builder>... items)The results of theListEnvironmentsaction.ListEnvironmentsResponse.Builderitems(EnvironmentSummary... items)The results of theListEnvironmentsaction.ListEnvironmentsResponse.BuildernextToken(String nextToken)When the number of environments is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of environments, the response includes a pagination token namedNextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
items
ListEnvironmentsResponse.Builder items(Collection<EnvironmentSummary> items)
The results of the
ListEnvironmentsaction.- Parameters:
items- The results of theListEnvironmentsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListEnvironmentsResponse.Builder items(EnvironmentSummary... items)
The results of the
ListEnvironmentsaction.- Parameters:
items- The results of theListEnvironmentsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListEnvironmentsResponse.Builder items(Consumer<EnvironmentSummary.Builder>... items)
The results of the
This is a convenience method that creates an instance of theListEnvironmentsaction.EnvironmentSummary.Builderavoiding the need to create one manually viaEnvironmentSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onEnvironmentSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListEnvironmentsResponse.Builder nextToken(String nextToken)
When the number of environments is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of environments, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListEnvironmentsto list the next set of environments.- Parameters:
nextToken- When the number of environments is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of environments, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListEnvironmentsto list the next set of environments.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-