Show / Hide Table of Contents

Class EventBusReference

A reference to a EventBus resource.

Inheritance
object
EventBusReference
Implements
IEventBusReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EventBusReference : IEventBusReference
Syntax (vb)
Public Class EventBusReference Implements IEventBusReference
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.Events;

            var eventBusReference = new EventBusReference {
                EventBusArn = "eventBusArn",
                EventBusName = "eventBusName"
            };

Synopsis

Constructors

EventBusReference()

A reference to a EventBus resource.

Properties

EventBusArn

The ARN of the EventBus resource.

EventBusName

The Name of the EventBus resource.

Constructors

EventBusReference()

A reference to a EventBus resource.

public EventBusReference()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.Events;

            var eventBusReference = new EventBusReference {
                EventBusArn = "eventBusArn",
                EventBusName = "eventBusName"
            };

Properties

EventBusArn

The ARN of the EventBus resource.

public string EventBusArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

EventBusName

The Name of the EventBus resource.

public string EventBusName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IEventBusReference
Back to top Generated by DocFX