Interface ListEnvironmentOutputsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListEnvironmentOutputsResponse.Builder,ListEnvironmentOutputsResponse>,ProtonResponse.Builder,SdkBuilder<ListEnvironmentOutputsResponse.Builder,ListEnvironmentOutputsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEnvironmentOutputsResponse
public static interface ListEnvironmentOutputsResponse.Builder extends ProtonResponse.Builder, SdkPojo, CopyableBuilder<ListEnvironmentOutputsResponse.Builder,ListEnvironmentOutputsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEnvironmentOutputsResponse.BuildernextToken(String nextToken)A token that indicates the location of the next environment output in the array of environment outputs, after the current requested list of environment outputs.ListEnvironmentOutputsResponse.Builderoutputs(Collection<Output> outputs)An array of environment outputs with detail data.ListEnvironmentOutputsResponse.Builderoutputs(Consumer<Output.Builder>... outputs)An array of environment outputs with detail data.ListEnvironmentOutputsResponse.Builderoutputs(Output... outputs)An array of environment outputs with detail data.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.proton.model.ProtonResponse.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
ListEnvironmentOutputsResponse.Builder nextToken(String nextToken)
A token that indicates the location of the next environment output in the array of environment outputs, after the current requested list of environment outputs.
- Parameters:
nextToken- A token that indicates the location of the next environment output in the array of environment outputs, after the current requested list of environment outputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
ListEnvironmentOutputsResponse.Builder outputs(Collection<Output> outputs)
An array of environment outputs with detail data.
- Parameters:
outputs- An array of environment outputs with detail data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
ListEnvironmentOutputsResponse.Builder outputs(Output... outputs)
An array of environment outputs with detail data.
- Parameters:
outputs- An array of environment outputs with detail data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
ListEnvironmentOutputsResponse.Builder outputs(Consumer<Output.Builder>... outputs)
An array of environment outputs with detail data.
This is a convenience method that creates an instance of theOutput.Builderavoiding the need to create one manually viaOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#outputs(List.- Parameters:
outputs- a consumer that will call methods onOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outputs(java.util.Collection
-
-