Class: Aws::AlexaForBusiness::Types::Content
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::Content
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass Content data as a hash:
{
text_list: [
{
locale: "en-US", # required, accepts en-US
value: "TextValue", # required
},
],
ssml_list: [
{
locale: "en-US", # required, accepts en-US
value: "SsmlValue", # required
},
],
audio_list: [
{
locale: "en-US", # required, accepts en-US
location: "AudioLocation", # required
},
],
}
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.
698 699 700 701 702 703 704 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 698 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.
698 699 700 701 702 703 704 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 698 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.
698 699 700 701 702 703 704 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 698 class Content < Struct.new( :text_list, :ssml_list, :audio_list) SENSITIVE = [] include Aws::Structure end |