Class CfnEventIntegrationProps
Properties for defining a CfnEventIntegration
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEventIntegrationProps : Object, ICfnEventIntegrationProps
Syntax (vb)
Public Class CfnEventIntegrationProps
Inherits Object
Implements ICfnEventIntegrationProps
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.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
Cfn |
Properties
Description | The event integration description. |
Event |
The Amazon EventBridge bus for the event integration. |
Event |
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()
public CfnEventIntegrationProps()
Properties
Description
The event integration description.
public string Description { get; set; }
Property Value
System.
Remarks
EventBridgeBus
The Amazon EventBridge bus for the event integration.
public string EventBridgeBus { get; set; }
Property Value
System.
Remarks
EventFilter
The event integration filter.
public object EventFilter { get; set; }
Property Value
System.
Remarks
Name
The name of the event integration.
public string Name { get; set; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn