aws-sdk-connect 1.61.0 → 1.62.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +327 -2
- data/lib/aws-sdk-connect/client_api.rb +204 -0
- data/lib/aws-sdk-connect/types.rb +524 -1
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -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
|
#
|
@@ -1842,6 +1885,102 @@ module Aws::Connect
|
|
1842
1885
|
include Aws::Structure
|
1843
1886
|
end
|
1844
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
|
+
|
1845
1984
|
# Contains credentials to use for federation.
|
1846
1985
|
#
|
1847
1986
|
# @!attribute [rw] access_token
|
@@ -1945,6 +2084,42 @@ module Aws::Connect
|
|
1945
2084
|
include Aws::Structure
|
1946
2085
|
end
|
1947
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
|
+
|
1948
2123
|
# @note When making an API call, you may pass DeleteContactFlowModuleRequest
|
1949
2124
|
# data as a hash:
|
1950
2125
|
#
|
@@ -2209,6 +2384,54 @@ module Aws::Connect
|
|
2209
2384
|
include Aws::Structure
|
2210
2385
|
end
|
2211
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
|
+
|
2212
2435
|
# @note When making an API call, you may pass DescribeAgentStatusRequest
|
2213
2436
|
# data as a hash:
|
2214
2437
|
#
|
@@ -2773,6 +2996,47 @@ module Aws::Connect
|
|
2773
2996
|
include Aws::Structure
|
2774
2997
|
end
|
2775
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
|
+
|
2776
3040
|
# Outbound calls to the destination number are not allowed.
|
2777
3041
|
#
|
2778
3042
|
# @!attribute [rw] message
|
@@ -5008,6 +5272,70 @@ module Aws::Connect
|
|
5008
5272
|
include Aws::Structure
|
5009
5273
|
end
|
5010
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
|
+
|
5011
5339
|
# @note When making an API call, you may pass ListHoursOfOperationsRequest
|
5012
5340
|
# data as a hash:
|
5013
5341
|
#
|
@@ -7003,6 +7331,82 @@ module Aws::Connect
|
|
7003
7331
|
include Aws::Structure
|
7004
7332
|
end
|
7005
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
|
+
|
7006
7410
|
# Configuration information of the security key.
|
7007
7411
|
#
|
7008
7412
|
# @!attribute [rw] association_id
|
@@ -7934,7 +8338,7 @@ module Aws::Connect
|
|
7934
8338
|
# @return [String]
|
7935
8339
|
#
|
7936
8340
|
# @!attribute [rw] name
|
7937
|
-
#
|
8341
|
+
# The name of the contact flow.
|
7938
8342
|
# @return [String]
|
7939
8343
|
#
|
7940
8344
|
# @!attribute [rw] description
|
@@ -9272,6 +9676,125 @@ module Aws::Connect
|
|
9272
9676
|
include Aws::Structure
|
9273
9677
|
end
|
9274
9678
|
|
9679
|
+
# Contains information about a custom vocabulary.
|
9680
|
+
#
|
9681
|
+
# @!attribute [rw] name
|
9682
|
+
# A unique name of the custom vocabulary.
|
9683
|
+
# @return [String]
|
9684
|
+
#
|
9685
|
+
# @!attribute [rw] id
|
9686
|
+
# The identifier of the custom vocabulary.
|
9687
|
+
# @return [String]
|
9688
|
+
#
|
9689
|
+
# @!attribute [rw] arn
|
9690
|
+
# The Amazon Resource Name (ARN) of the custom vocabulary.
|
9691
|
+
# @return [String]
|
9692
|
+
#
|
9693
|
+
# @!attribute [rw] language_code
|
9694
|
+
# The language code of the vocabulary entries. For a list of languages
|
9695
|
+
# and their corresponding language codes, see [What is Amazon
|
9696
|
+
# Transcribe?][1]
|
9697
|
+
#
|
9698
|
+
#
|
9699
|
+
#
|
9700
|
+
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
|
9701
|
+
# @return [String]
|
9702
|
+
#
|
9703
|
+
# @!attribute [rw] state
|
9704
|
+
# The current state of the custom vocabulary.
|
9705
|
+
# @return [String]
|
9706
|
+
#
|
9707
|
+
# @!attribute [rw] last_modified_time
|
9708
|
+
# The timestamp when the custom vocabulary was last modified.
|
9709
|
+
# @return [Time]
|
9710
|
+
#
|
9711
|
+
# @!attribute [rw] failure_reason
|
9712
|
+
# The reason why the custom vocabulary was not created.
|
9713
|
+
# @return [String]
|
9714
|
+
#
|
9715
|
+
# @!attribute [rw] content
|
9716
|
+
# The content of the custom vocabulary in plain-text format with a
|
9717
|
+
# table of values. Each row in the table represents a word or a
|
9718
|
+
# phrase, described with `Phrase`, `IPA`, `SoundsLike`, and
|
9719
|
+
# `DisplayAs` fields. Separate the fields with TAB characters. For
|
9720
|
+
# more information, see [Create a custom vocabulary using a table][1].
|
9721
|
+
#
|
9722
|
+
#
|
9723
|
+
#
|
9724
|
+
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html#create-vocabulary-table
|
9725
|
+
# @return [String]
|
9726
|
+
#
|
9727
|
+
# @!attribute [rw] tags
|
9728
|
+
# The tags used to organize, track, or control access for this
|
9729
|
+
# resource.
|
9730
|
+
# @return [Hash<String,String>]
|
9731
|
+
#
|
9732
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Vocabulary AWS API Documentation
|
9733
|
+
#
|
9734
|
+
class Vocabulary < Struct.new(
|
9735
|
+
:name,
|
9736
|
+
:id,
|
9737
|
+
:arn,
|
9738
|
+
:language_code,
|
9739
|
+
:state,
|
9740
|
+
:last_modified_time,
|
9741
|
+
:failure_reason,
|
9742
|
+
:content,
|
9743
|
+
:tags)
|
9744
|
+
SENSITIVE = []
|
9745
|
+
include Aws::Structure
|
9746
|
+
end
|
9747
|
+
|
9748
|
+
# Contains summary information about the custom vocabulary.
|
9749
|
+
#
|
9750
|
+
# @!attribute [rw] name
|
9751
|
+
# A unique name of the custom vocabulary.
|
9752
|
+
# @return [String]
|
9753
|
+
#
|
9754
|
+
# @!attribute [rw] id
|
9755
|
+
# The identifier of the custom vocabulary.
|
9756
|
+
# @return [String]
|
9757
|
+
#
|
9758
|
+
# @!attribute [rw] arn
|
9759
|
+
# The Amazon Resource Name (ARN) of the custom vocabulary.
|
9760
|
+
# @return [String]
|
9761
|
+
#
|
9762
|
+
# @!attribute [rw] language_code
|
9763
|
+
# The language code of the vocabulary entries. For a list of languages
|
9764
|
+
# and their corresponding language codes, see [What is Amazon
|
9765
|
+
# Transcribe?][1]
|
9766
|
+
#
|
9767
|
+
#
|
9768
|
+
#
|
9769
|
+
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html
|
9770
|
+
# @return [String]
|
9771
|
+
#
|
9772
|
+
# @!attribute [rw] state
|
9773
|
+
# The current state of the custom vocabulary.
|
9774
|
+
# @return [String]
|
9775
|
+
#
|
9776
|
+
# @!attribute [rw] last_modified_time
|
9777
|
+
# The timestamp when the custom vocabulary was last modified.
|
9778
|
+
# @return [Time]
|
9779
|
+
#
|
9780
|
+
# @!attribute [rw] failure_reason
|
9781
|
+
# The reason why the custom vocabulary was not created.
|
9782
|
+
# @return [String]
|
9783
|
+
#
|
9784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VocabularySummary AWS API Documentation
|
9785
|
+
#
|
9786
|
+
class VocabularySummary < Struct.new(
|
9787
|
+
:name,
|
9788
|
+
:id,
|
9789
|
+
:arn,
|
9790
|
+
:language_code,
|
9791
|
+
:state,
|
9792
|
+
:last_modified_time,
|
9793
|
+
:failure_reason)
|
9794
|
+
SENSITIVE = []
|
9795
|
+
include Aws::Structure
|
9796
|
+
end
|
9797
|
+
|
9275
9798
|
# Contains information about the recording configuration settings.
|
9276
9799
|
#
|
9277
9800
|
# @note When making an API call, you may pass VoiceRecordingConfiguration
|
data/lib/aws-sdk-connect.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|