interface CfnVoiceChannelProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnVoiceChannelProps |
Java | software.amazon.awscdk.services.pinpoint.CfnVoiceChannelProps |
Python | aws_cdk.aws_pinpoint.CfnVoiceChannelProps |
TypeScript | @aws-cdk/aws-pinpoint » CfnVoiceChannelProps |
Properties for defining a CfnVoiceChannel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpoint from '@aws-cdk/aws-pinpoint';
const cfnVoiceChannelProps: pinpoint.CfnVoiceChannelProps = {
applicationId: 'applicationId',
// the properties below are optional
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier for the Amazon Pinpoint application that the voice channel applies to. |
| enabled? | boolean | IResolvable | Specifies whether to enable the voice channel for the application. |
applicationId
Type:
string
The unique identifier for the Amazon Pinpoint application that the voice channel applies to.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether to enable the voice channel for the application.

.NET
Java
Python
TypeScript