com.aliyun.datahub.client.model.SinkConfig Maven / Gradle / Ivy
The newest version!
package com.aliyun.datahub.client.model;
public abstract class SinkConfig extends ConnectorConfig {
public enum AuthMode {
/**
* AK mode: you should input accessId and accessKey
*/
AK,
/**
* Service will get a temporary key to visit other services.
*/
STS
}
}