Show / Hide Table of Contents

Class ExchangeSettingsArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ExchangeSettingsArgs
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 ExchangeSettingsArgs : ResourceArgs

Constructors

View Source

ExchangeSettingsArgs()

Declaration
public ExchangeSettingsArgs()

Properties

View Source

Arguments

Additional key/value settings for the exchange.

Declaration
public InputMap<object> Arguments { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

AutoDelete

Whether the exchange will self-delete when all queues have finished using it.

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

Durable

Whether the exchange survives server restarts. Defaults to false.

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

Type

The type of exchange.

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