Interface GetUnfilteredPartitionMetadataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetUnfilteredPartitionMetadataResponse.Builder,GetUnfilteredPartitionMetadataResponse>,GlueResponse.Builder,SdkBuilder<GetUnfilteredPartitionMetadataResponse.Builder,GetUnfilteredPartitionMetadataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetUnfilteredPartitionMetadataResponse
public static interface GetUnfilteredPartitionMetadataResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetUnfilteredPartitionMetadataResponse.Builder,GetUnfilteredPartitionMetadataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetUnfilteredPartitionMetadataResponse.BuilderauthorizedColumns(String... authorizedColumns)A list of column names that the user has been granted access to.GetUnfilteredPartitionMetadataResponse.BuilderauthorizedColumns(Collection<String> authorizedColumns)A list of column names that the user has been granted access to.GetUnfilteredPartitionMetadataResponse.BuilderisRegisteredWithLakeFormation(Boolean isRegisteredWithLakeFormation)A Boolean value that indicates whether the partition location is registered with Lake Formation.default GetUnfilteredPartitionMetadataResponse.Builderpartition(Consumer<Partition.Builder> partition)A Partition object containing the partition metadata.GetUnfilteredPartitionMetadataResponse.Builderpartition(Partition partition)A Partition object containing the partition metadata.-
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
-
partition
GetUnfilteredPartitionMetadataResponse.Builder partition(Partition partition)
A Partition object containing the partition metadata.
- Parameters:
partition- A Partition object containing the partition metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partition
default GetUnfilteredPartitionMetadataResponse.Builder partition(Consumer<Partition.Builder> partition)
A Partition object containing the partition metadata.
This is a convenience method that creates an instance of thePartition.Builderavoiding the need to create one manually viaPartition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topartition(Partition).- Parameters:
partition- a consumer that will call methods onPartition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
partition(Partition)
-
authorizedColumns
GetUnfilteredPartitionMetadataResponse.Builder authorizedColumns(Collection<String> authorizedColumns)
A list of column names that the user has been granted access to.
- Parameters:
authorizedColumns- A list of column names that the user has been granted access to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizedColumns
GetUnfilteredPartitionMetadataResponse.Builder authorizedColumns(String... authorizedColumns)
A list of column names that the user has been granted access to.
- Parameters:
authorizedColumns- A list of column names that the user has been granted access to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isRegisteredWithLakeFormation
GetUnfilteredPartitionMetadataResponse.Builder isRegisteredWithLakeFormation(Boolean isRegisteredWithLakeFormation)
A Boolean value that indicates whether the partition location is registered with Lake Formation.
- Parameters:
isRegisteredWithLakeFormation- A Boolean value that indicates whether the partition location is registered with Lake Formation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-