interface ContactLensRealtimeRulesMatchedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Events.InstanceEvents.ContactLensRealtimeRulesMatched.ContactLensRealtimeRulesMatchedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/events#InstanceEvents_ContactLensRealtimeRulesMatched_ContactLensRealtimeRulesMatchedProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.events.InstanceEvents.ContactLensRealtimeRulesMatched.ContactLensRealtimeRulesMatchedProps |
Python | aws_cdk.mixins_preview.aws_connect.events.InstanceEvents.ContactLensRealtimeRulesMatched.ContactLensRealtimeRulesMatchedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_connect ยป events ยป InstanceEvents ยป ContactLensRealtimeRulesMatched ยป ContactLensRealtimeRulesMatchedProps |
Props type for Instance aws.connect@ContactLensRealtimeRulesMatched 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 contactLensRealtimeRulesMatchedProps: connect_events.InstanceEvents.ContactLensRealtimeRulesMatched.ContactLensRealtimeRulesMatchedProps = {
actionName: ['actionName'],
agentArn: ['agentArn'],
contactArn: ['contactArn'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
instanceArn: ['instanceArn'],
queueArn: ['queueArn'],
ruleName: ['ruleName'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string[] | actionName property. |
| agent | string[] | agentArn property. |
| contact | string[] | contactArn property. |
| event | AWSEvent | EventBridge event metadata. |
| instance | string[] | instanceArn property. |
| queue | string[] | queueArn property. |
| rule | string[] | ruleName property. |
| version? | string[] | version property. |
actionName?
Type:
string[]
(optional, default: Do not filter on this field)
actionName property.
Specify an array of string values to match this event if the actual value of actionName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
agentArn?
Type:
string[]
(optional, default: Do not filter on this field)
agentArn property.
Specify an array of string values to match this event if the actual value of agentArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
contactArn?
Type:
string[]
(optional, default: Do not filter on this field)
contactArn property.
Specify an array of string values to match this event if the actual value of contactArn 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.
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.
queueArn?
Type:
string[]
(optional, default: Do not filter on this field)
queueArn property.
Specify an array of string values to match this event if the actual value of queueArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
ruleName?
Type:
string[]
(optional, default: Do not filter on this field)
ruleName property.
Specify an array of string values to match this event if the actual value of ruleName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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