aws-sdk-transcribeservice 1.95.0 → 1.97.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd077dc387f2eac5942b0a6528869ce958ab55f6446f587b26fc6fb773c2f174
4
- data.tar.gz: 857085a65fe6e21c5f03adb02852a9a2202b727dad886de0c6065dfc22aa4313
3
+ metadata.gz: 69ac1822f0acd4a23345390d7579f9376e38596dc50989bf2a0da2f5a0e924f2
4
+ data.tar.gz: 6c9a723b5d2ee1746d2844b3fc908c69354d68177d728e300467414c01a7e168
5
5
  SHA512:
6
- metadata.gz: 3f1e948251d3f738f50fdab53e6ae5755c33a6268414aa2717e65e189e655dbd7792215f344c9782bf16de41551c7b6c8f022ea664011593cb5ca6e675fcaab6
7
- data.tar.gz: 8af05a2cf7b7348cf72164f7726a0bf16aecbe06ee995176249cef03677d050bde3c27dabd9a4bb537615baf6d4252aaf5a261c491ea4eab89942647bb1c7159
6
+ metadata.gz: b00f5a63dcc5de2c25b8cd04f70dd53697aea27a3e78571b248b1d6f2eb3e4083a853e7c58bae1945c5512077e7ed7f2d6d1b36d3c111ac8206384aead0c71b9
7
+ data.tar.gz: 698041160f534fdebd59960485f5fb574d5f85406c80cef5b91f348359757328c0fa807796edb65b63e7b344c1665b1b211ff1435fa6a3c710ec64d0cb576c29
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2024-04-29)
5
+ ------------------
6
+
7
+ * Feature - This update provides error messaging for generative call summarization in Transcribe Call Analytics
8
+
9
+ 1.96.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.95.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::TranscribeService
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::TranscribeService
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::TranscribeService
347
356
  # @option options [Aws::TranscribeService::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::TranscribeService::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -1496,6 +1520,10 @@ module Aws::TranscribeService
1496
1520
  #
1497
1521
  # resp.call_analytics_job.call_analytics_job_name #=> String
1498
1522
  # resp.call_analytics_job.call_analytics_job_status #=> String, one of "QUEUED", "IN_PROGRESS", "FAILED", "COMPLETED"
1523
+ # resp.call_analytics_job.call_analytics_job_details.skipped #=> Array
1524
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].feature #=> String, one of "GENERATIVE_SUMMARIZATION"
1525
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].reason_code #=> String, one of "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES"
1526
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].message #=> String
1499
1527
  # resp.call_analytics_job.language_code #=> String, one of "af-ZA", "ar-AE", "ar-SA", "da-DK", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fa-IR", "fr-CA", "fr-FR", "he-IL", "hi-IN", "id-ID", "it-IT", "ja-JP", "ko-KR", "ms-MY", "nl-NL", "pt-BR", "pt-PT", "ru-RU", "ta-IN", "te-IN", "tr-TR", "zh-CN", "zh-TW", "th-TH", "en-ZA", "en-NZ", "vi-VN", "sv-SE", "ab-GE", "ast-ES", "az-AZ", "ba-RU", "be-BY", "bg-BG", "bn-IN", "bs-BA", "ca-ES", "ckb-IQ", "ckb-IR", "cs-CZ", "cy-WL", "el-GR", "et-ET", "eu-ES", "fi-FI", "gl-ES", "gu-IN", "ha-NG", "hr-HR", "hu-HU", "hy-AM", "is-IS", "ka-GE", "kab-DZ", "kk-KZ", "kn-IN", "ky-KG", "lg-IN", "lt-LT", "lv-LV", "mhr-RU", "mi-NZ", "mk-MK", "ml-IN", "mn-MN", "mr-IN", "mt-MT", "no-NO", "or-IN", "pa-IN", "pl-PL", "ps-AF", "ro-RO", "rw-RW", "si-LK", "sk-SK", "sl-SI", "so-SO", "sr-RS", "su-ID", "sw-BI", "sw-KE", "sw-RW", "sw-TZ", "sw-UG", "tl-PH", "tt-RU", "ug-CN", "uk-UA", "uz-UZ", "wo-SN", "zu-ZA"
