Interface BatchDeleteConnectionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<BatchDeleteConnectionResponse.Builder,BatchDeleteConnectionResponse>
,GlueResponse.Builder
,SdkBuilder<BatchDeleteConnectionResponse.Builder,BatchDeleteConnectionResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- BatchDeleteConnectionResponse
public static interface BatchDeleteConnectionResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchDeleteConnectionResponse.Builder,BatchDeleteConnectionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteConnectionResponse.Builder
errors(Map<String,ErrorDetail> errors)
A map of the names of connections that were not successfully deleted to error details.BatchDeleteConnectionResponse.Builder
succeeded(String... succeeded)
A list of names of the connection definitions that were successfully deleted.BatchDeleteConnectionResponse.Builder
succeeded(Collection<String> succeeded)
A list of names of the connection definitions that were successfully deleted.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.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
-
succeeded
BatchDeleteConnectionResponse.Builder succeeded(Collection<String> succeeded)
A list of names of the connection definitions that were successfully deleted.
- Parameters:
succeeded
- A list of names of the connection definitions that were successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeeded
BatchDeleteConnectionResponse.Builder succeeded(String... succeeded)
A list of names of the connection definitions that were successfully deleted.
- Parameters:
succeeded
- A list of names of the connection definitions that were successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteConnectionResponse.Builder errors(Map<String,ErrorDetail> errors)
A map of the names of connections that were not successfully deleted to error details.
- Parameters:
errors
- A map of the names of connections that were not successfully deleted to error details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-