aws-sdk-transcribestreamingservice 1.82.0 → 1.84.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: 8ac687caac969ec4b337fad7270f1ff55b3398a168da6a6c00b7c69f1de3c569
4
- data.tar.gz: 1260e426618f85aadad6804695dc1f4d52c0abbb7f507749684cf02c3530be09
3
+ metadata.gz: ec41d245e6d26e6411523b8ded103b0ba70d64cf99c51bdbefa64148c04e723e
4
+ data.tar.gz: 9bf311d4d18f363c05eb5c2df2c022f263165489e444b402b7203376d4bcee74
5
5
  SHA512:
6
- metadata.gz: 5802958939df466ad3864c4501141f57cc17972a0ad0e629d2250c43f138b9de9c33765830c610e045407aed3e8286341d0c6fb653c059aeed487544cf9cdaa9
7
- data.tar.gz: e2a71b80e96f6f9d32cd8be8a26b1d5527c210e819eba54bff6a9c152292106a4d410cdce0d06fbb2c0dd48c790d6541921feb688106bb6d01e8c7e9d9d330e0
6
+ metadata.gz: 82c52d1f645b400f2b42309b4b4df496fbcbb4f0a244ae5a208a7ca224ef6ec6e785004c380abb0dc064c5ba70b4b5eff9ddfd9cad68d2d432b71295b3136016
7
+ data.tar.gz: dc5cce213935862a92802552228b9778ba561b6aec615ee5ac237a783fd86e7152b08bc373de18347fe5c2324b7bc5202b587266a634165ea671a18ae2911f25
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.83.0 (2025-06-04)
10
+ ------------------
11
+
12
+ * Feature - AWS Healthscribe now supports new templates for the clinical note summary: BIRP, SIRP, DAP, BEHAVIORAL_SOAP, and PHYSICAL_SOAP
13
+
4
14
  1.82.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -88,7 +88,7 @@ module Aws::TranscribeStreamingService
88
88
  # class name or an instance of a plugin class.
89
89
  #
90
90
  # @option options [required, Aws::CredentialProvider] :credentials
91
- # Your AWS credentials. This can be an instance of any one of the
91
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
92
92
  # following classes:
93
93
  #
94
94
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -121,18 +121,23 @@ module Aws::TranscribeStreamingService
121
121
  # locations will be searched for credentials:
122
122
  #
123
123
  # * `Aws.config[:credentials]`
124
+ #
124
125
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
125
126
  # `:account_id` options.
126
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
127
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
127
+ #
128
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
129
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
130
+ #
128
131
  # * `~/.aws/credentials`
132
+ #
129
133
  # * `~/.aws/config`
134
+ #
130
135
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
131
136
  # are very aggressive. Construct and pass an instance of
132
137
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
133
138
  # enable retries and extended timeouts. Instance profile credential
134
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
135
- # to true.
139
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
140
+ # to `true`.
136
141
  #
137
142
  # @option options [required, String] :region
138
143
  # The AWS region to connect to. The configured `:region` is
@@ -156,6 +161,11 @@ module Aws::TranscribeStreamingService
156
161
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
157
162
  # not retry instead of sleeping.
158
163
  #
164
+ # @option options [Array<String>] :auth_scheme_preference
165
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
166
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
167
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
168
+ #
159
169
  # @option options [Boolean] :convert_params (true)
160
170
  # When `true`, an attempt is made to coerce request parameters into
161
171
  # the required types.
@@ -213,8 +223,8 @@ module Aws::TranscribeStreamingService
213
223
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
214
224
  #
215
225
  # @option options [String] :profile ("default")
216
- # Used when loading credentials from the shared credentials file
217
- # at HOME/.aws/credentials. When not specified, 'default' is used.
226
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
227
+ # When not specified, 'default' is used.
218
228
  #
219
229
  # @option options [String] :request_checksum_calculation ("when_supported")
220
230
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -327,7 +337,7 @@ module Aws::TranscribeStreamingService
327
337
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
328
338
  #
329
339
  # @option options [Aws::TokenProvider] :token_provider
330
- # A Bearer Token Provider. This can be an instance of any one of the
340
+ # Your Bearer token used for authentication. This can be an instance of any one of the
331
341
  # following classes:
332
342
  #
333
343
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -2083,7 +2093,7 @@ module Aws::TranscribeStreamingService
2083
2093
  tracer: tracer
2084
2094
  )
2085
2095
  context[:gem_name] = 'aws-sdk-transcribestreamingservice'
2086
- context[:gem_version] = '1.82.0'
2096
+ context[:gem_version] = '1.84.0'
2087
2097
  Seahorse::Client::Request.new(handlers, context)
2088
2098
  end
2089
2099
 
@@ -97,7 +97,7 @@ module Aws::TranscribeStreamingService
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials. This can be an instance of any one of the
100
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
101
101
  # following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -130,18 +130,23 @@ module Aws::TranscribeStreamingService
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
+ #
133
134
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
135
  # `:account_id` options.
135
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
136
+ #
137
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
138
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
139
+ #
137
140
  # * `~/.aws/credentials`
141
+ #
138
142
  # * `~/.aws/config`
143
+ #
139
144
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
140
145
  # are very aggressive. Construct and pass an instance of
141
146
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
142
147
  # enable retries and extended timeouts. Instance profile credential
143
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
144
- # to true.
148
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
+ # to `true`.
145
150
  #
146
151
  # @option options [required, String] :region
147
152
  # The AWS region to connect to. The configured `:region` is
@@ -169,6 +174,11 @@ module Aws::TranscribeStreamingService
169
174
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
170
175
  # not retry instead of sleeping.
171
176
  #
177
+ # @option options [Array<String>] :auth_scheme_preference
178
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
179
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
180
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
181
+ #
172
182
  # @option options [Boolean] :client_side_monitoring (false)
173
183
  # When `true`, client-side metrics will be collected for all API requests from
174
184
  # this client.
@@ -264,8 +274,8 @@ module Aws::TranscribeStreamingService
264
274
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
265
275
  #
266
276
  # @option options [String] :profile ("default")
267
- # Used when loading credentials from the shared credentials file
268
- # at HOME/.aws/credentials. When not specified, 'default' is used.
277
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
278
+ # When not specified, 'default' is used.
269
279
  #
270
280
  # @option options [String] :request_checksum_calculation ("when_supported")
271
281
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -378,7 +388,7 @@ module Aws::TranscribeStreamingService
378
388
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
379
389
  #
380
390
  # @option options [Aws::TokenProvider] :token_provider
381
- # A Bearer Token Provider. This can be an instance of any one of the
391
+ # Your Bearer token used for authentication. This can be an instance of any one of the
382
392
  # following classes:
383
393
  #
384
394
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -520,7 +530,7 @@ module Aws::TranscribeStreamingService
520
530
  # resp.medical_scribe_stream_details.encryption_settings.kms_key_id #=> String
521
531
  # resp.medical_scribe_stream_details.stream_status #=> String, one of "IN_PROGRESS", "PAUSED", "FAILED", "COMPLETED"
522
532
  # resp.medical_scribe_stream_details.post_stream_analytics_settings.clinical_note_generation_settings.output_bucket_name #=> String
523
- # resp.medical_scribe_stream_details.post_stream_analytics_settings.clinical_note_generation_settings.note_template #=> String, one of "HISTORY_AND_PHYSICAL", "GIRPP"
533
+ # resp.medical_scribe_stream_details.post_stream_analytics_settings.clinical_note_generation_settings.note_template #=> String, one of "HISTORY_AND_PHYSICAL", "GIRPP", "DAP", "SIRP", "BIRP", "BEHAVIORAL_SOAP", "PHYSICAL_SOAP"
524
534
  # resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.clinical_note_output_location #=> String
525
535
  # resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.transcript_output_location #=> String
526
536
  # resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.status #=> String, one of "IN_PROGRESS", "FAILED", "COMPLETED"