1500
1528
  # resp.call_analytics_job.media_sample_rate_hertz #=> Integer
1501
1529
  # resp.call_analytics_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac", "ogg", "amr", "webm", "m4a"
@@ -2031,6 +2059,10 @@ module Aws::TranscribeService
2031
2059
  # resp.call_analytics_job_summaries[0].completion_time #=> Time
2032
2060
  # resp.call_analytics_job_summaries[0].language_code #=> String, one of "af-ZA", "ar-AE", "ar-SA", "da-DK", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fa-IR", "fr-CA", "fr-FR", "he-IL", "hi-IN", "id-ID", "it-IT", "ja-JP", "ko-KR", "ms-MY", "nl-NL", "pt-BR", "pt-PT", "ru-RU", "ta-IN", "te-IN", "tr-TR", "zh-CN", "zh-TW", "th-TH", "en-ZA", "en-NZ", "vi-VN", "sv-SE", "ab-GE", "ast-ES", "az-AZ", "ba-RU", "be-BY", "bg-BG", "bn-IN", "bs-BA", "ca-ES", "ckb-IQ", "ckb-IR", "cs-CZ", "cy-WL", "el-GR", "et-ET", "eu-ES", "fi-FI", "gl-ES", "gu-IN", "ha-NG", "hr-HR", "hu-HU", "hy-AM", "is-IS", "ka-GE", "kab-DZ", "kk-KZ", "kn-IN", "ky-KG", "lg-IN", "lt-LT", "lv-LV", "mhr-RU", "mi-NZ", "mk-MK", "ml-IN", "mn-MN", "mr-IN", "mt-MT", "no-NO", "or-IN", "pa-IN", "pl-PL", "ps-AF", "ro-RO", "rw-RW", "si-LK", "sk-SK", "sl-SI", "so-SO", "sr-RS", "su-ID", "sw-BI", "sw-KE", "sw-RW", "sw-TZ", "sw-UG", "tl-PH", "tt-RU", "ug-CN", "uk-UA", "uz-UZ", "wo-SN", "zu-ZA"
2033
2061
  # resp.call_analytics_job_summaries[0].call_analytics_job_status #=> String, one of "QUEUED", "IN_PROGRESS", "FAILED", "COMPLETED"
2062
+ # resp.call_analytics_job_summaries[0].call_analytics_job_details.skipped #=> Array
2063
+ # resp.call_analytics_job_summaries[0].call_analytics_job_details.skipped[0].feature #=> String, one of "GENERATIVE_SUMMARIZATION"
2064
+ # resp.call_analytics_job_summaries[0].call_analytics_job_details.skipped[0].reason_code #=> String, one of "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES"
2065
+ # resp.call_analytics_job_summaries[0].call_analytics_job_details.skipped[0].message #=> String
2034
2066
  # resp.call_analytics_job_summaries[0].failure_reason #=> String
2035
2067
  #
2036
2068
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/ListCallAnalyticsJobs AWS API Documentation
@@ -2782,6 +2814,10 @@ module Aws::TranscribeService
2782
2814
  #
2783
2815
  # resp.call_analytics_job.call_analytics_job_name #=> String
2784
2816
  # resp.call_analytics_job.call_analytics_job_status #=> String, one of "QUEUED", "IN_PROGRESS", "FAILED", "COMPLETED"
