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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-support/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)


1427
1428
1429
1430
1431
1432
1433
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1427

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

#displayString

Language display value e.g. ENGLISH

Returns:

  • (String)


1427
1428
1429
1430
1431
1432
1433
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1427

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

#languageString

Full language description e.g. ENGLISH

Returns:

  • (String)


1427
1428
1429
1430
1431
1432
1433
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1427

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