interface VoiceCallEntryPointParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnTestCase.VoiceCallEntryPointParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnTestCase_VoiceCallEntryPointParametersProperty |
Java | software.amazon.awscdk.services.connect.CfnTestCase.VoiceCallEntryPointParametersProperty |
Python | aws_cdk.aws_connect.CfnTestCase.VoiceCallEntryPointParametersProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnTestCase » VoiceCallEntryPointParametersProperty |
The voice call entry point parameters for 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 voiceCallEntryPointParametersProperty: connect.CfnTestCase.VoiceCallEntryPointParametersProperty = {
destinationPhoneNumber: 'destinationPhoneNumber',
flowId: 'flowId',
sourcePhoneNumber: 'sourcePhoneNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination phonenumber of the EntryPoint. |
| flow | string | The flow id used for the TestCase. |
| source | string | The source phonenumber of the EntryPoint. |
destinationPhoneNumber?
Type:
string
(optional)
The destination phonenumber of the EntryPoint.
flowId?
Type:
string
(optional)
The flow id used for the TestCase.
sourcePhoneNumber?
Type:
string
(optional)
The source phonenumber of the EntryPoint.

.NET
Go
Java
Python
TypeScript