com.volcengine.service.sts.ISTSService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.sts;
import com.volcengine.model.request.AssumeRoleRequest;
import com.volcengine.model.response.AssumeRoleResponse;
import com.volcengine.service.IBaseService;
/**
* The interface STS service.
*/
public interface ISTSService extends IBaseService {
/**
* Assume Role.
*
* @param assumeRoleRequest the assume role request
* @return the assume role response
* @throws Exception the exception
*/
AssumeRoleResponse assumeRole(AssumeRoleRequest assumeRoleRequest) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy