Show / Hide Table of Contents

Class CfnEventIntegrationProps

Properties for defining a CfnEventIntegration.

Inheritance
object
CfnEventIntegrationProps
Implements
ICfnEventIntegrationProps
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.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEventIntegrationProps : ICfnEventIntegrationProps
Syntax (vb)
Public Class CfnEventIntegrationProps Implements ICfnEventIntegrationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html

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.AppIntegrations;

             var cfnEventIntegrationProps = new CfnEventIntegrationProps {
                 EventBridgeBus = "eventBridgeBus",
                 EventFilter = new EventFilterProperty {
                     Source = "source"
                 },
                 Name = "name",

                 // the properties below are optional
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnEventIntegrationProps()

Properties for defining a CfnEventIntegration.

Properties

Description

The event integration description.

EventBridgeBus

The Amazon EventBridge bus for the event integration.

EventFilter

The event integration filter.

Name

The name of the event integration.

Tags

An array of key-value pairs to apply to this resource.

Constructors

CfnEventIntegrationProps()

Properties for defining a CfnEventIntegration.

public CfnEventIntegrationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html

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.AppIntegrations;

             var cfnEventIntegrationProps = new CfnEventIntegrationProps {
                 EventBridgeBus = "eventBridgeBus",
                 EventFilter = new EventFilterProperty {
                     Source = "source"
                 },
                 Name = "name",

                 // the properties below are optional
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The event integration description.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-description

EventBridgeBus

The Amazon EventBridge bus for the event integration.

public string EventBridgeBus { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-eventbridgebus

EventFilter

The event integration filter.

public object EventFilter { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-eventfilter

Name

The name of the event integration.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-name

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-tags

Implements

ICfnEventIntegrationProps
Back to top Generated by DocFX