2817
+ # resp.call_analytics_job.call_analytics_job_details.skipped #=> Array
2818
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].feature #=> String, one of "GENERATIVE_SUMMARIZATION"
2819
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].reason_code #=> String, one of "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES"
2820
+ # resp.call_analytics_job.call_analytics_job_details.skipped[0].message #=> String
2785
2821
  # resp.call_analytics_job.language_code #=> String, one of "af-ZA", "ar-AE", "ar-SA", "da-DK", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fa-IR", "fr-CA", "fr-FR", "he-IL", "hi-IN", "id-ID", "it-IT", "ja-JP", "ko-KR", "ms-MY", "nl-NL", "pt-BR", "pt-PT", "ru-RU", "ta-IN", "te-IN", "tr-TR", "zh-CN", "zh-TW", "th-TH", "en-ZA", "en-NZ", "vi-VN", "sv-SE", "ab-GE", "ast-ES", "az-AZ", "ba-RU", "be-BY", "bg-BG", "bn-IN", "bs-BA", "ca-ES", "ckb-IQ", "ckb-IR", "cs-CZ", "cy-WL", "el-GR", "et-ET", "eu-ES", "fi-FI", "gl-ES", "gu-IN", "ha-NG", "hr-HR", "hu-HU", "hy-AM", "is-IS", "ka-GE", "kab-DZ", "kk-KZ", "kn-IN", "ky-KG", "lg-IN", "lt-LT", "lv-LV", "mhr-RU", "mi-NZ", "mk-MK", "ml-IN", "mn-MN", "mr-IN", "mt-MT", "no-NO", "or-IN", "pa-IN", "pl-PL", "ps-AF", "ro-RO", "rw-RW", "si-LK", "sk-SK", "sl-SI", "so-SO", "sr-RS", "su-ID", "sw-BI", "sw-KE", "sw-RW", "sw-TZ", "sw-UG", "tl-PH", "tt-RU", "ug-CN", "uk-UA", "uz-UZ", "wo-SN", "zu-ZA"
2786
2822
  # resp.call_analytics_job.media_sample_rate_hertz #=> Integer
2787
2823
  # resp.call_analytics_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac", "ogg", "amr", "webm", "m4a"
@@ -4408,7 +4444,7 @@ module Aws::TranscribeService
4408
4444
  params: params,
4409
4445
  config: config)
4410
4446
  context[:gem_name] = 'aws-sdk-transcribeservice'
4411
- context[:gem_version] = '1.95.0'
4447
+ context[:gem_version] = '1.97.0'
4412
4448
  Seahorse::Client::Request.new(handlers, context)
4413
4449
  end
4414
4450
 
@@ -18,12 +18,17 @@ module Aws::TranscribeService
18
18
  BaseModelName = Shapes::StringShape.new(name: 'BaseModelName')
19
19
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
20
20
  CLMLanguageCode = Shapes::StringShape.new(name: 'CLMLanguageCode')
21
+ CallAnalyticsFeature = Shapes::StringShape.new(name: 'CallAnalyticsFeature')
21
22
  CallAnalyticsJob = Shapes::StructureShape.new(name: 'CallAnalyticsJob')
23
+ CallAnalyticsJobDetails = Shapes::StructureShape.new(name: 'CallAnalyticsJobDetails')
22
24
  CallAnalyticsJobName = Shapes::StringShape.new(name: 'CallAnalyticsJobName')
23
25
  CallAnalyticsJobSettings = Shapes::StructureShape.new(name: 'CallAnalyticsJobSettings')
24
26
  CallAnalyticsJobStatus = Shapes::StringShape.new(name: 'CallAnalyticsJobStatus')
25
27
  CallAnalyticsJobSummaries = Shapes::ListShape.new(name: 'CallAnalyticsJobSummaries')
26
28
  CallAnalyticsJobSummary = Shapes::StructureShape.new(name: 'CallAnalyticsJobSummary')
29
+ CallAnalyticsSkippedFeature = Shapes::StructureShape.new(name: 'CallAnalyticsSkippedFeature')
30
+ CallAnalyticsSkippedFeatureList = Shapes::ListShape.new(name: 'CallAnalyticsSkippedFeatureList')
31
+ CallAnalyticsSkippedReasonCode = Shapes::StringShape.new(name: 'CallAnalyticsSkippedReasonCode')
27
32
  CategoryName = Shapes::StringShape.new(name: 'CategoryName')
