interface PredefinedAttributeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.PredefinedAttributeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#PredefinedAttributeReference |
Java | software.amazon.awscdk.interfaces.connect.PredefinedAttributeReference |
Python | aws_cdk.interfaces.aws_connect.PredefinedAttributeReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » PredefinedAttributeReference |
A reference to a PredefinedAttribute 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 predefinedAttributeReference: interfaces_connect.PredefinedAttributeReference = {
instanceArn: 'instanceArn',
predefinedAttributeName: 'predefinedAttributeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The InstanceArn of the PredefinedAttribute resource. |
| predefined | string | The Name of the PredefinedAttribute resource. |
instanceArn
Type:
string
The InstanceArn of the PredefinedAttribute resource.
predefinedAttributeName
Type:
string
The Name of the PredefinedAttribute resource.

.NET
Go
Java
Python
TypeScript