Class: Aws::BedrockDataAutomation::Types::Phrase
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockDataAutomation::Types::Phrase
- Defined in:
- gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb
Overview
Phrase structure for vocabulary
Constant Summary collapse
- SENSITIVE =
[:text, :display_as_text]
Instance Attribute Summary collapse
-
#display_as_text ⇒ String
Text to configure how phrase is displayed in Transcript.
-
#text ⇒ String
Text content of the phrase.
Instance Attribute Details
#display_as_text ⇒ String
Text to configure how phrase is displayed in Transcript
2323 2324 2325 2326 2327 2328 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 2323 class Phrase < Struct.new( :text, :display_as_text) SENSITIVE = [:text, :display_as_text] include Aws::Structure end |