interface EntryPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnTestCase.EntryPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnTestCase_EntryPointProperty |
Java | software.amazon.awscdk.services.connect.CfnTestCase.EntryPointProperty |
Python | aws_cdk.aws_connect.CfnTestCase.EntryPointProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnTestCase » EntryPointProperty |
The Entry Point associated with the test case.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const entryPointProperty: connect.CfnTestCase.EntryPointProperty = {
chatEntryPointParameters: {
flowId: 'flowId',
},
type: 'type',
voiceCallEntryPointParameters: {
destinationPhoneNumber: 'destinationPhoneNumber',
flowId: 'flowId',
sourcePhoneNumber: 'sourcePhoneNumber',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| chat | IResolvable | Chat | The chat entry point parameters for the test case. |
| type? | string | The type of the Entry Point. |
| voice | IResolvable | Voice | The voice call entry point parameters for the test case. |
chatEntryPointParameters?
Type:
IResolvable | Chat
(optional)
The chat entry point parameters for the test case.
type?
Type:
string
(optional)
The type of the Entry Point.
voiceCallEntryPointParameters?
Type:
IResolvable | Voice
(optional)
The voice call entry point parameters for the test case.

.NET
Go
Java
Python
TypeScript