Class: Aws::Support::Types::SupportedLanguage

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-support/types.rb

Overview

A JSON-formatted object that contains the available ISO 639-1 language ‘code`, `language` name and langauge `display` value. The language code is what should be used in the CreateCase call.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

2 digit ISO 639-1 code. e.g. ‘en`

Returns:

  • (String)


1417
1418
1419
1420
1421
1422
1423
# File 'lib/aws-sdk-support/types.rb', line 1417

class SupportedLanguage < Struct.new(
  :code,
  :language,
  :display)
  SENSITIVE = []
  include Aws::Structure
end

#displayString

Language display value e.g. ‘ENGLISH`

Returns:

  • (String)


1417
1418
1419
1420
1421
1422
1423
# File 'lib/aws-sdk-support/types.rb', line 1417

class SupportedLanguage < Struct.new(
  :code,
  :language,
  :display)
  SENSITIVE = []
  include Aws::Structure
end

#languageString

Full language description e.g. ‘ENGLISH`

Returns:

  • (String)


1417
1418
1419
1420
1421
1422
1423
# File 'lib/aws-sdk-support/types.rb', line 1417

class SupportedLanguage < Struct.new(
  :code,
  :language,
  :display)
  SENSITIVE = []
  include Aws::Structure
end