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

com.aliyun.eventbridge.models.QueryEventByEventIdRequest Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy