interface ConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.ConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#ConnectionReference |
Java | software.amazon.awscdk.services.events.ConnectionReference |
Python | aws_cdk.aws_events.ConnectionReference |
TypeScript | aws-cdk-lib » aws_events » ConnectionReference |
A reference to a Connection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const connectionReference: events.ConnectionReference = {
connectionArn: 'connectionArn',
connectionName: 'connectionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The ARN of the Connection resource. |
| connection | string | The Name of the Connection resource. |
connectionArn
Type:
string
The ARN of the Connection resource.
connectionName
Type:
string
The Name of the Connection resource.

.NET
Go
Java
Python
TypeScript