com.aliyun.eventbridge.models.CreateEventBusResponse 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 response of create EventBus
*/
public class CreateEventBusResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("ResourceOwnerAccountId")
@Validation(required = true)
public String resourceOwnerAccountId;
@NameInMap("EventBusARN")
public String eventBusARN;
public static CreateEventBusResponse build(java.util.Map map) {
CreateEventBusResponse self = new CreateEventBusResponse();
return TeaModel.build(map, self);
}
public CreateEventBusResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateEventBusResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
this.resourceOwnerAccountId = resourceOwnerAccountId;
return this;
}
public String getResourceOwnerAccountId() {
return this.resourceOwnerAccountId;
}
public CreateEventBusResponse setEventBusARN(String eventBusARN) {
this.eventBusARN = eventBusARN;
return this;
}
public String getEventBusARN() {
return this.eventBusARN;
}
}