
com.aliyun.ims20190815.models.CreateAccessKeyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ims20190815 Show documentation
Show all versions of ims20190815 Show documentation
Alibaba Cloud Ims (20190815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ims20190815.models;
import com.aliyun.tea.*;
public class CreateAccessKeyRequest extends TeaModel {
/**
* The logon name of the RAM user.
* If this parameter is empty, an AccessKey pair is created for the current user.
*
* example:
*
*/
@NameInMap("UserPrincipalName")
public String userPrincipalName;
public static CreateAccessKeyRequest build(java.util.Map map) throws Exception {
CreateAccessKeyRequest self = new CreateAccessKeyRequest();
return TeaModel.build(map, self);
}
public CreateAccessKeyRequest setUserPrincipalName(String userPrincipalName) {
this.userPrincipalName = userPrincipalName;
return this;
}
public String getUserPrincipalName() {
return this.userPrincipalName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy