aws-sdk-connect 1.60.0 → 1.64.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -213,6 +213,49 @@ module Aws::Connect
213
213
  include Aws::Structure
214
214
  end
215
215
 
216
+ # @note When making an API call, you may pass AssociateDefaultVocabularyRequest
217
+ # data as a hash:
218
+ #
219
+ # {
220
+ # instance_id: "InstanceId", # required
221
+ # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN
222
+ # vocabulary_id: "VocabularyId",
223
+ # }
224
+ #
225
+ # @!attribute [rw] instance_id
226
+ # The identifier of the Amazon Connect instance. You can find the
227
+ # instanceId in the ARN of the instance.
228
+ # @return [String]
229
+ #
230
+ # @!attribute [rw] language_code
231
+ # The language code of the vocabulary entries. For a list of languages
232
+ # and their corresponding language codes, see [What is Amazon
233
+ # Transcribe?][1]
234
+ #
235
+ #
236
+ #
237
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
238
+ # @return [String]
239
+ #
240
+ # @!attribute [rw] vocabulary_id
241
+ # The identifier of the custom vocabulary. If this is empty, the
242
+ # default is set to none.
243
+ # @return [String]
244
+ #
245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateDefaultVocabularyRequest AWS API Documentation
246
+ #
247
+ class AssociateDefaultVocabularyRequest < Struct.new(
248
+ :instance_id,
249
+ :language_code,
250
+ :vocabulary_id)
251
+ SENSITIVE = []
252
+ include Aws::Structure
253
+ end
254
+
255
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateDefaultVocabularyResponse AWS API Documentation
256
+ #
257
+ class AssociateDefaultVocabularyResponse < Aws::EmptyStructure; end
258
+
216
259
  # @note When making an API call, you may pass AssociateInstanceStorageConfigRequest
217
260
  # data as a hash:
218
261
  #
@@ -1671,6 +1714,9 @@ module Aws::Connect
1671
1714
  # name: "HierarchyGroupName", # required
1672
1715
  # parent_group_id: "HierarchyGroupId",
1673
1716
  # instance_id: "InstanceId", # required
1717
+ # tags: {
1718
+ # "TagKey" => "TagValue",
1719
+ # },
1674
1720
  # }
1675
1721
  #
1676
1722
  # @!attribute [rw] name
@@ -1688,12 +1734,18 @@ module Aws::Connect
1688
1734
  # instanceId in the ARN of the instance.
1689
1735
  # @return [String]
1690
1736
  #
1737
+ # @!attribute [rw] tags
1738
+ # The tags used to organize, track, or control access for this
1739
+ # resource.
1740
+ # @return [Hash<String,String>]
1741
+ #
1691
1742
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserHierarchyGroupRequest AWS API Documentation
1692
1743
  #
1693
1744
  class CreateUserHierarchyGroupRequest < Struct.new(
1694
1745
  :name,
1695
1746
  :parent_group_id,
1696
- :instance_id)
1747
+ :instance_id,
1748
+ :tags)
1697
1749
  SENSITIVE = []
1698
1750
  include Aws::Structure
1699
1751
  end
@@ -1833,6 +1885,102 @@ module Aws::Connect
1833
1885
  include Aws::Structure
1834
1886
  end
1835
1887
 
