com.kingsoft.services.auth.KWSCredentials Maven / Gradle / Ivy
package com.kingsoft.services.auth;
/**
* Provides access to the KWS credentials used for accessing KWS services: KWS
* access key ID and secret access key. These credentials are used to securely
* sign requests to KWS services.
*/
public interface KWSCredentials {
/**
* Returns the KWS access key ID for this credentials object.
*
* @return The KWS access key ID for this credentials object.
*/
public String getAccessKeyId();
/**
* Returns the KWS secret access key for this credentials object.
*
* @return The KWS secret access key for this credentials object.
*/
public String getSecretKey();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy