Class QueueSettings
Inheritance
System.Object
QueueSettings
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.RabbitMQ.Outputs
Assembly: Pulumi.RabbitMQ.dll
Syntax
public sealed class QueueSettings
Fields
View SourceArguments
Additional key/value settings for the queue.
All values will be sent to RabbitMQ as a string. If you require non-string
values, use arguments_json.
Declaration
public readonly ImmutableDictionary<string, object> Arguments
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.Object> |
ArgumentsJson
A nested JSON string which contains additional settings for the queue. This is useful for when the arguments contain non-string values.
Declaration
public readonly string ArgumentsJson
Field Value
| Type | Description |
|---|---|
| System.String |
AutoDelete
Whether the queue will self-delete when all consumers have unsubscribed.
Declaration
public readonly bool? AutoDelete
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Durable
Whether the queue survives server restarts.
Defaults to false.
Declaration
public readonly bool? Durable
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |