Show / Hide Table of Contents

Interface IEventBusAttributes

Interface with properties necessary to import a reusable EventBus.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEventBusAttributes
Syntax (vb)
Public Interface IEventBusAttributes
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 eventBusAttributes = new EventBusAttributes {
                EventBusArn = "eventBusArn",
                EventBusName = "eventBusName",
                EventBusPolicy = "eventBusPolicy",

                // the properties below are optional
                EventSourceName = "eventSourceName"
            };

Synopsis

Properties

EventBusArn

The ARN of this event bus resource.

EventBusName

The physical ID of this event bus resource.

EventBusPolicy

The JSON policy of this event bus resource.

EventSourceName

The partner event source to associate with this event bus resource.

Properties

EventBusArn

The ARN of this event bus resource.

string EventBusArn { get; }
Property Value

string

Remarks

Link: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#Arn-fn::getatt

EventBusName

The physical ID of this event bus resource.

string EventBusName { get; }
Property Value

string

Remarks

Link: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name

EventBusPolicy

The JSON policy of this event bus resource.

string EventBusPolicy { get; }
Property Value

string

Remarks

Link: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#Policy-fn::getatt

EventSourceName

The partner event source to associate with this event bus resource.

string? EventSourceName { get; }
Property Value

string

Remarks

Default: - no partner event source

Link: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename

Back to top Generated by DocFX