1888
+ # @note When making an API call, you may pass CreateVocabularyRequest
1889
+ # data as a hash:
1890
+ #
1891
+ # {
1892
+ # client_token: "ClientToken",
1893
+ # instance_id: "InstanceId", # required
1894
+ # vocabulary_name: "VocabularyName", # required
1895
+ # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN
1896
+ # content: "VocabularyContent", # required
1897
+ # tags: {
1898
+ # "TagKey" => "TagValue",
1899
+ # },
1900
+ # }
1901
+ #
1902
+ # @!attribute [rw] client_token
1903
+ # A unique, case-sensitive identifier that you provide to ensure the
1904
+ # idempotency of the request. If a create request is received more
1905
+ # than once with same client token, subsequent requests return the
1906
+ # previous response without creating a vocabulary again.
1907
+ #
1908
+ # **A suitable default value is auto-generated.** You should normally
1909
+ # not need to pass this option.
1910
+ # @return [String]
1911
+ #
1912
+ # @!attribute [rw] instance_id
1913
+ # The identifier of the Amazon Connect instance. You can find the
1914
+ # instanceId in the ARN of the instance.
1915
+ # @return [String]
1916
+ #
1917
+ # @!attribute [rw] vocabulary_name
1918
+ # A unique name of the custom vocabulary.
1919
+ # @return [String]
1920
+ #
1921
+ # @!attribute [rw] language_code
1922
+ # The language code of the vocabulary entries. For a list of languages
1923
+ # and their corresponding language codes, see [What is Amazon
1924
+ # Transcribe?][1]
1925
+ #
1926
+ #
1927
+ #
1928
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
1929
+ # @return [String]
1930
+ #
1931
+ # @!attribute [rw] content
1932
+ # The content of the custom vocabulary in plain-text format with a
1933
+ # table of values. Each row in the table represents a word or a
1934
+ # phrase, described with `Phrase`, `IPA`, `SoundsLike`, and
1935
+ # `DisplayAs` fields. Separate the fields with TAB characters. The
1936
+ # size limit is 50KB. For more information, see [Create a custom
1937
+ # vocabulary using a table][1].
1938
+ #
1939
+ #
1940
+ #
1941
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html#create-vocabulary-table
1942
+ # @return [String]
1943
+ #
1944
+ # @!attribute [rw] tags
1945
+ # The tags used to organize, track, or control access for this
1946
+ # resource.
1947
+ # @return [Hash<String,String>]
1948
+ #
1949
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateVocabularyRequest AWS API Documentation
1950
+ #
1951
+ class CreateVocabularyRequest < Struct.new(
1952
+ :client_token,
1953
+ :instance_id,
1954
+ :vocabulary_name,
1955
+ :language_code,
1956
+ :content,
1957
+ :tags)
1958
+ SENSITIVE = []
1959
+ include Aws::Structure
1960
+ end
1961
+
1962
+ # @!attribute [rw] vocabulary_arn
1963
+ # The Amazon Resource Name (ARN) of the custom vocabulary.
1964
+ # @return [String]
1965
+ #
1966
+ # @!attribute [rw] vocabulary_id
1967
+ # The identifier of the custom vocabulary.
1968
+ # @return [String]
1969
+ #
1970
+ # @!attribute [rw] state
1971
+ # The current state of the custom vocabulary.
1972
+ # @return [String]
1973
+ #
1974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateVocabularyResponse AWS API Documentation
1975
+ #
1976
+ class CreateVocabularyResponse < Struct.new(
1977
+ :vocabulary_arn,
1978
+ :vocabulary_id,
1979
+ :state)
1980
+ SENSITIVE = []
1981
+ include Aws::Structure
1982
+ end
1983
+
1836
1984
  # Contains credentials to use for federation.
1837
1985
  #
1838
1986
  # @!attribute [rw] access_token
@@ -1936,6 +2084,42 @@ module Aws::Connect
1936
2084
  include Aws::Structure
1937
2085
  end
1938
2086
 
2087
+ # Contains information about a default vocabulary.
2088
+ #
2089
+ # @!attribute [rw] instance_id
2090
+ # The identifier of the Amazon Connect instance. You can find the
2091
+ # instanceId in the ARN of the instance.
2092
+ # @return [String]
2093
+ #
2094
+ # @!attribute [rw] language_code
2095
+ # The language code of the vocabulary entries. For a list of languages
2096
+ # and their corresponding language codes, see [What is Amazon
2097
+ # Transcribe?][1]
2098
+ #
2099
+ #
2100
+ #
2101
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
2102
+ # @return [String]
2103
+ #
2104
+ # @!attribute [rw] vocabulary_id
2105
+ # The identifier of the custom vocabulary.
2106
+ # @return [String]
2107
+ #
2108
+ # @!attribute [rw] vocabulary_name
2109
+ # A unique name of the custom vocabulary.
2110
+ # @return [String]
2111
+ #
2112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DefaultVocabulary AWS API Documentation
2113
+ #
2114
+ class DefaultVocabulary < Struct.new(
2115
+ :instance_id,
2116
+ :language_code,
2117
+ :vocabulary_id,
2118
+ :vocabulary_name)
2119
+ SENSITIVE = []
2120
+ include Aws::Structure
2121
+ end
2122
+
1939
2123
  # @note When making an API call, you may pass DeleteContactFlowModuleRequest
1940
2124
  # data as a hash:
1941
2125
  #
@@ -2200,6 +2384,54 @@ module Aws::Connect
2200
2384
  include Aws::Structure
2201
2385
  end
2202
2386
 
