com.aliyun.rds20140815.models.DeleteSlotResponseBody 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 DeleteSlotResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 2875D608-A228-53D7-B8C9-35F13EDCF36D
*/
@NameInMap("RequestId")
public String requestId;
/**
* The name of the replication slot.
*
* example:
* slot_test01
*/
@NameInMap("SlotName")
public String slotName;
public static DeleteSlotResponseBody build(java.util.Map map) throws Exception {
DeleteSlotResponseBody self = new DeleteSlotResponseBody();
return TeaModel.build(map, self);
}
public DeleteSlotResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteSlotResponseBody setSlotName(String slotName) {
this.slotName = slotName;
return this;
}
public String getSlotName() {
return this.slotName;
}
}