Interface ListPipelineParametersForExecutionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPipelineParametersForExecutionResponse.Builder,ListPipelineParametersForExecutionResponse>,SageMakerResponse.Builder,SdkBuilder<ListPipelineParametersForExecutionResponse.Builder,ListPipelineParametersForExecutionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipelineParametersForExecutionResponse
public static interface ListPipelineParametersForExecutionResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListPipelineParametersForExecutionResponse.Builder,ListPipelineParametersForExecutionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelineParametersForExecutionResponse.BuildernextToken(String nextToken)If the result of the previousListPipelineParametersForExecutionrequest was truncated, the response includes aNextToken.ListPipelineParametersForExecutionResponse.BuilderpipelineParameters(Collection<Parameter> pipelineParameters)Contains a list of pipeline parameters.ListPipelineParametersForExecutionResponse.BuilderpipelineParameters(Consumer<Parameter.Builder>... pipelineParameters)Contains a list of pipeline parameters.ListPipelineParametersForExecutionResponse.BuilderpipelineParameters(Parameter... pipelineParameters)Contains a list of pipeline parameters.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
pipelineParameters
ListPipelineParametersForExecutionResponse.Builder pipelineParameters(Collection<Parameter> pipelineParameters)
Contains a list of pipeline parameters. This list can be empty.
- Parameters:
pipelineParameters- Contains a list of pipeline parameters. This list can be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineParameters
ListPipelineParametersForExecutionResponse.Builder pipelineParameters(Parameter... pipelineParameters)
Contains a list of pipeline parameters. This list can be empty.
- Parameters:
pipelineParameters- Contains a list of pipeline parameters. This list can be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineParameters
ListPipelineParametersForExecutionResponse.Builder pipelineParameters(Consumer<Parameter.Builder>... pipelineParameters)
Contains a list of pipeline parameters. This list can be empty.
This is a convenience method that creates an instance of theParameter.Builderavoiding the need to create one manually viaParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelineParameters(List.) - Parameters:
pipelineParameters- a consumer that will call methods onParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineParameters(java.util.Collection)
-
nextToken
ListPipelineParametersForExecutionResponse.Builder nextToken(String nextToken)
If the result of the previous
ListPipelineParametersForExecutionrequest was truncated, the response includes aNextToken. To retrieve the next set of parameters, use the token in the next request.- Parameters:
nextToken- If the result of the previousListPipelineParametersForExecutionrequest was truncated, the response includes aNextToken. To retrieve the next set of parameters, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-