interface RoutingProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.RoutingProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#RoutingProfileReference |
Java | software.amazon.awscdk.interfaces.connect.RoutingProfileReference |
Python | aws_cdk.interfaces.aws_connect.RoutingProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » RoutingProfileReference |
A reference to a RoutingProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_connect } from 'aws-cdk-lib/interfaces';
const routingProfileReference: interfaces_connect.RoutingProfileReference = {
routingProfileArn: 'routingProfileArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| routing | string | The RoutingProfileArn of the RoutingProfile resource. |
routingProfileArn
Type:
string
The RoutingProfileArn of the RoutingProfile resource.

.NET
Go
Java
Python
TypeScript