28
33
  CategoryProperties = Shapes::StructureShape.new(name: 'CategoryProperties')
29
34
  CategoryPropertiesList = Shapes::ListShape.new(name: 'CategoryPropertiesList')
@@ -234,6 +239,7 @@ module Aws::TranscribeService
234
239
 
235
240
  CallAnalyticsJob.add_member(:call_analytics_job_name, Shapes::ShapeRef.new(shape: CallAnalyticsJobName, location_name: "CallAnalyticsJobName"))
236
241
  CallAnalyticsJob.add_member(:call_analytics_job_status, Shapes::ShapeRef.new(shape: CallAnalyticsJobStatus, location_name: "CallAnalyticsJobStatus"))
242
+ CallAnalyticsJob.add_member(:call_analytics_job_details, Shapes::ShapeRef.new(shape: CallAnalyticsJobDetails, location_name: "CallAnalyticsJobDetails"))
237
243
  CallAnalyticsJob.add_member(:language_code, Shapes::ShapeRef.new(shape: LanguageCode, location_name: "LanguageCode"))
238
244
  CallAnalyticsJob.add_member(:media_sample_rate_hertz, Shapes::ShapeRef.new(shape: MediaSampleRateHertz, location_name: "MediaSampleRateHertz"))
239
245
  CallAnalyticsJob.add_member(:media_format, Shapes::ShapeRef.new(shape: MediaFormat, location_name: "MediaFormat"))
@@ -249,6 +255,9 @@ module Aws::TranscribeService
249
255
  CallAnalyticsJob.add_member(:channel_definitions, Shapes::ShapeRef.new(shape: ChannelDefinitions, location_name: "ChannelDefinitions"))
250
256
  CallAnalyticsJob.struct_class = Types::CallAnalyticsJob
251
257
 
258
+ CallAnalyticsJobDetails.add_member(:skipped, Shapes::ShapeRef.new(shape: CallAnalyticsSkippedFeatureList, location_name: "Skipped"))
259
+ CallAnalyticsJobDetails.struct_class = Types::CallAnalyticsJobDetails
260
+
252
261
  CallAnalyticsJobSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: VocabularyName, location_name: "VocabularyName"))
253
262
  CallAnalyticsJobSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: VocabularyFilterName, location_name: "VocabularyFilterName"))
254
263
  CallAnalyticsJobSettings.add_member(:vocabulary_filter_method, Shapes::ShapeRef.new(shape: VocabularyFilterMethod, location_name: "VocabularyFilterMethod"))
