com.aliyun.eventbridge.models.ConcurrentConfig 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 detail of ConcurrentConfig
*/
public class ConcurrentConfig extends TeaModel {
@NameInMap("Concurrency")
public Integer concurrency;
public static ConcurrentConfig build(java.util.Map map) {
ConcurrentConfig self = new ConcurrentConfig();
return TeaModel.build(map, self);
}
public ConcurrentConfig setConcurrency(Integer concurrency) {
this.concurrency = concurrency;
return this;
}
public Integer getConcurrency() {
return this.concurrency;
}
}