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

com.aliyun.rds20140815.models.DeleteSlotResponseBody 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy