interface CodeConnectContactProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Events.InstanceEvents.CodeConnectContact.CodeConnectContactProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/events#InstanceEvents_CodeConnectContact_CodeConnectContactProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.events.InstanceEvents.CodeConnectContact.CodeConnectContactProps |
Python | aws_cdk.mixins_preview.aws_connect.events.InstanceEvents.CodeConnectContact.CodeConnectContactProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_connect ยป events ยป InstanceEvents ยป CodeConnectContact ยป CodeConnectContactProps |
Props type for Instance aws.connect@CodeConnectContact event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as connect_events } from '@aws-cdk/mixins-preview/aws-connect';
const codeConnectContactProps: connect_events.InstanceEvents.CodeConnectContact.CodeConnectContactProps = {
agentInfo: {
agentArn: ['agentArn'],
},
channel: ['channel'],
contactId: ['contactId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventType: ['eventType'],
initialContactId: ['initialContactId'],
initiationMethod: ['initiationMethod'],
instanceArn: ['instanceArn'],
previousContactId: ['previousContactId'],
queueInfo: {
queueArn: ['queueArn'],
queueType: ['queueType'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | Agent | agentInfo property. |
| channel? | string[] | channel property. |
| contact | string[] | contactId property. |
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | eventType property. |
| initial | string[] | initialContactId property. |
| initiation | string[] | initiationMethod property. |
| instance | string[] | instanceArn property. |
| previous | string[] | previousContactId property. |
| queue | Queue | queueInfo property. |
agentInfo?
Type:
Agent
(optional, default: Do not filter on this field)
agentInfo property.
Specify an array of string values to match this event if the actual value of agentInfo is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
channel?
Type:
string[]
(optional, default: Do not filter on this field)
channel property.
Specify an array of string values to match this event if the actual value of channel is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
contactId?
Type:
string[]
(optional, default: Do not filter on this field)
contactId property.
Specify an array of string values to match this event if the actual value of contactId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
eventType?
Type:
string[]
(optional, default: Do not filter on this field)
eventType property.
Specify an array of string values to match this event if the actual value of eventType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
initialContactId?
Type:
string[]
(optional, default: Do not filter on this field)
initialContactId property.
Specify an array of string values to match this event if the actual value of initialContactId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
initiationMethod?
Type:
string[]
(optional, default: Do not filter on this field)
initiationMethod property.
Specify an array of string values to match this event if the actual value of initiationMethod is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceArn?
Type:
string[]
(optional, default: Filter with the Instance reference)
instanceArn property.
Specify an array of string values to match this event if the actual value of instanceArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
previousContactId?
Type:
string[]
(optional, default: Do not filter on this field)
previousContactId property.
Specify an array of string values to match this event if the actual value of previousContactId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
queueInfo?
Type:
Queue
(optional, default: Do not filter on this field)
queueInfo property.
Specify an array of string values to match this event if the actual value of queueInfo is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript