Show / Hide Table of Contents

Class QueueSettingsGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
QueueSettingsGetArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.RabbitMQ.dll
Syntax
public sealed class QueueSettingsGetArgs : ResourceArgs

Constructors

View Source

QueueSettingsGetArgs()

Declaration
public QueueSettingsGetArgs()

Properties

View Source

Arguments

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 InputMap<object> Arguments { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

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 Input<string> ArgumentsJson { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AutoDelete

Whether the queue will self-delete when all consumers have unsubscribed.

Declaration
public Input<bool> AutoDelete { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Durable

Whether the queue survives server restarts. Defaults to false.

Declaration
public Input<bool> Durable { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.