@@ -553,7 +563,7 @@ module Aws::TranscribeStreamingService
553
563
  tracer: tracer
554
564
  )
555
565
  context[:gem_name] = 'aws-sdk-transcribestreamingservice'
556
- context[:gem_version] = '1.82.0'
566
+ context[:gem_version] = '1.84.0'
557
567
  Seahorse::Client::Request.new(handlers, context)
558
568
  end
559
569
 
@@ -353,12 +353,30 @@ module Aws::TranscribeStreamingService
353
353
  # summary. The default is `HISTORY_AND_PHYSICAL`.
354
354
  #
355
355
  # * HISTORY\_AND\_PHYSICAL: Provides summaries for key sections of the
356
- # clinical documentation. Sections include Chief Complaint, History
357
- # of Present Illness, Review of Systems, Past Medical History,
358
- # Assessment, and Plan.
356
+ # clinical documentation. Examples of sections include Chief
357
+ # Complaint, History of Present Illness, Review of Systems, Past
358
+ # Medical History, Assessment, and Plan.
359
359
  #
360
360
  # * GIRPP: Provides summaries based on the patients progress toward
361
- # goals. Sections include Goal, Intervention, Response, Progress,
361
+ # goals. Examples of sections include Goal, Intervention, Response,
362
+ # Progress, and Plan.
363
+ #
364
+ # * BIRP: Focuses on the patient's behavioral patterns and responses.
365
+ # Examples of sections include Behavior, Intervention, Response, and
366
+ # Plan.
367
+ #
368
+ # * SIRP: Emphasizes the situational context of therapy. Examples of
369
+ # sections include Situation, Intervention, Response, and Plan.
370
+ #
371
+ # * DAP: Provides a simplified format for clinical documentation.
372
+ # Examples of sections include Data, Assessment, and Plan.
373
+ #
374
+ # * BEHAVIORAL\_SOAP: Behavioral health focused documentation format.
375
+ # Examples of sections include Subjective, Objective, Assessment,
376
+ # and Plan.
377
+ #
378
+ # * PHYSICAL\_SOAP: Physical health focused documentation format.
379
+ # Examples of sections include Subjective, Objective, Assessment,
362
380
  # and Plan.
363
381
  # @return [String]
364
382
  #
@@ -423,13 +441,13 @@ module Aws::TranscribeStreamingService
423
441
  # stability score, and start and end times.
424
442
  #
425
443
  # @!attribute [rw] start_time
426
- # The start time, in milliseconds, of the utterance that was
427
- # identified as PII.
444
+ # The start time of the utterance that was identified as PII in
445
+ # seconds, with millisecond precision (e.g., 1.056)
428
446
  # @return [Float]
429
447
  #
430
448
  # @!attribute [rw] end_time
431
- # The end time, in milliseconds, of the utterance that was identified
432
- # as PII.
449
+ # The end time of the utterance that was identified as PII in seconds,
450
+ # with millisecond precision (e.g., 1.056)
433
451
  # @return [Float]
434
452
  #
435
453
  # @!attribute [rw] category
@@ -527,11 +545,13 @@ module Aws::TranscribeStreamingService
527
545
  # type, and start and end times.
528
546
  #
529
547
  # @!attribute [rw] start_time
530
- # The start time, in milliseconds, of the transcribed item.
548
+ # The start time of the transcribed item in seconds, with millisecond
549
+ # precision (e.g., 1.056)
531
550
  # @return [Float]
532
551
  #
533
552
  # @!attribute [rw] end_time
534
- # The end time, in milliseconds, of the transcribed item.
553
+ # The end time of the transcribed item in seconds, with millisecond
554
+ # precision (e.g., 1.056)
535
555
  # @return [Float]
536
556
  #
537
557
  # @!attribute [rw] type
@@ -659,13 +679,13 @@ module Aws::TranscribeStreamingService
659
679
  # and start and end times.
660
680
  #
661
681
  # @!attribute [rw] start_time
