Class EventBusReference
A reference to a EventBus resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
EventBusName
The Name of the EventBus resource.
public string EventBusName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated