interface EventIntegrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppIntegrations.EventIntegrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappintegrations#EventIntegrationReference |
Java | software.amazon.awscdk.interfaces.appintegrations.EventIntegrationReference |
Python | aws_cdk.interfaces.aws_appintegrations.EventIntegrationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_appintegrations } from 'aws-cdk-lib/interfaces';
const eventIntegrationReference: interfaces_aws_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