software.amazon.s3tables.iceberg.S3TablesAwsClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3-tables-catalog-for-iceberg Show documentation
Show all versions of s3-tables-catalog-for-iceberg Show documentation
Amazon S3 Tables Catalog for Apache Iceberg.
package software.amazon.s3tables.iceberg;
import software.amazon.awssdk.services.s3tables.S3TablesClient;
import java.io.Serializable;
import java.util.Map;
public interface S3TablesAwsClientFactory extends Serializable {
/**
* create a Amazon S3 Tables client
*
* @return s3tables client
*/
S3TablesClient s3tables();
/**
* Initialize AWS client factory from catalog properties.
*
* @param properties catalog properties
*/
void initialize(Map properties);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy