com.qcloud.cos.model.SSECustomerKeyProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.model;
/**
* Implemented by classes that support the option of using SSE Customer key.
*/
public interface SSECustomerKeyProvider {
/**
* Returns the optional customer-provided server-side encryption key to use
* to encrypt the uploaded object.
*
* @return The optional customer-provided server-side encryption key to use
* to encrypt the uploaded object.
*/
public SSECustomerKey getSSECustomerKey();
}