2387
+ # @note When making an API call, you may pass DeleteVocabularyRequest
2388
+ # data as a hash:
2389
+ #
2390
+ # {
2391
+ # instance_id: "InstanceId", # required
2392
+ # vocabulary_id: "VocabularyId", # required
2393
+ # }
2394
+ #
2395
+ # @!attribute [rw] instance_id
2396
+ # The identifier of the Amazon Connect instance. You can find the
2397
+ # instanceId in the ARN of the instance.
2398
+ # @return [String]
2399
+ #
2400
+ # @!attribute [rw] vocabulary_id
2401
+ # The identifier of the custom vocabulary.
2402
+ # @return [String]
2403
+ #
2404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteVocabularyRequest AWS API Documentation
2405
+ #
2406
+ class DeleteVocabularyRequest < Struct.new(
2407
+ :instance_id,
2408
+ :vocabulary_id)
2409
+ SENSITIVE = []
2410
+ include Aws::Structure
2411
+ end
2412
+
2413
+ # @!attribute [rw] vocabulary_arn
2414
+ # The Amazon Resource Name (ARN) of the custom vocabulary.
2415
+ # @return [String]
2416
+ #
2417
+ # @!attribute [rw] vocabulary_id
2418
+ # The identifier of the custom vocabulary.
2419
+ # @return [String]
2420
+ #
2421
+ # @!attribute [rw] state
2422
+ # The current state of the custom vocabulary.
2423
+ # @return [String]
2424
+ #
2425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteVocabularyResponse AWS API Documentation
2426
+ #
2427
+ class DeleteVocabularyResponse < Struct.new(
2428
+ :vocabulary_arn,
2429
+ :vocabulary_id,
2430
+ :state)
2431
+ SENSITIVE = []
2432
+ include Aws::Structure
2433
+ end
2434
+
2203
2435
  # @note When making an API call, you may pass DescribeAgentStatusRequest
2204
2436
  # data as a hash:
2205
2437
  #
@@ -2764,6 +2996,47 @@ module Aws::Connect
2764
2996
  include Aws::Structure
2765
2997
  end
2766
2998
 
2999
+ # @note When making an API call, you may pass DescribeVocabularyRequest
3000
+ # data as a hash:
3001
+ #
3002
+ # {
3003
+ # instance_id: "InstanceId", # required
3004
+ # vocabulary_id: "VocabularyId", # required
3005
+ # }
3006
+ #
3007
+ # @!attribute [rw] instance_id
3008
+ # The identifier of the Amazon Connect instance. You can find the
3009
+ # instanceId in the ARN of the instance.
3010
+ # @return [String]
3011
+ #
3012
+ # @!attribute [rw] vocabulary_id
3013
+ # The identifier of the custom vocabulary.
3014
+ # @return [String]
3015
+ #
3016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeVocabularyRequest AWS API Documentation
3017
+ #
3018
+ class DescribeVocabularyRequest < Struct.new(
3019
+ :instance_id,
3020
+ :vocabulary_id)
3021
+ SENSITIVE = []
3022
+ include Aws::Structure
3023
+ end
3024
+
3025
+ # @!attribute [rw] vocabulary
3026
+ # A list of specific words that you want Contact Lens for Amazon
3027
+ # Connect to recognize in your audio input. They are generally
3028
+ # domain-specific words and phrases, words that Contact Lens is not
3029
+ # recognizing, or proper nouns.
3030
+ # @return [Types::Vocabulary]
3031
+ #
3032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeVocabularyResponse AWS API Documentation
3033
+ #
3034
+ class DescribeVocabularyResponse < Struct.new(
3035
+ :vocabulary)
3036
+ SENSITIVE = []
3037
+ include Aws::Structure
3038
+ end
3039
+
2767
3040
  # Outbound calls to the destination number are not allowed.
2768
3041
  #
2769
3042
  # @!attribute [rw] message
@@ -3104,8 +3377,10 @@ module Aws::Connect
3104
3377
  # }
3105
3378
  #
3106
3379
  # @!attribute [rw] queues
3107
- # The queues to use to filter the metrics. You can specify up to 100
3108
- # queues per request.
3380
+ # The queues to use to filter the metrics. You should specify at least
3381
+ # one queue, and can specify up to 100 queues per request. The
3382
+ # `GetCurrentMetricsData` API in particular requires a queue when you
3383
+ # include a `Filter` in your request.
3109
3384
  # @return [Array<String>]
3110
3385
  #
