All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.rds20140815.models.MigrateConnectionToOtherZoneResponseBody Maven / Gradle / Ivy

There is a newer version: 6.3.2
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy