interface EventIntegrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppIntegrations.EventIntegrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#EventIntegrationReference |
Java | software.amazon.awscdk.services.appintegrations.EventIntegrationReference |
Python | aws_cdk.aws_appintegrations.EventIntegrationReference |
TypeScript | aws-cdk-lib » aws_appintegrations » EventIntegrationReference |
A reference to a EventIntegration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appintegrations as appintegrations } from 'aws-cdk-lib';
const eventIntegrationReference: appintegrations.EventIntegrationReference = {
eventIntegrationArn: 'eventIntegrationArn',
eventIntegrationName: 'eventIntegrationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The ARN of the EventIntegration resource. |
| event | string | The Name of the EventIntegration resource. |
eventIntegrationArn
Type:
string
The ARN of the EventIntegration resource.
eventIntegrationName
Type:
string
The Name of the EventIntegration resource.

.NET
Go
Java
Python
TypeScript