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

com.aliyun.eventbridge.models.DeadLetterQueue 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 DeadLetterQueue
 */
public class DeadLetterQueue extends TeaModel {
    @NameInMap("Arn")
    public String arn;

    public static DeadLetterQueue build(java.util.Map map) {
        DeadLetterQueue self = new DeadLetterQueue();
        return TeaModel.build(map, self);
    }

    public DeadLetterQueue setArn(String arn) {
        this.arn = arn;
        return this;
    }
    public String getArn() {
        return this.arn;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy