Interface GetDeploymentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetDeploymentsResponse.Builder,GetDeploymentsResponse>,SagemakerEdgeResponse.Builder,SdkBuilder<GetDeploymentsResponse.Builder,GetDeploymentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDeploymentsResponse
public static interface GetDeploymentsResponse.Builder extends SagemakerEdgeResponse.Builder, SdkPojo, CopyableBuilder<GetDeploymentsResponse.Builder,GetDeploymentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDeploymentsResponse.Builderdeployments(Collection<EdgeDeployment> deployments)Returns a list of the configurations of the active deployments on the device.GetDeploymentsResponse.Builderdeployments(Consumer<EdgeDeployment.Builder>... deployments)Returns a list of the configurations of the active deployments on the device.GetDeploymentsResponse.Builderdeployments(EdgeDeployment... deployments)Returns a list of the configurations of the active deployments on the device.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemakeredge.model.SagemakerEdgeResponse.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
-
deployments
GetDeploymentsResponse.Builder deployments(Collection<EdgeDeployment> deployments)
Returns a list of the configurations of the active deployments on the device.
- Parameters:
deployments- Returns a list of the configurations of the active deployments on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deployments
GetDeploymentsResponse.Builder deployments(EdgeDeployment... deployments)
Returns a list of the configurations of the active deployments on the device.
- Parameters:
deployments- Returns a list of the configurations of the active deployments on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deployments
GetDeploymentsResponse.Builder deployments(Consumer<EdgeDeployment.Builder>... deployments)
Returns a list of the configurations of the active deployments on the device.
This is a convenience method that creates an instance of theEdgeDeployment.Builderavoiding the need to create one manually viaEdgeDeployment.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#deployments(List.) - Parameters:
deployments- a consumer that will call methods onEdgeDeployment.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#deployments(java.util.Collection)
-
-