@@ -267,9 +276,17 @@ module Aws::TranscribeService
267
276
  CallAnalyticsJobSummary.add_member(:completion_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CompletionTime"))
268
277
  CallAnalyticsJobSummary.add_member(:language_code, Shapes::ShapeRef.new(shape: LanguageCode, location_name: "LanguageCode"))
269
278
  CallAnalyticsJobSummary.add_member(:call_analytics_job_status, Shapes::ShapeRef.new(shape: CallAnalyticsJobStatus, location_name: "CallAnalyticsJobStatus"))
279
+ CallAnalyticsJobSummary.add_member(:call_analytics_job_details, Shapes::ShapeRef.new(shape: CallAnalyticsJobDetails, location_name: "CallAnalyticsJobDetails"))
270
280
  CallAnalyticsJobSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
271
281
  CallAnalyticsJobSummary.struct_class = Types::CallAnalyticsJobSummary
272
282
 
283
+ CallAnalyticsSkippedFeature.add_member(:feature, Shapes::ShapeRef.new(shape: CallAnalyticsFeature, location_name: "Feature"))
284
+ CallAnalyticsSkippedFeature.add_member(:reason_code, Shapes::ShapeRef.new(shape: CallAnalyticsSkippedReasonCode, location_name: "ReasonCode"))
285
+ CallAnalyticsSkippedFeature.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
286
+ CallAnalyticsSkippedFeature.struct_class = Types::CallAnalyticsSkippedFeature
287
+
288
+ CallAnalyticsSkippedFeatureList.member = Shapes::ShapeRef.new(shape: CallAnalyticsSkippedFeature)
289
+
273
290
  CategoryProperties.add_member(:category_name, Shapes::ShapeRef.new(shape: CategoryName, location_name: "CategoryName"))
274
291
  CategoryProperties.add_member(:rules, Shapes::ShapeRef.new(shape: RuleList, location_name: "Rules"))
275
292
  CategoryProperties.add_member(:create_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreateTime"))
@@ -998,6 +1015,7 @@ module Aws::TranscribeService
998
1015
  "endpointPrefix" => "transcribe",
999
1016
  "jsonVersion" => "1.1",
1000
1017
  "protocol" => "json",
1018
+ "protocols" => ["json"],
1001
1019
  "serviceFullName" => "Amazon Transcribe Service",
1002
1020
  "serviceId" => "Transcribe",
1003
1021
  "signatureVersion" => "v4",
@@ -110,6 +110,11 @@ module Aws::TranscribeService
110
110
  # your transcription job failed.
111
111
  # @return [String]
112
112
  #
113
+ # @!attribute [rw] call_analytics_job_details
114
+ # Provides detailed information about a call analytics job, including
115
+ # information about skipped analytics features.
116
+ # @return [Types::CallAnalyticsJobDetails]
117
+ #
113
118
  # @!attribute [rw] language_code
114
119
  # The language code used to create your Call Analytics job. For a list
115
120
  # of supported languages and their associated language codes, refer to
@@ -247,6 +252,7 @@ module Aws::TranscribeService
247
252
  class CallAnalyticsJob < Struct.new(
248
253
  :call_analytics_job_name,
249
254
  :call_analytics_job_status,
255
+ :call_analytics_job_details,
250
256
  :language_code,
251
257
  :media_sample_rate_hertz,
252
258
  :media_format,
@@ -264,6 +270,25 @@ module Aws::TranscribeService
264
270
  include Aws::Structure
265
271
  end
266
272
 
273
+ # Contains details about a call analytics job, including information
274
+ # about skipped analytics features.
275
+ #
276
+ # @!attribute [rw] skipped
277
+ # Contains information about any skipped analytics features during the
278
+ # analysis of a call analytics job.
279
+ #
280
+ # This array lists all the analytics features that were skipped, along
281
+ # with their corresponding reason code and message.
282
+ # @return [Array<Types::CallAnalyticsSkippedFeature>]
283
+ #
284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/CallAnalyticsJobDetails AWS API Documentation
285
+ #
286
+ class CallAnalyticsJobDetails < Struct.new(
287
+ :skipped)
288
+ SENSITIVE = []
289
+ include Aws::Structure
290
+ end
291
+
267
292
  # Provides additional optional settings for your request, including
268
293
  # content redaction, automatic language identification; allows you to
269
294
  # apply custom language models, custom vocabulary filters, and custom
@@ -437,6 +462,11 @@ module Aws::TranscribeService
437
462
  # your transcription job failed.
438
463
  # @return [String]
439
464
  #
465
+ # @!attribute [rw] call_analytics_job_details
466
+ # Provides detailed information about a call analytics job, including
467
+ # information about skipped analytics features.
468
+ # @return [Types::CallAnalyticsJobDetails]
469
+ #
440
470
  # @!attribute [rw] failure_reason
441
471
  # If `CallAnalyticsJobStatus` is `FAILED`, `FailureReason` contains
442
472
  # information about why the Call Analytics job failed. See also:
@@ -456,11 +486,50 @@ module Aws::TranscribeService
456
486
  :completion_time,
457
487
  :language_code,
458
488
  :call_analytics_job_status,
489
+ :call_analytics_job_details,
459
490
  :failure_reason)
460
491
  SENSITIVE = []
461
492
  include Aws::Structure
462
493
  end
463
494
 
495
+ # Represents a skipped analytics feature during the analysis of a call
496
+ # analytics job.
497
+ #
498
+ # The `Feature` field indicates the type of analytics feature that was
499
+ # skipped.
500
+ #
501
+ # The `Message` field contains additional information or a message
502
+ # explaining why the analytics feature was skipped.
503
+ #
504
+ # The `ReasonCode` field provides a code indicating the reason why the
505
+ # analytics feature was skipped.
506
+ #
507
+ # @!attribute [rw] feature
508
+ # Indicates the type of analytics feature that was skipped during the
509
+ # analysis of a call analytics job.
510
+ # @return [String]
511
+ #
512
+ # @!attribute [rw] reason_code
513
+ # Provides a code indicating the reason why a specific analytics
514
+ # feature was skipped during the analysis of a call analytics job.
515
+ # @return [String]
516
+ #
517
+ # @!attribute [rw] message
518
+ # Contains additional information or a message explaining why a
519
+ # specific analytics feature was skipped during the analysis of a call
520
+ # analytics job.
521
+ # @return [String]
522
+ #
523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/CallAnalyticsSkippedFeature AWS API Documentation
524
+ #
525
+ class CallAnalyticsSkippedFeature < Struct.new(
526
+ :feature,
527
+ :reason_code,
528
+ :message)
529
+ SENSITIVE = []
530
+ include Aws::Structure
531
+ end
532
+
464
533
  # Provides you with the properties of the Call Analytics category you
465
534
  # specified in your request. This includes the list of rules that define
466
535
  # the specified category.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
52
52
  # @!group service
53
53
  module Aws::TranscribeService
54
54
 
55
- GEM_VERSION = '1.95.0'
55
+ GEM_VERSION = '1.97.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -24,6 +24,7 @@ module Aws::TranscribeService
24
24
  class CallAnalyticsJob
25
25
  attr_accessor call_analytics_job_name: ::String
26
26
  attr_accessor call_analytics_job_status: ("QUEUED" | "IN_PROGRESS" | "FAILED" | "COMPLETED")
27
+ attr_accessor call_analytics_job_details: Types::CallAnalyticsJobDetails
27
28
  attr_accessor language_code: ("af-ZA" | "ar-AE" | "ar-SA" | "da-DK" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fa-IR" | "fr-CA" | "fr-FR" | "he-IL" | "hi-IN" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "ms-MY" | "nl-NL" | "pt-BR" | "pt-PT" | "ru-RU" | "ta-IN" | "te-IN" | "tr-TR" | "zh-CN" | "zh-TW" | "th-TH" | "en-ZA" | "en-NZ" | "vi-VN" | "sv-SE" | "ab-GE" | "ast-ES" | "az-AZ" | "ba-RU" | "be-BY" | "bg-BG" | "bn-IN" | "bs-BA" | "ca-ES" | "ckb-IQ" | "ckb-IR" | "cs-CZ" | "cy-WL" | "el-GR" | "et-ET" | "eu-ES" | "fi-FI" | "gl-ES" | "gu-IN" | "ha-NG" | "hr-HR" | "hu-HU" | "hy-AM" | "is-IS" | "ka-GE" | "kab-DZ" | "kk-KZ" | "kn-IN" | "ky-KG" | "lg-IN" | "lt-LT" | "lv-LV" | "mhr-RU" | "mi-NZ" | "mk-MK" | "ml-IN" | "mn-MN" | "mr-IN" | "mt-MT" | "no-NO" | "or-IN" | "pa-IN" | "pl-PL" | "ps-AF" | "ro-RO" | "rw-RW" | "si-LK" | "sk-SK" | "sl-SI" | "so-SO" | "sr-RS" | "su-ID" | "sw-BI" | "sw-KE" | "sw-RW" | "sw-TZ" | "sw-UG" | "tl-PH" | "tt-RU" | "ug-CN" | "uk-UA" | "uz-UZ" | "wo-SN" | "zu-ZA")
28
29
  attr_accessor media_sample_rate_hertz: ::Integer
29
30
  attr_accessor media_format: ("mp3" | "mp4" | "wav" | "flac" | "ogg" | "amr" | "webm" | "m4a")
@@ -40,6 +41,11 @@ module Aws::TranscribeService
40
41
  SENSITIVE: []
41
42
  end
42
43
 
44
+ class CallAnalyticsJobDetails
45
+ attr_accessor skipped: ::Array[Types::CallAnalyticsSkippedFeature]
46
+ SENSITIVE: []
47
+ end
48
+
43
49
  class CallAnalyticsJobSettings
44
50
  attr_accessor vocabulary_name: ::String
45
51
  attr_accessor vocabulary_filter_name: ::String
@@ -59,10 +65,18 @@ module Aws::TranscribeService
59
65
  attr_accessor completion_time: ::Time
60
66
  attr_accessor language_code: ("af-ZA" | "ar-AE" | "ar-SA" | "da-DK" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fa-IR" | "fr-CA" | "fr-FR" | "he-IL" | "hi-IN" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "ms-MY" | "nl-NL" | "pt-BR" | "pt-PT" | "ru-RU" | "ta-IN" | "te-IN" | "tr-TR" | "zh-CN" | "zh-TW" | "th-TH" | "en-ZA" | "en-NZ" | "vi-VN" | "sv-SE" | "ab-GE" | "ast-ES" | "az-AZ" | "ba-RU" | "be-BY" | "bg-BG" | "bn-IN" | "bs-BA" | "ca-ES" | "ckb-IQ" | "ckb-IR" | "cs-CZ" | "cy-WL" | "el-GR" | "et-ET" | "eu-ES" | "fi-FI" | "gl-ES" | "gu-IN" | "ha-NG" | "hr-HR" | "hu-HU" | "hy-AM" | "is-IS" | "ka-GE" | "kab-DZ" | "kk-KZ" | "kn-IN" | "ky-KG" | "lg-IN" | "lt-LT" | "lv-LV" | "mhr-RU" | "mi-NZ" | "mk-MK" | "ml-IN" | "mn-MN" | "mr-IN" | "mt-MT" | "no-NO" | "or-IN" | "pa-IN" | "pl-PL" | "ps-AF" | "ro-RO" | "rw-RW" | "si-LK" | "sk-SK" | "sl-SI" | "so-SO" | "sr-RS" | "su-ID" | "sw-BI" | "sw-KE" | "sw-RW" | "sw-TZ" | "sw-UG" | "tl-PH" | "tt-RU" | "ug-CN" | "uk-UA" | "uz-UZ" | "wo-SN" | "zu-ZA")
61
67
  attr_accessor call_analytics_job_status: ("QUEUED" | "IN_PROGRESS" | "FAILED" | "COMPLETED")
68
+ attr_accessor call_analytics_job_details: Types::CallAnalyticsJobDetails
62
69
  attr_accessor failure_reason: ::String
63
70
  SENSITIVE: []
64
71
  end
65
72
 
73
+ class CallAnalyticsSkippedFeature
74
+ attr_accessor feature: ("GENERATIVE_SUMMARIZATION")
75
+ attr_accessor reason_code: ("INSUFFICIENT_CONVERSATION_CONTENT" | "FAILED_SAFETY_GUIDELINES")
76
+ attr_accessor message: ::String
77
+ SENSITIVE: []
78
+ end
79
+
66
80
  class CategoryProperties
67
81
  attr_accessor category_name: ::String
68
82
  attr_accessor rules: ::Array[Types::Rule]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transcribeservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.95.0
4
+ version: 1.97.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement