Class: Aws::BedrockDataAutomation::Types::Phrase

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#display_as_textString

Text to configure how phrase is displayed in Transcript

Returns:

  • (String)


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

#textString

Text content of the phrase

Returns:

  • (String)


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