interface ConnectionAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.ConnectionAttributes |
Java | software.amazon.awscdk.services.events.ConnectionAttributes |
Python | aws_cdk.aws_events.ConnectionAttributes |
TypeScript (source) | @aws-cdk/aws-events » ConnectionAttributes |
Interface with properties necessary to import a reusable Connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as events from '@aws-cdk/aws-events';
const connectionAttributes: events.ConnectionAttributes = {
connectionArn: 'connectionArn',
connectionName: 'connectionName',
connectionSecretArn: 'connectionSecretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The ARN of the connection created. |
| connection | string | The Name for the connection. |
| connection | string | The ARN for the secret created for the connection. |
connectionArn
Type:
string
The ARN of the connection created.
connectionName
Type:
string
The Name for the connection.
connectionSecretArn
Type:
string
The ARN for the secret created for the connection.

.NET
Java
Python
TypeScript (