3111
3386
  # @!attribute [rw] channels
@@ -3721,6 +3996,11 @@ module Aws::Connect
3721
3996
  # Information about the levels in the hierarchy group.
3722
3997
  # @return [Types::HierarchyPath]
3723
3998
  #
3999
+ # @!attribute [rw] tags
4000
+ # The tags used to organize, track, or control access for this
4001
+ # resource.
4002
+ # @return [Hash<String,String>]
4003
+ #
3724
4004
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroup AWS API Documentation
3725
4005
  #
3726
4006
  class HierarchyGroup < Struct.new(
@@ -3728,7 +4008,8 @@ module Aws::Connect
3728
4008
  :arn,
3729
4009
  :name,
3730
4010
  :level_id,
3731
- :hierarchy_path)
4011
+ :hierarchy_path,
4012
+ :tags)
3732
4013
  SENSITIVE = []
3733
4014
  include Aws::Structure
3734
4015
  end
@@ -4991,6 +5272,70 @@ module Aws::Connect
4991
5272
  include Aws::Structure
4992
5273
  end
4993
5274
 
5275
+ # @note When making an API call, you may pass ListDefaultVocabulariesRequest
5276
+ # data as a hash:
5277
+ #
5278
+ # {
5279
+ # instance_id: "InstanceId", # required
5280
+ # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN
5281
+ # max_results: 1,
5282
+ # next_token: "VocabularyNextToken",
5283
+ # }
5284
+ #
5285
+ # @!attribute [rw] instance_id
5286
+ # The identifier of the Amazon Connect instance. You can find the
5287
+ # instanceId in the ARN of the instance.
5288
+ # @return [String]
5289
+ #
5290
+ # @!attribute [rw] language_code
5291
+ # The language code of the vocabulary entries. For a list of languages
5292
+ # and their corresponding language codes, see [What is Amazon
5293
+ # Transcribe?][1]
5294
+ #
5295
+ #
5296
+ #
5297
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
5298
+ # @return [String]
5299
+ #
5300
+ # @!attribute [rw] max_results
5301
+ # The maximum number of results to return per page.
5302
+ # @return [Integer]
5303
+ #
5304
+ # @!attribute [rw] next_token
5305
+ # The token for the next set of results. Use the value returned in the
5306
+ # previous response in the next request to retrieve the next set of
5307
+ # results.
5308
+ # @return [String]
5309
+ #
5310
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListDefaultVocabulariesRequest AWS API Documentation
5311
+ #
5312
+ class ListDefaultVocabulariesRequest < Struct.new(
5313
+ :instance_id,
5314
+ :language_code,
5315
+ :max_results,
5316
+ :next_token)
5317
+ SENSITIVE = []
5318
+ include Aws::Structure
5319
+ end
5320
+
5321
+ # @!attribute [rw] default_vocabulary_list
5322
+ # A list of default vocabularies.
5323
+ # @return [Array<Types::DefaultVocabulary>]
5324
+ #
5325
+ # @!attribute [rw] next_token
5326
+ # If there are additional results, this is the token for the next set
5327
+ # of results.
5328
+ # @return [String]
5329
+ #
5330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListDefaultVocabulariesResponse AWS API Documentation
5331
+ #
5332
+ class ListDefaultVocabulariesResponse < Struct.new(
5333
+ :default_vocabulary_list,
5334
+ :next_token)
5335
+ SENSITIVE = []
5336
+ include Aws::Structure
5337
+ end
5338
+
4994
5339
  # @note When making an API call, you may pass ListHoursOfOperationsRequest
4995
5340
  # data as a hash:
4996
5341
  #
@@ -6986,6 +7331,82 @@ module Aws::Connect
6986
7331
  include Aws::Structure
6987
7332
  end
6988
7333
 
