@netforbpo/aws-cdk-aws-connect-lib
Project description
Amazon Connect L2 Construct library
This CDK Construct Library provides L2 constructs for Amazon Connect.
This is used in production internally. However, it is alpha and subject to breaking changes as better ways of managing resources are designed.
Package Installation
NPM
yarn add @netforbpo/aws-cdk-aws-connect-lib
# or
npm install @netforbpo/aws-cdk-aws-connect-lib
PyPI
uv add netforbpo-aws-cdk-aws-connect-lib
# or
pip install netforbpo-aws-cdk-aws-connect-lib
Basic Usage
Typescript
import * as connect from '@netforbpo/aws-cdk-aws-connect-lib';
import {
aws_s3 as s3
} from '@aws-cdk';
// assuming `this` is your stack or other construct
const instance = new connect.Instance(this, 'myInstance', {
identityManagementType: connect.IdentityManagementType.CONNECT_MANAGED,
instanceAlias: 'my-instance-alias',
telephonyConfig: {
inboundCalls: true,
outboundCalls: true,
},
otherConfig: {
contactFlowLogs: true,
}
});
const bucket = s3.Bucket(this, 'ConnectStorage');
instance.addStorageConfig(connect.SttorageConfig.buildS3(
connect.StorageType.CALL_RECORDINGS,
{
bucket,
prefix: 'call-recordings'
}
));
Python
import aws_cdk_aws_connect_lib as connect
from aws_cdk import aws_s3 as s3
# Assuming `self` is your stack or other construct
self.instance = new connect.Instance(self, 'myInstance',
identity_management_type=connect.IdentityManagementType.CONNECT_MANAGED,
instance_alias='my-instance-alias',
telephony_config=connect.TelephonyConfigProps(
inbound_calls=True,
outbound_calls=True,
),
other_config=connect.OtherConfigProps(
contact_flow_logs=True,
)
)
self.bucket = s3.Bucket(stack, 'ConnectStorage')
self.instance.add_storage_config(
connect.SttorageConfig.buildS3(
resource_type=connect.StorageType.CALL_RECORDINGS,
bucket=self.bucket,
prefix='call-recordings'
)
)
locating resources
Currently only Instance has a fromLookup method to build an Instance object from an previousl created connect instance (from another stack, or manually).
All the other resources can be used against that looked-up instance.
The ability to look up other resources will be added in the future once a PR gets merged into core aws-cdk ( aws/aws-cdk-cli#1015 ).
Example usage
import aws_cdk_aws_connect_lib as connect
self.instance = connect.Instance.from_lookup(self, 'myInstance',
instance_name='my-instance-alias'
# instance_arn and instance_id are also available
)
# Assuming self.bucket is an S3 bucket
self.instance.add_storage_config(
connect.SttorageConfig.buildS3(
resource_type=connect.StorageType.CHAT_TRANSCRIPTS,
bucket=self.bucket,
prefix='chat-transcripts'
)
)
Associating Lex & Lambda bots
To associate a Lex Bot or Lambda Function to a connect instance there are two helper methods available on an instance (whether created or looked-up)
import aws_cdk_aws_connect_lib as connect
# and to associate a Lex Bot or Lambda Function to the connect instance
# Assuming self.lex_bot is a Lex Bot Alias
self.instance.associate_lex_bot('MyLexBot', self.lex_bot_alias)
# Assuming self.lambda_function is a Lambda Function or lambda function alias
self.instance.associate_lambda_function('MyLambda', self.lambda_function)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netforbpo_aws_cdk_aws_connect_lib-0.2.2.tar.gz.
File metadata
- Download URL: netforbpo_aws_cdk_aws_connect_lib-0.2.2.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dcc873895959c8b48856f32b758372439ee1c5199fb49556d9b9a67aa7b4a48
|
|
| MD5 |
78edfead96107b672c05005975bb5d6f
|
|
| BLAKE2b-256 |
1c8074d39cc3bae2f1cc91b384af148f89bb8c3669233f19d76795cc60062877
|
File details
Details for the file netforbpo_aws_cdk_aws_connect_lib-0.2.2-py3-none-any.whl.
File metadata
- Download URL: netforbpo_aws_cdk_aws_connect_lib-0.2.2-py3-none-any.whl
- Upload date:
- Size: 1.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c43123c4adf80f3b5928500a374beb3ce6eacee1d045ac4be09c28bae13b0fbd
|
|
| MD5 |
a7568b9fb1e2d68de5eb244da010437c
|
|
| BLAKE2b-256 |
b2e2ba4c17a3fd2930ddbe509ee60964e03dba94ab4db555413bf362b9cd59eb
|