CfnVoiceChannelProps¶
-
class
aws_cdk.aws_pinpoint.
CfnVoiceChannelProps
(*, application_id, enabled=None)¶ Bases:
object
Properties for defining a
CfnVoiceChannel
.- Parameters
application_id (
str
) – The unique identifier for the Amazon Pinpoint application that the voice channel applies to.enabled (
Union
[bool
,IResolvable
,None
]) – Specifies whether to enable the voice channel for the application.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_pinpoint as pinpoint cfn_voice_channel_props = pinpoint.CfnVoiceChannelProps( application_id="applicationId", # the properties below are optional enabled=False )
Attributes
-
application_id
¶ The unique identifier for the Amazon Pinpoint application that the voice channel applies to.
-
enabled
¶ Specifies whether to enable the voice channel for the application.
- Link
- Return type
Union
[bool
,IResolvable
,None
]