7334
+ # @note When making an API call, you may pass SearchVocabulariesRequest
7335
+ # data as a hash:
7336
+ #
7337
+ # {
7338
+ # instance_id: "InstanceId", # required
7339
+ # max_results: 1,
7340
+ # next_token: "VocabularyNextToken",
7341
+ # state: "CREATION_IN_PROGRESS", # accepts CREATION_IN_PROGRESS, ACTIVE, CREATION_FAILED, DELETE_IN_PROGRESS
7342
+ # name_starts_with: "VocabularyName",
7343
+ # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN
7344
+ # }
7345
+ #
7346
+ # @!attribute [rw] instance_id
7347
+ # The identifier of the Amazon Connect instance. You can find the
7348
+ # instanceId in the ARN of the instance.
7349
+ # @return [String]
7350
+ #
7351
+ # @!attribute [rw] max_results
7352
+ # The maximum number of results to return per page.
7353
+ # @return [Integer]
7354
+ #
7355
+ # @!attribute [rw] next_token
7356
+ # The token for the next set of results. Use the value returned in the
7357
+ # previous response in the next request to retrieve the next set of
7358
+ # results.
7359
+ # @return [String]
7360
+ #
7361
+ # @!attribute [rw] state
7362
+ # The current state of the custom vocabulary.
7363
+ # @return [String]
7364
+ #
7365
+ # @!attribute [rw] name_starts_with
7366
+ # The starting pattern of the name of the vocabulary.
7367
+ # @return [String]
7368
+ #
7369
+ # @!attribute [rw] language_code
7370
+ # The language code of the vocabulary entries. For a list of languages
7371
+ # and their corresponding language codes, see [What is Amazon
7372
+ # Transcribe?][1]
7373
+ #
7374
+ #
7375
+ #
7376
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
7377
+ # @return [String]
7378
+ #
7379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchVocabulariesRequest AWS API Documentation
7380
+ #
7381
+ class SearchVocabulariesRequest < Struct.new(
7382
+ :instance_id,
7383
+ :max_results,
7384
+ :next_token,
7385
+ :state,
7386
+ :name_starts_with,
7387
+ :language_code)
7388
+ SENSITIVE = []
7389
+ include Aws::Structure
7390
+ end
7391
+
7392
+ # @!attribute [rw] vocabulary_summary_list
7393
+ # The list of the available custom vocabularies.
7394
+ # @return [Array<Types::VocabularySummary>]
7395
+ #
7396
+ # @!attribute [rw] next_token
7397
+ # If there are additional results, this is the token for the next set
7398
+ # of results.
7399
+ # @return [String]
7400
+ #
7401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchVocabulariesResponse AWS API Documentation
7402
+ #
7403
+ class SearchVocabulariesResponse < Struct.new(
7404
+ :vocabulary_summary_list,
7405
+ :next_token)
7406
+ SENSITIVE = []
7407
+ include Aws::Structure
7408
+ end
7409
+
6989
7410
  # Configuration information of the security key.
6990
7411
  #
6991
7412
  # @!attribute [rw] association_id
@@ -7105,6 +7526,7 @@ module Aws::Connect
7105
7526
  # content: "ChatContent", # required
7106
7527
  # },
7107
7528
  # client_token: "ClientToken",
7529
+ # chat_duration_in_minutes: 1,
7108
7530
  # }
7109
7531
  #
7110
7532
  # @!attribute [rw] instance_id
@@ -7149,6 +7571,13 @@ module Aws::Connect
7149
7571
  # not need to pass this option.
7150
7572
  # @return [String]
7151
7573
  #
7574
+ # @!attribute [rw] chat_duration_in_minutes
7575
+ # The total duration of the newly started chat session. If not
7576
+ # specified, the chat session duration defaults to 25 hour. The
7577
+ # minumum configurable time is 60 minutes. The maximum configurable
7578
+ # time is 10,080 minutes (7 days).
7579
+ # @return [Integer]
7580
+ #
7152
7581
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
7153
7582
  #
7154
7583
  class StartChatContactRequest < Struct.new(
@@ -7157,7 +7586,8 @@ module Aws::Connect
7157
7586
  :attributes,
7158
7587
  :participant_details,
7159
7588
  :initial_message,
7160
- :client_token)
7589
+ :client_token,
7590
+ :chat_duration_in_minutes)
7161
7591
  SENSITIVE = []
7162
7592
  include Aws::Structure
7163
7593
  end
@@ -8234,7 +8664,8 @@ module Aws::Connect
8234
8664
  # The type of attribute.
8235
8665
  #
8236
8666
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
8237
- # access this feature, contact AWS Support for allowlisting.
8667
+ # access this feature, contact Amazon Web Services Support for
8668
+ # allowlisting.
8238
8669
  #
8239
8670
  # </note>
8240
8671
  # @return [String]
@@ -9254,6 +9685,125 @@ module Aws::Connect
9254
9685
  include Aws::Structure
9255
9686
  end
9256
9687
 
