aws-cdk-lib.aws_events.ConnectionAttributes

interface ConnectionAttributes

LanguageType name
.NETAmazon.CDK.AWS.Events.ConnectionAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevents#ConnectionAttributes
Javasoftware.amazon.awscdk.services.events.ConnectionAttributes
Pythonaws_cdk.aws_events.ConnectionAttributes
TypeScript (source)aws-cdk-lib » 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 { aws_events as events } from 'aws-cdk-lib';
const connectionAttributes: events.ConnectionAttributes = {
  connectionArn: 'connectionArn',
  connectionName: 'connectionName',
  connectionSecretArn: 'connectionSecretArn',
};

Properties

NameTypeDescription
connectionArnstringThe ARN of the connection created.
connectionNamestringThe Name for the connection.
connectionSecretArnstringThe 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.