com.aliyun.rds20140815.models.MigrateConnectionToOtherZoneResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class MigrateConnectionToOtherZoneResponseBody extends TeaModel {
/**
* The error code.
*
* example:
* InvalidParam
*/
@NameInMap("Code")
public String code;
/**
* The error message.
*
* example:
* Invalid Parameter.
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*
* example:
* 65BDA532-28AF-4122-AA39-B382721EEE64
*/
@NameInMap("RequestId")
public String requestId;
public static MigrateConnectionToOtherZoneResponseBody build(java.util.Map map) throws Exception {
MigrateConnectionToOtherZoneResponseBody self = new MigrateConnectionToOtherZoneResponseBody();
return TeaModel.build(map, self);
}
public MigrateConnectionToOtherZoneResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public MigrateConnectionToOtherZoneResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public MigrateConnectionToOtherZoneResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}