Package org.apache.iceberg.aliyun
Class AliyunProperties
- java.lang.Object
-
- org.apache.iceberg.aliyun.AliyunProperties
-
- All Implemented Interfaces:
java.io.Serializable
public class AliyunProperties extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CLIENT_ACCESS_KEY_ID
Aliyun uses an AccessKey pair, which includes an AccessKey ID and an AccessKey secret to implement symmetric encryption and verify the identity of a requester.static java.lang.String
CLIENT_ACCESS_KEY_SECRET
Aliyun uses an AccessKey pair, which includes an AccessKey ID and an AccessKey secret to implement symmetric encryption and verify the identity of a requester.static java.lang.String
CLIENT_FACTORY
The implementation class ofAliyunClientFactory
to customize Aliyun client configurations.static java.lang.String
OSS_ENDPOINT
The domain name used to access OSS.static java.lang.String
OSS_STAGING_DIRECTORY
Location to put staging files for uploading to OSS, defaults to the directory value of java.io.tmpdir.
-
Constructor Summary
Constructors Constructor Description AliyunProperties()
AliyunProperties(java.util.Map<java.lang.String,java.lang.String> properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
accessKeyId()
java.lang.String
accessKeySecret()
java.lang.String
ossEndpoint()
java.lang.String
ossStagingDirectory()
-
-
-
Field Detail
-
OSS_ENDPOINT
public static final java.lang.String OSS_ENDPOINT
The domain name used to access OSS. OSS uses HTTP Restful APIs to provide services. Different regions are accessed by using different endpoints. For the same region, access over the internal network or over the Internet also uses different endpoints. For more information, see: https://www.alibabacloud.com/help/doc-detail/31837.htm- See Also:
- Constant Field Values
-
CLIENT_ACCESS_KEY_ID
public static final java.lang.String CLIENT_ACCESS_KEY_ID
Aliyun uses an AccessKey pair, which includes an AccessKey ID and an AccessKey secret to implement symmetric encryption and verify the identity of a requester. The AccessKey ID is used to identify a user.For more information about how to obtain an AccessKey pair, see: https://www.alibabacloud.com/help/doc-detail/53045.htm
- See Also:
- Constant Field Values
-
CLIENT_ACCESS_KEY_SECRET
public static final java.lang.String CLIENT_ACCESS_KEY_SECRET
Aliyun uses an AccessKey pair, which includes an AccessKey ID and an AccessKey secret to implement symmetric encryption and verify the identity of a requester. The AccessKey secret is used to encrypt and verify the signature string.For more information about how to obtain an AccessKey pair, see: https://www.alibabacloud.com/help/doc-detail/53045.htm
- See Also:
- Constant Field Values
-
CLIENT_FACTORY
public static final java.lang.String CLIENT_FACTORY
The implementation class ofAliyunClientFactory
to customize Aliyun client configurations. If set, all Aliyun clients will be initialized by the specified factory. If not set,AliyunClientFactories.defaultFactory()
is used as default factory.- See Also:
- Constant Field Values
-
OSS_STAGING_DIRECTORY
public static final java.lang.String OSS_STAGING_DIRECTORY
Location to put staging files for uploading to OSS, defaults to the directory value of java.io.tmpdir.- See Also:
- Constant Field Values
-
-