com.aliyun.openplatform.models.AuthorizeFileUploadResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openplatform Show documentation
Show all versions of openplatform Show documentation
Aliyun openplatform for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.openplatform.models;
import com.aliyun.tea.*;
public class AuthorizeFileUploadResponse extends TeaModel {
@NameInMap("AccessKeyId")
@Validation(required = true)
public String accessKeyId;
@NameInMap("Bucket")
@Validation(required = true)
public String bucket;
@NameInMap("EncodedPolicy")
@Validation(required = true)
public String encodedPolicy;
@NameInMap("Endpoint")
@Validation(required = true)
public String endpoint;
@NameInMap("ObjectKey")
@Validation(required = true)
public String objectKey;
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("Signature")
@Validation(required = true)
public String signature;
@NameInMap("UseAccelerate")
@Validation(required = true)
public Boolean useAccelerate;
public static AuthorizeFileUploadResponse build(java.util.Map map) throws Exception {
AuthorizeFileUploadResponse self = new AuthorizeFileUploadResponse();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy