Package org.apache.iceberg.aws
Interface AwsClientFactory
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- AssumeRoleAwsClientFactory,- LakeFormationAwsClientFactory
Interface to customize AWS clients used by Iceberg. A custom factory must have a no-arg
 constructor, and use 
initialize(Map) to initialize the factory.- 
Method SummaryModifier and TypeMethodDescriptionsoftware.amazon.awssdk.services.dynamodb.DynamoDbClientdynamo()Create a Amazon DynamoDB clientsoftware.amazon.awssdk.services.glue.GlueClientglue()create a AWS Glue clientvoidinitialize(Map<String, String> properties) Initialize AWS client factory from catalog properties.software.amazon.awssdk.services.kms.KmsClientkms()Create a AWS KMS clientsoftware.amazon.awssdk.services.s3.S3Clients3()create a Amazon S3 clientsoftware.amazon.awssdk.services.s3.S3AsyncClients3Async()create a Amazon S3 async client
- 
Method Details- 
s3software.amazon.awssdk.services.s3.S3Client s3()create a Amazon S3 client- Returns:
- s3 client
 
- 
s3Asyncsoftware.amazon.awssdk.services.s3.S3AsyncClient s3Async()create a Amazon S3 async client- Returns:
- s3 async client
 
- 
gluesoftware.amazon.awssdk.services.glue.GlueClient glue()create a AWS Glue client- Returns:
- glue client
 
- 
kmssoftware.amazon.awssdk.services.kms.KmsClient kms()Create a AWS KMS client- Returns:
- kms client
 
- 
dynamosoftware.amazon.awssdk.services.dynamodb.DynamoDbClient dynamo()Create a Amazon DynamoDB client- Returns:
- dynamoDB client
 
- 
initializeInitialize AWS client factory from catalog properties.- Parameters:
- properties- catalog properties
 
 
-