com.aliyun.eventbridge.models.DeleteEventBusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-client Show documentation
Show all versions of eventbridge-client Show documentation
Alibaba Cloud eventbridge SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
/**
* The request of delete the EventBus
*/
public class DeleteEventBusRequest extends TeaModel {
@NameInMap("EventBusName")
@Validation(required = true)
public String eventBusName;
public static DeleteEventBusRequest build(java.util.Map map) {
DeleteEventBusRequest self = new DeleteEventBusRequest();
return TeaModel.build(map, self);
}
public DeleteEventBusRequest setEventBusName(String eventBusName) {
this.eventBusName = eventBusName;
return this;
}
public String getEventBusName() {
return this.eventBusName;
}
}