com.aliyun.eventbridge.models.DeadLetterQueue 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 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;
}
}