Show / Hide Table of Contents

Class BindingArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BindingArgs
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
Assembly: Pulumi.RabbitMQ.dll
Syntax
public sealed class BindingArgs : ResourceArgs

Constructors

View Source

BindingArgs()

Declaration
public BindingArgs()

Properties

View Source

Arguments

Additional key/value arguments for the binding.

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

Destination

The destination queue or exchange.

Declaration
public Input<string> Destination { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DestinationType

The type of destination (queue or exchange).

Declaration
public Input<string> DestinationType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RoutingKey

A routing key for the binding.

Declaration
public Input<string> RoutingKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Source

The source exchange.

Declaration
public Input<string> Source { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Vhost

The vhost to create the resource in.

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