9688
+ # Contains information about a custom vocabulary.
9689
+ #
9690
+ # @!attribute [rw] name
9691
+ # A unique name of the custom vocabulary.
9692
+ # @return [String]
9693
+ #
9694
+ # @!attribute [rw] id
9695
+ # The identifier of the custom vocabulary.
9696
+ # @return [String]
9697
+ #
9698
+ # @!attribute [rw] arn
9699
+ # The Amazon Resource Name (ARN) of the custom vocabulary.
9700
+ # @return [String]
9701
+ #
9702
+ # @!attribute [rw] language_code
9703
+ # The language code of the vocabulary entries. For a list of languages
9704
+ # and their corresponding language codes, see [What is Amazon
9705
+ # Transcribe?][1]
9706
+ #
9707
+ #
9708
+ #
9709
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
9710
+ # @return [String]
9711
+ #
9712
+ # @!attribute [rw] state
9713
+ # The current state of the custom vocabulary.
9714
+ # @return [String]
9715
+ #
9716
+ # @!attribute [rw] last_modified_time
9717
+ # The timestamp when the custom vocabulary was last modified.
9718
+ # @return [Time]
9719
+ #
9720
+ # @!attribute [rw] failure_reason
9721
+ # The reason why the custom vocabulary was not created.
9722
+ # @return [String]
9723
+ #
9724
+ # @!attribute [rw] content
9725
+ # The content of the custom vocabulary in plain-text format with a
9726
+ # table of values. Each row in the table represents a word or a
9727
+ # phrase, described with `Phrase`, `IPA`, `SoundsLike`, and
9728
+ # `DisplayAs` fields. Separate the fields with TAB characters. For
9729
+ # more information, see [Create a custom vocabulary using a table][1].
9730
+ #
9731
+ #
9732
+ #
9733
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html#create-vocabulary-table
9734
+ # @return [String]
9735
+ #
9736
+ # @!attribute [rw] tags
9737
+ # The tags used to organize, track, or control access for this
9738
+ # resource.
9739
+ # @return [Hash<String,String>]
9740
+ #
9741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Vocabulary AWS API Documentation
9742
+ #
9743
+ class Vocabulary < Struct.new(
9744
+ :name,
9745
+ :id,
9746
+ :arn,
9747
+ :language_code,
9748
+ :state,
9749
+ :last_modified_time,
9750
+ :failure_reason,
9751
+ :content,
9752
+ :tags)
9753
+ SENSITIVE = []
9754
+ include Aws::Structure
9755
+ end
9756
+
9757
+ # Contains summary information about the custom vocabulary.
9758
+ #
9759
+ # @!attribute [rw] name
9760
+ # A unique name of the custom vocabulary.
9761
+ # @return [String]
9762
+ #
9763
+ # @!attribute [rw] id
9764
+ # The identifier of the custom vocabulary.
9765
+ # @return [String]
9766
+ #
9767
+ # @!attribute [rw] arn
9768
+ # The Amazon Resource Name (ARN) of the custom vocabulary.
9769
+ # @return [String]
9770
+ #
9771
+ # @!attribute [rw] language_code
9772
+ # The language code of the vocabulary entries. For a list of languages
9773
+ # and their corresponding language codes, see [What is Amazon
9774
+ # Transcribe?][1]
9775
+ #
9776
+ #
9777
+ #
9778
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
9779
+ # @return [String]
9780
+ #
9781
+ # @!attribute [rw] state
9782
+ # The current state of the custom vocabulary.
9783
+ # @return [String]
9784
+ #
9785
+ # @!attribute [rw] last_modified_time
9786
+ # The timestamp when the custom vocabulary was last modified.
9787
+ # @return [Time]
9788
+ #
9789
+ # @!attribute [rw] failure_reason
9790
+ # The reason why the custom vocabulary was not created.
9791
+ # @return [String]
9792
+ #
9793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VocabularySummary AWS API Documentation
9794
+ #
9795
+ class VocabularySummary < Struct.new(
9796
+ :name,
9797
+ :id,
9798
+ :arn,
9799
+ :language_code,
9800
+ :state,
9801
+ :last_modified_time,
9802
+ :failure_reason)
9803
+ SENSITIVE = []
9804
+ include Aws::Structure
9805
+ end
9806
+
9257
9807
  # Contains information about the recording configuration settings.
9258
9808
  #
9259
9809
  # @note When making an API call, you may pass VoiceRecordingConfiguration
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.60.0'
51
+ GEM_VERSION = '1.64.0'
52
52
 
53
53
  end