com.aliyun.eventbridge.models.QueryEventByEventIdRequest 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.*;
public class QueryEventByEventIdRequest extends TeaModel {
@NameInMap("EventBusName")
@Validation(required = true)
public String eventBusName;
@NameInMap("EventSource")
public String eventSource;
@NameInMap("EventId")
@Validation(required = true)
public String eventId;
public static QueryEventByEventIdRequest build(java.util.Map map) {
QueryEventByEventIdRequest self = new QueryEventByEventIdRequest();
return TeaModel.build(map, self);
}
public QueryEventByEventIdRequest setEventBusName(String eventBusName) {
this.eventBusName = eventBusName;
return this;
}
public String getEventBusName() {
return this.eventBusName;
}
public QueryEventByEventIdRequest setEventSource(String eventSource) {
this.eventSource = eventSource;
return this;
}
public String getEventSource() {
return this.eventSource;
}
public QueryEventByEventIdRequest setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
}