Class: Aws::ConnectHealth::Types::NoteTemplateSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb

Overview

Note:

NoteTemplateSettings is a union - when making an API calls you must set exactly one of the members.

Settings for the note template to use for clinical note generation

Defined Under Namespace

Classes: CustomTemplate, ManagedTemplate, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_templateTypes::CustomTemplate



1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 1124

class NoteTemplateSettings < Struct.new(
  :managed_template,
  :custom_template,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ManagedTemplate < NoteTemplateSettings; end
  class CustomTemplate < NoteTemplateSettings; end
  class Unknown < NoteTemplateSettings; end
end

#managed_templateTypes::ManagedTemplate



1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 1124

class NoteTemplateSettings < Struct.new(
  :managed_template,
  :custom_template,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ManagedTemplate < NoteTemplateSettings; end
  class CustomTemplate < NoteTemplateSettings; end
  class Unknown < NoteTemplateSettings; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1124
1125
1126
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 1124

def unknown
  @unknown
end