Interface GetMappingResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetMappingResponse.Builder,GetMappingResponse>,GlueResponse.Builder,SdkBuilder<GetMappingResponse.Builder,GetMappingResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetMappingResponse
public static interface GetMappingResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetMappingResponse.Builder,GetMappingResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetMappingResponse.Buildermapping(Collection<MappingEntry> mapping)A list of mappings to the specified targets.GetMappingResponse.Buildermapping(Consumer<MappingEntry.Builder>... mapping)A list of mappings to the specified targets.GetMappingResponse.Buildermapping(MappingEntry... mapping)A list of mappings to the specified targets.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
mapping
GetMappingResponse.Builder mapping(Collection<MappingEntry> mapping)
A list of mappings to the specified targets.
- Parameters:
mapping- A list of mappings to the specified targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapping
GetMappingResponse.Builder mapping(MappingEntry... mapping)
A list of mappings to the specified targets.
- Parameters:
mapping- A list of mappings to the specified targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapping
GetMappingResponse.Builder mapping(Consumer<MappingEntry.Builder>... mapping)
A list of mappings to the specified targets.
This is a convenience method that creates an instance of theMappingEntry.Builderavoiding the need to create one manually viaMappingEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mapping(List.) - Parameters:
mapping- a consumer that will call methods onMappingEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mapping(java.util.Collection)
-
-