662
- # The start time, in milliseconds, of the utterance that was
663
- # identified as PHI.
682
+ # The start time, in seconds, of the utterance that was identified as
683
+ # PHI.
664
684
  # @return [Float]
665
685
  #
666
686
  # @!attribute [rw] end_time
667
- # The end time, in milliseconds, of the utterance that was identified
668
- # as PHI.
687
+ # The end time, in seconds, of the utterance that was identified as
688
+ # PHI.
669
689
  # @return [Float]
670
690
  #
671
691
  # @!attribute [rw] category
@@ -702,11 +722,11 @@ module Aws::TranscribeStreamingService
702
722
  # type, and start and end times.
703
723
  #
704
724
  # @!attribute [rw] start_time
705
- # The start time, in milliseconds, of the transcribed item.
725
+ # The start time, in seconds, of the transcribed item.
706
726
  # @return [Float]
707
727
  #
708
728
  # @!attribute [rw] end_time
709
- # The end time, in milliseconds, of the transcribed item.
729
+ # The end time, in seconds, of the transcribed item.
710
730
  # @return [Float]
711
731
  #
712
732
  # @!attribute [rw] type
@@ -758,11 +778,11 @@ module Aws::TranscribeStreamingService
758
778
  # @return [String]
759
779
  #
760
780
  # @!attribute [rw] start_time
761
- # The start time, in milliseconds, of the `Result`.
781
+ # The start time, in seconds, of the `Result`.
762
782
  # @return [Float]
763
783
  #
764
784
  # @!attribute [rw] end_time
765
- # The end time, in milliseconds, of the `Result`.
785
+ # The end time, in seconds, of the `Result`.
766
786
  # @return [Float]
767
787
  #
768
788
  # @!attribute [rw] is_partial
@@ -1490,11 +1510,13 @@ module Aws::TranscribeStreamingService
1490
1510
  # @return [String]
1491
1511
  #
1492
1512
  # @!attribute [rw] start_time
1493
- # The start time, in milliseconds, of the `Result`.
1513
+ # The start time of the `Result` in seconds, with millisecond
1514
+ # precision (e.g., 1.056).
1494
1515
  # @return [Float]
1495
1516
  #
1496
1517
  # @!attribute [rw] end_time
1497
- # The end time, in milliseconds, of the `Result`.
1518
+ # The end time of the `Result` in seconds, with millisecond precision
1519
+ # (e.g., 1.056).
1498
1520
  # @return [Float]
1499
1521
  #
1500
1522
  # @!attribute [rw] is_partial
@@ -56,7 +56,7 @@ module Aws::TranscribeStreamingService
56
56
  autoload :AsyncClient, 'aws-sdk-transcribestreamingservice/async_client'
57
57
  autoload :EventStreams, 'aws-sdk-transcribestreamingservice/event_streams'
58
58
 
59
- GEM_VERSION = '1.82.0'
59
+ GEM_VERSION = '1.84.0'
60
60
 
61
61
  end
62
62
 
data/sig/async_client.rbs CHANGED
@@ -17,6 +17,7 @@ module Aws
17
17
  ?access_key_id: String,
18
18
  ?account_id: String,
19
19
  ?adaptive_retry_wait_to_fill: bool,
20
+ ?auth_scheme_preference: Array[String],
20
21
  ?convert_params: bool,
21
22
  ?correct_clock_skew: bool,
22
23
  ?defaults_mode: String,
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -77,7 +77,7 @@ module Aws::TranscribeStreamingService
77
77
 
78
78
  class ClinicalNoteGenerationSettings
79
79
  attr_accessor output_bucket_name: ::String
80
- attr_accessor note_template: ("HISTORY_AND_PHYSICAL" | "GIRPP")
80
+ attr_accessor note_template: ("HISTORY_AND_PHYSICAL" | "GIRPP" | "DAP" | "SIRP" | "BIRP" | "BEHAVIORAL_SOAP" | "PHYSICAL_SOAP")
81
81
  SENSITIVE: []
82
82
  end
83
83
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transcribestreamingservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement