Interface ListEndpointConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListEndpointConfigsResponse.Builder,ListEndpointConfigsResponse>,SageMakerResponse.Builder,SdkBuilder<ListEndpointConfigsResponse.Builder,ListEndpointConfigsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEndpointConfigsResponse
public static interface ListEndpointConfigsResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListEndpointConfigsResponse.Builder,ListEndpointConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEndpointConfigsResponse.BuilderendpointConfigs(Collection<EndpointConfigSummary> endpointConfigs)An array of endpoint configurations.ListEndpointConfigsResponse.BuilderendpointConfigs(Consumer<EndpointConfigSummary.Builder>... endpointConfigs)An array of endpoint configurations.ListEndpointConfigsResponse.BuilderendpointConfigs(EndpointConfigSummary... endpointConfigs)An array of endpoint configurations.ListEndpointConfigsResponse.BuildernextToken(String nextToken)If the response is truncated, SageMaker returns this token.-
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
-
endpointConfigs
ListEndpointConfigsResponse.Builder endpointConfigs(Collection<EndpointConfigSummary> endpointConfigs)
An array of endpoint configurations.
- Parameters:
endpointConfigs- An array of endpoint configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointConfigs
ListEndpointConfigsResponse.Builder endpointConfigs(EndpointConfigSummary... endpointConfigs)
An array of endpoint configurations.
- Parameters:
endpointConfigs- An array of endpoint configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointConfigs
ListEndpointConfigsResponse.Builder endpointConfigs(Consumer<EndpointConfigSummary.Builder>... endpointConfigs)
An array of endpoint configurations.
This is a convenience method that creates an instance of theEndpointConfigSummary.Builderavoiding the need to create one manually viaEndpointConfigSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#endpointConfigs(List.) - Parameters:
endpointConfigs- a consumer that will call methods onEndpointConfigSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#endpointConfigs(java.util.Collection)
-
nextToken
ListEndpointConfigsResponse.Builder nextToken(String nextToken)
If the response is truncated, SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request
- Parameters:
nextToken- If the response is truncated, SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-