interface ReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRulePropsMixin.ReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRulePropsMixin_ReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRulePropsMixin.ReferenceProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRulePropsMixin.ReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRulePropsMixin » ReferenceProperty |
Information about the reference when the referenceType is URL .
Otherwise, null. (Supports variable injection in the Value field.)
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const referenceProperty: connect_mixins.CfnRulePropsMixin.ReferenceProperty = {
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The type of the reference. DATE must be of type Epoch timestamp. |
| value? | string | A valid value for the reference. |
type?
Type:
string
(optional)
The type of the reference. DATE must be of type Epoch timestamp.
Allowed values : URL | ATTACHMENT | NUMBER | STRING | DATE | EMAIL
value?
Type:
string
(optional)
A valid value for the reference.
For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).

.NET
Go
Java
Python
TypeScript