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

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

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy