com.aliyun.eventbridge.models.EventBusEntry 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
/**
* The detail of EventBuses
*/
public class EventBusEntry extends TeaModel {
@NameInMap("EventBusName")
@Validation(required = true)
public String eventBusName;
@NameInMap("EventBusARN")
@Validation(required = true)
public String eventBusARN;
@NameInMap("Description")
@Validation(required = true)
public String description;
@NameInMap("CreateTimestamp")
@Validation(required = true)
public Long createTimestamp;
@NameInMap("Tags")
public java.util.Map tags;
public static EventBusEntry build(java.util.Map map) {
EventBusEntry self = new EventBusEntry();
return TeaModel.build(map, self);
}
public EventBusEntry setEventBusName(String eventBusName) {
this.eventBusName = eventBusName;
return this;
}
public String getEventBusName() {
return this.eventBusName;
}
public EventBusEntry setEventBusARN(String eventBusARN) {
this.eventBusARN = eventBusARN;
return this;
}
public String getEventBusARN() {
return this.eventBusARN;
}
public EventBusEntry setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public EventBusEntry setCreateTimestamp(Long createTimestamp) {
this.createTimestamp = createTimestamp;
return this;
}
public Long getCreateTimestamp() {
return this.createTimestamp;
}
public EventBusEntry setTags(java.util.Map tags) {
this.tags = tags;
return this;
}
public java.util.Map getTags() {
return this.tags;
}
}