Class: Aws::AlexaForBusiness::Types::Content
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::Content
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-alexaforbusiness/types.rb
Overview
The content definition. This can contain only one text, SSML, or audio list object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audio_list ⇒ Array<Types::Audio>
The list of audio messages.
-
#ssml_list ⇒ Array<Types::Ssml>
The list of SSML messages.
-
#text_list ⇒ Array<Types::Text>
The list of text messages.
Instance Attribute Details
#audio_list ⇒ Array<Types::Audio>
The list of audio messages.
591 592 593 594 595 596 597 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 591 class Content < Struct.new( :text_list, :ssml_list, :audio_list) SENSITIVE = [] include Aws::Structure end |
#ssml_list ⇒ Array<Types::Ssml>
The list of SSML messages.
591 592 593 594 595 596 597 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 591 class Content < Struct.new( :text_list, :ssml_list, :audio_list) SENSITIVE = [] include Aws::Structure end |
#text_list ⇒ Array<Types::Text>
The list of text messages.
591 592 593 594 595 596 597 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 591 class Content < Struct.new( :text_list, :ssml_list, :audio_list) SENSITIVE = [] include Aws::Structure end |