interface VoiceCallEntryPointParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnTestCasePropsMixin.VoiceCallEntryPointParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnTestCasePropsMixin_VoiceCallEntryPointParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnTestCasePropsMixin.VoiceCallEntryPointParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnTestCasePropsMixin.VoiceCallEntryPointParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnTestCasePropsMixin » 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/cfn-property-mixins';
const voiceCallEntryPointParametersProperty: connect.CfnTestCasePropsMixin.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