aws-sdk-chime 1.70.0 → 1.72.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +66 -34
- data/lib/aws-sdk-chime/client_api.rb +8 -1
- data/lib/aws-sdk-chime/endpoint_provider.rb +18 -36
- data/lib/aws-sdk-chime/types.rb +200 -46
- data/lib/aws-sdk-chime.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52ff881f9c52281d82ff5560abdb37d140ce9292d83d4b649636cca03cf113df
|
|
4
|
+
data.tar.gz: b41b16549484ee89aa2e278ff00c1c25cc2fca8631ac97040e6c2ad6bd51f237
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c80c4b56e92c249035a0929ce32e06c92ffe2da5bbd800d9785ee2d4a13619014b9cfaecd83ff22a070efe213e83ca47ee1ba500f1b676b3c40f997c6482e04d
|
|
7
|
+
data.tar.gz: eb492102ae542af86f2d3de779dbaea9db8178a98100fc18121577736942b98115bd827c6fcd8dd8c5110e6411cebd5f0d209574216d6c5962641f1a5ec4b14f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.72.0 (2023-05-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.71.0 (2023-04-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for Hindi and Thai languages and additional Amazon Transcribe parameters to the StartMeetingTranscription API.
|
|
13
|
+
|
|
4
14
|
1.70.0 (2023-01-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.72.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
|
@@ -275,6 +275,11 @@ module Aws::Chime
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -517,11 +522,11 @@ module Aws::Chime
|
|
|
517
522
|
|
|
518
523
|
# Creates up to 100 new attendees for an active Amazon Chime SDK
|
|
519
524
|
# meeting. For more information about the Amazon Chime SDK, see [Using
|
|
520
|
-
# the Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
|
525
|
+
# the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
|
|
521
526
|
#
|
|
522
527
|
#
|
|
523
528
|
#
|
|
524
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
529
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
525
530
|
#
|
|
526
531
|
# @option params [required, String] :meeting_id
|
|
527
532
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -1106,11 +1111,11 @@ module Aws::Chime
|
|
|
1106
1111
|
|
|
1107
1112
|
# Creates a new attendee for an active Amazon Chime SDK meeting. For
|
|
1108
1113
|
# more information about the Amazon Chime SDK, see [Using the Amazon
|
|
1109
|
-
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
|
1114
|
+
# Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
|
|
1110
1115
|
#
|
|
1111
1116
|
#
|
|
1112
1117
|
#
|
|
1113
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
1118
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
1114
1119
|
#
|
|
1115
1120
|
# @option params [required, String] :meeting_id
|
|
1116
1121
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -1200,7 +1205,7 @@ module Aws::Chime
|
|
|
1200
1205
|
|
|
1201
1206
|
# Creates a channel to which you can add users and send messages.
|
|
1202
1207
|
#
|
|
1203
|
-
# **Restriction
|
|
1208
|
+
# **Restriction**: You can't change a channel's privacy.
|
|
1204
1209
|
#
|
|
1205
1210
|
# <note markdown="1"> The `x-amz-chime-bearer` request header is mandatory. Use the
|
|
1206
1211
|
# `AppInstanceUserArn` of the user that makes the API call as the value
|
|
@@ -1469,7 +1474,9 @@ module Aws::Chime
|
|
|
1469
1474
|
# The ARN of the sink type.
|
|
1470
1475
|
#
|
|
1471
1476
|
# @option params [String] :client_request_token
|
|
1472
|
-
# The
|
|
1477
|
+
# The unique identifier for the client request. The token makes the API
|
|
1478
|
+
# request idempotent. Use a different token for different media pipeline
|
|
1479
|
+
# requests.
|
|
1473
1480
|
#
|
|
1474
1481
|
# **A suitable default value is auto-generated.** You should normally
|
|
1475
1482
|
# not need to pass this option.**
|
|
@@ -1545,14 +1552,14 @@ module Aws::Chime
|
|
|
1545
1552
|
# Creates a new Amazon Chime SDK meeting in the specified media Region
|
|
1546
1553
|
# with no initial attendees. For more information about specifying media
|
|
1547
1554
|
# Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
|
|
1548
|
-
# Developer Guide* . For more information about the Amazon Chime
|
|
1549
|
-
# see [Using the Amazon Chime SDK][2] in the *Amazon Chime
|
|
1550
|
-
# Guide* .
|
|
1555
|
+
# SDK Developer Guide* . For more information about the Amazon Chime
|
|
1556
|
+
# SDK, see [Using the Amazon Chime SDK][2] in the *Amazon Chime SDK
|
|
1557
|
+
# Developer Guide* .
|
|
1551
1558
|
#
|
|
1552
1559
|
#
|
|
1553
1560
|
#
|
|
1554
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html
|
|
1555
|
-
# [2]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
1561
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
|
|
1562
|
+
# [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
1556
1563
|
#
|
|
1557
1564
|
# @option params [required, String] :client_request_token
|
|
1558
1565
|
# The unique identifier for the client request. Use a different token
|
|
@@ -1684,14 +1691,15 @@ module Aws::Chime
|
|
|
1684
1691
|
|
|
1685
1692
|
# Creates a new Amazon Chime SDK meeting in the specified media Region,
|
|
1686
1693
|
# with attendees. For more information about specifying media Regions,
|
|
1687
|
-
# see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
|
|
1688
|
-
# Guide* . For more information about the Amazon Chime SDK,
|
|
1689
|
-
# the Amazon Chime SDK][2] in the *Amazon Chime Developer
|
|
1694
|
+
# see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime SDK
|
|
1695
|
+
# Developer Guide* . For more information about the Amazon Chime SDK,
|
|
1696
|
+
# see [Using the Amazon Chime SDK][2] in the *Amazon Chime SDK Developer
|
|
1697
|
+
# Guide* .
|
|
1690
1698
|
#
|
|
1691
1699
|
#
|
|
1692
1700
|
#
|
|
1693
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html
|
|
1694
|
-
# [2]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
1701
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
|
|
1702
|
+
# [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
1695
1703
|
#
|
|
1696
1704
|
# @option params [required, String] :client_request_token
|
|
1697
1705
|
# The unique identifier for the client request. Use a different token
|
|
@@ -1722,7 +1730,7 @@ module Aws::Chime
|
|
|
1722
1730
|
# The resource target configurations for receiving Amazon Chime SDK
|
|
1723
1731
|
# meeting and attendee event notifications. The Amazon Chime SDK
|
|
1724
1732
|
# supports resource targets located in the US East (N. Virginia) AWS
|
|
1725
|
-
# Region (
|
|
1733
|
+
# Region (us-east-1).
|
|
1726
1734
|
#
|
|
1727
1735
|
# @option params [Array<Types::CreateAttendeeRequestItem>] :attendees
|
|
1728
1736
|
# The request containing the attendees to create.
|
|
@@ -2459,11 +2467,11 @@ module Aws::Chime
|
|
|
2459
2467
|
# deletes their `JoinToken`. Attendees are automatically deleted when a
|
|
2460
2468
|
# Amazon Chime SDK meeting is deleted. For more information about the
|
|
2461
2469
|
# Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the *Amazon
|
|
2462
|
-
# Chime Developer Guide*.
|
|
2470
|
+
# Chime SDK Developer Guide*.
|
|
2463
2471
|
#
|
|
2464
2472
|
#
|
|
2465
2473
|
#
|
|
2466
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
2474
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
2467
2475
|
#
|
|
2468
2476
|
# @option params [required, String] :meeting_id
|
|
2469
2477
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -2720,12 +2728,12 @@ module Aws::Chime
|
|
|
2720
2728
|
# Deletes the specified Amazon Chime SDK meeting. The operation deletes
|
|
2721
2729
|
# all attendees, disconnects all clients, and prevents new clients from
|
|
2722
2730
|
# joining the meeting. For more information about the Amazon Chime SDK,
|
|
2723
|
-
# see [Using the Amazon Chime SDK][1] in the *Amazon Chime Developer
|
|
2731
|
+
# see [Using the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer
|
|
2724
2732
|
# Guide*.
|
|
2725
2733
|
#
|
|
2726
2734
|
#
|
|
2727
2735
|
#
|
|
2728
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
2736
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
2729
2737
|
#
|
|
2730
2738
|
# @option params [required, String] :meeting_id
|
|
2731
2739
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -3757,12 +3765,12 @@ module Aws::Chime
|
|
|
3757
3765
|
|
|
3758
3766
|
# Gets the Amazon Chime SDK attendee details for a specified meeting ID
|
|
3759
3767
|
# and attendee ID. For more information about the Amazon Chime SDK, see
|
|
3760
|
-
# [Using the Amazon Chime SDK][1] in the *Amazon Chime Developer
|
|
3761
|
-
# .
|
|
3768
|
+
# [Using the Amazon Chime SDK][1] in the *Amazon Chime SDK Developer
|
|
3769
|
+
# Guide* .
|
|
3762
3770
|
#
|
|
3763
3771
|
#
|
|
3764
3772
|
#
|
|
3765
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
3773
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
3766
3774
|
#
|
|
3767
3775
|
# @option params [required, String] :meeting_id
|
|
3768
3776
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -3994,11 +4002,11 @@ module Aws::Chime
|
|
|
3994
4002
|
|
|
3995
4003
|
# Gets the Amazon Chime SDK meeting details for the specified meeting
|
|
3996
4004
|
# ID. For more information about the Amazon Chime SDK, see [Using the
|
|
3997
|
-
# Amazon Chime SDK][1] in the *Amazon Chime Developer Guide* .
|
|
4005
|
+
# Amazon Chime SDK][1] in the *Amazon Chime SDK Developer Guide* .
|
|
3998
4006
|
#
|
|
3999
4007
|
#
|
|
4000
4008
|
#
|
|
4001
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
4009
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
4002
4010
|
#
|
|
4003
4011
|
# @option params [required, String] :meeting_id
|
|
4004
4012
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -5047,11 +5055,11 @@ module Aws::Chime
|
|
|
5047
5055
|
|
|
5048
5056
|
# Lists the attendees for the specified Amazon Chime SDK meeting. For
|
|
5049
5057
|
# more information about the Amazon Chime SDK, see [Using the Amazon
|
|
5050
|
-
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
|
5058
|
+
# Chime SDK][1] in the *Amazon Chime SDK Developer Guide*.
|
|
5051
5059
|
#
|
|
5052
5060
|
#
|
|
5053
5061
|
#
|
|
5054
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
5062
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
5055
5063
|
#
|
|
5056
5064
|
# @option params [required, String] :meeting_id
|
|
5057
5065
|
# The Amazon Chime SDK meeting ID.
|
|
@@ -5676,11 +5684,11 @@ module Aws::Chime
|
|
|
5676
5684
|
|
|
5677
5685
|
# Lists up to 100 active Amazon Chime SDK meetings. For more information
|
|
5678
5686
|
# about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
|
|
5679
|
-
# *Amazon Chime Developer Guide*.
|
|
5687
|
+
# *Amazon Chime SDK Developer Guide*.
|
|
5680
5688
|
#
|
|
5681
5689
|
#
|
|
5682
5690
|
#
|
|
5683
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
|
5691
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
|
5684
5692
|
#
|
|
5685
5693
|
# @option params [String] :next_token
|
|
5686
5694
|
# The token to use to retrieve the next page of results.
|
|
@@ -7301,7 +7309,26 @@ module Aws::Chime
|
|
|
7301
7309
|
req.send_request(options)
|
|
7302
7310
|
end
|
|
7303
7311
|
|
|
7304
|
-
# Starts transcription for the specified `meetingId`.
|
|
7312
|
+
# Starts transcription for the specified `meetingId`. For more
|
|
7313
|
+
# information, refer to [ Using Amazon Chime SDK live transcription ][1]
|
|
7314
|
+
# in the *Amazon Chime SDK Developer Guide*.
|
|
7315
|
+
#
|
|
7316
|
+
# If you specify an invalid configuration, a `TranscriptFailed` event
|
|
7317
|
+
# will be sent with the contents of the `BadRequestException` generated
|
|
7318
|
+
# by Amazon Transcribe. For more information on each parameter and which
|
|
7319
|
+
# combinations are valid, refer to the [StartStreamTranscription][2] API
|
|
7320
|
+
# in the *Amazon Transcribe Developer Guide*.
|
|
7321
|
+
#
|
|
7322
|
+
# Amazon Chime SDK live transcription is powered by Amazon Transcribe.
|
|
7323
|
+
# Use of Amazon Transcribe is subject to the [AWS Service Terms][3],
|
|
7324
|
+
# including the terms specific to the AWS Machine Learning and
|
|
7325
|
+
# Artificial Intelligence Services.
|
|
7326
|
+
#
|
|
7327
|
+
#
|
|
7328
|
+
#
|
|
7329
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html
|
|
7330
|
+
# [2]: https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html
|
|
7331
|
+
# [3]: https://aws.amazon.com/service-terms/
|
|
7305
7332
|
#
|
|
7306
7333
|
# @option params [required, String] :meeting_id
|
|
7307
7334
|
# The unique ID of the meeting being transcribed.
|
|
@@ -7319,7 +7346,7 @@ module Aws::Chime
|
|
|
7319
7346
|
# meeting_id: "GuidString", # required
|
|
7320
7347
|
# transcription_configuration: { # required
|
|
7321
7348
|
# engine_transcribe_settings: {
|
|
7322
|
-
# language_code: "en-US", #
|
|
7349
|
+
# language_code: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN, th-TH, hi-IN
|
|
7323
7350
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
|
7324
7351
|
# vocabulary_filter_name: "String",
|
|
7325
7352
|
# vocabulary_name: "String",
|
|
@@ -7330,6 +7357,11 @@ module Aws::Chime
|
|
|
7330
7357
|
# content_redaction_type: "PII", # accepts PII
|
|
7331
7358
|
# pii_entity_types: "TranscribePiiEntityTypes",
|
|
7332
7359
|
# language_model_name: "TranscribeLanguageModelName",
|
|
7360
|
+
# identify_language: false,
|
|
7361
|
+
# language_options: "TranscribeLanguageOptions",
|
|
7362
|
+
# preferred_language: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN, th-TH, hi-IN
|
|
7363
|
+
# vocabulary_names: "TranscribeVocabularyNamesOrFilterNamesString",
|
|
7364
|
+
# vocabulary_filter_names: "TranscribeVocabularyNamesOrFilterNamesString",
|
|
7333
7365
|
# },
|
|
7334
7366
|
# engine_transcribe_medical_settings: {
|
|
7335
7367
|
# language_code: "en-US", # required, accepts en-US
|
|
@@ -7760,7 +7792,7 @@ module Aws::Chime
|
|
|
7760
7792
|
|
|
7761
7793
|
# Update a channel's attributes.
|
|
7762
7794
|
#
|
|
7763
|
-
# **Restriction
|
|
7795
|
+
# **Restriction**: You can't change a channel's privacy.
|
|
7764
7796
|
#
|
|
7765
7797
|
# <note markdown="1"> The `x-amz-chime-bearer` request header is mandatory. Use the
|
|
7766
7798
|
# `AppInstanceUserArn` of the user that makes the API call as the value
|
|
@@ -8600,7 +8632,7 @@ module Aws::Chime
|
|
|
8600
8632
|
params: params,
|
|
8601
8633
|
config: config)
|
|
8602
8634
|
context[:gem_name] = 'aws-sdk-chime'
|
|
8603
|
-
context[:gem_version] = '1.
|
|
8635
|
+
context[:gem_version] = '1.72.0'
|
|
8604
8636
|
Seahorse::Client::Request.new(handlers, context)
|
|
8605
8637
|
end
|
|
8606
8638
|
|
|
@@ -569,6 +569,7 @@ module Aws::Chime
|
|
|
569
569
|
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
|
570
570
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
|
571
571
|
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
|
572
|
+
TranscribeLanguageOptions = Shapes::StringShape.new(name: 'TranscribeLanguageOptions')
|
|
572
573
|
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
|
573
574
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
|
574
575
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
|
@@ -578,6 +579,7 @@ module Aws::Chime
|
|
|
578
579
|
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
|
579
580
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
|
580
581
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
|
582
|
+
TranscribeVocabularyNamesOrFilterNamesString = Shapes::StringShape.new(name: 'TranscribeVocabularyNamesOrFilterNamesString')
|
|
581
583
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
|
582
584
|
UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
|
|
583
585
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
|
@@ -1474,7 +1476,7 @@ module Aws::Chime
|
|
|
1474
1476
|
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
|
1475
1477
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
|
1476
1478
|
|
|
1477
|
-
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode,
|
|
1479
|
+
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, location_name: "LanguageCode"))
|
|
1478
1480
|
EngineTranscribeSettings.add_member(:vocabulary_filter_method, Shapes::ShapeRef.new(shape: TranscribeVocabularyFilterMethod, location_name: "VocabularyFilterMethod"))
|
|
1479
1481
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
|
1480
1482
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
|
@@ -1485,6 +1487,11 @@ module Aws::Chime
|
|
|
1485
1487
|
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
|
1486
1488
|
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
|
1487
1489
|
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
|
1490
|
+
EngineTranscribeSettings.add_member(:identify_language, Shapes::ShapeRef.new(shape: Boolean, location_name: "IdentifyLanguage"))
|
|
1491
|
+
EngineTranscribeSettings.add_member(:language_options, Shapes::ShapeRef.new(shape: TranscribeLanguageOptions, location_name: "LanguageOptions"))
|
|
1492
|
+
EngineTranscribeSettings.add_member(:preferred_language, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, location_name: "PreferredLanguage"))
|
|
1493
|
+
EngineTranscribeSettings.add_member(:vocabulary_names, Shapes::ShapeRef.new(shape: TranscribeVocabularyNamesOrFilterNamesString, location_name: "VocabularyNames"))
|
|
1494
|
+
EngineTranscribeSettings.add_member(:vocabulary_filter_names, Shapes::ShapeRef.new(shape: TranscribeVocabularyNamesOrFilterNamesString, location_name: "VocabularyFilterNames"))
|
|
1488
1495
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
|
1489
1496
|
|
|
1490
1497
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
|
@@ -14,60 +14,42 @@ module Aws::Chime
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.
|
|
19
|
-
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
26
20
|
end
|
|
27
|
-
if Aws::Endpoints::Matchers.
|
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
23
|
+
end
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://chime.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"chime", "signingRegion"=>"us-east-1"}]})
|
|
30
|
+
end
|
|
28
31
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
32
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}
|
|
33
|
+
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
31
34
|
end
|
|
32
35
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
36
|
end
|
|
34
37
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
38
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
36
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}
|
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
40
|
end
|
|
38
41
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
39
42
|
end
|
|
40
43
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
41
44
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime.#{region}
|
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://chime.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
43
46
|
end
|
|
44
47
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
45
48
|
end
|
|
46
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime
|
|
47
|
-
end
|
|
48
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
49
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
50
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
51
|
-
end
|
|
52
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
53
|
-
end
|
|
54
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
55
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
56
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
57
|
-
end
|
|
58
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
59
|
-
end
|
|
60
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
61
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
62
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
63
|
-
end
|
|
64
|
-
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
65
|
-
end
|
|
66
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
|
|
67
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"chime", "signingRegion"=>"us-east-1"}]})
|
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://chime.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
68
50
|
end
|
|
69
|
-
return Aws::Endpoints::Endpoint.new(url: "https://chime.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
70
51
|
end
|
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
71
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
72
54
|
|
|
73
55
|
end
|
data/lib/aws-sdk-chime/types.rb
CHANGED
|
@@ -1463,7 +1463,7 @@ module Aws::Chime
|
|
|
1463
1463
|
# `ChimeSdkMeeting`.
|
|
1464
1464
|
#
|
|
1465
1465
|
# @!attribute [rw] source_configuration
|
|
1466
|
-
# The source configuration for a specified media capture
|
|
1466
|
+
# The source configuration for a specified media capture pipeline.
|
|
1467
1467
|
# @return [Types::SourceConfiguration]
|
|
1468
1468
|
#
|
|
1469
1469
|
# @!attribute [rw] artifacts_configuration
|
|
@@ -2013,7 +2013,9 @@ module Aws::Chime
|
|
|
2013
2013
|
# @return [String]
|
|
2014
2014
|
#
|
|
2015
2015
|
# @!attribute [rw] client_request_token
|
|
2016
|
-
# The
|
|
2016
|
+
# The unique identifier for the client request. The token makes the
|
|
2017
|
+
# API request idempotent. Use a different token for different media
|
|
2018
|
+
# pipeline requests.
|
|
2017
2019
|
#
|
|
2018
2020
|
# **A suitable default value is auto-generated.** You should normally
|
|
2019
2021
|
# not need to pass this option.
|
|
@@ -2190,7 +2192,7 @@ module Aws::Chime
|
|
|
2190
2192
|
# The resource target configurations for receiving Amazon Chime SDK
|
|
2191
2193
|
# meeting and attendee event notifications. The Amazon Chime SDK
|
|
2192
2194
|
# supports resource targets located in the US East (N. Virginia) AWS
|
|
2193
|
-
# Region (
|
|
2195
|
+
# Region (us-east-1).
|
|
2194
2196
|
# @return [Types::MeetingNotificationConfiguration]
|
|
2195
2197
|
#
|
|
2196
2198
|
# @!attribute [rw] attendees
|
|
@@ -3534,8 +3536,12 @@ module Aws::Chime
|
|
|
3534
3536
|
# @return [String]
|
|
3535
3537
|
#
|
|
3536
3538
|
# @!attribute [rw] content_identification_type
|
|
3537
|
-
#
|
|
3538
|
-
#
|
|
3539
|
+
# Labels all personally identifiable information (PII) identified in
|
|
3540
|
+
# your transcript. If you don't include `PiiEntityTypes`, all PII is
|
|
3541
|
+
# identified.
|
|
3542
|
+
#
|
|
3543
|
+
# You can’t set `ContentIdentificationType` and
|
|
3544
|
+
# `ContentRedactionType`.
|
|
3539
3545
|
# @return [String]
|
|
3540
3546
|
#
|
|
3541
3547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
|
|
@@ -3551,68 +3557,213 @@ module Aws::Chime
|
|
|
3551
3557
|
include Aws::Structure
|
|
3552
3558
|
end
|
|
3553
3559
|
|
|
3554
|
-
# Settings specific
|
|
3560
|
+
# Settings specific for Amazon Transcribe as the live transcription
|
|
3561
|
+
# engine.
|
|
3562
|
+
#
|
|
3563
|
+
# If you specify an invalid combination of parameters, a
|
|
3564
|
+
# `TranscriptFailed` event will be sent with the contents of the
|
|
3565
|
+
# `BadRequestException` generated by Amazon Transcribe. For more
|
|
3566
|
+
# information on each parameter and which combinations are valid, refer
|
|
3567
|
+
# to the [StartStreamTranscription][1] API in the *Amazon Transcribe
|
|
3568
|
+
# Developer Guide*.
|
|
3569
|
+
#
|
|
3570
|
+
#
|
|
3571
|
+
#
|
|
3572
|
+
# [1]: https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html
|
|
3555
3573
|
#
|
|
3556
3574
|
# @!attribute [rw] language_code
|
|
3557
|
-
#
|
|
3575
|
+
# Specify the language code that represents the language spoken.
|
|
3576
|
+
#
|
|
3577
|
+
# If you're unsure of the language spoken in your audio, consider
|
|
3578
|
+
# using `IdentifyLanguage` to enable automatic language
|
|
3579
|
+
# identification.
|
|
3558
3580
|
# @return [String]
|
|
3559
3581
|
#
|
|
3560
3582
|
# @!attribute [rw] vocabulary_filter_method
|
|
3561
|
-
#
|
|
3583
|
+
# Specify how you want your vocabulary filter applied to your
|
|
3584
|
+
# transcript.
|
|
3585
|
+
#
|
|
3586
|
+
# To replace words with `***`, choose `mask`.
|
|
3587
|
+
#
|
|
3588
|
+
# To delete words, choose `remove`.
|
|
3589
|
+
#
|
|
3590
|
+
# To flag words without changing them, choose `tag`.
|
|
3562
3591
|
# @return [String]
|
|
3563
3592
|
#
|
|
3564
3593
|
# @!attribute [rw] vocabulary_filter_name
|
|
3565
|
-
#
|
|
3594
|
+
# Specify the name of the custom vocabulary filter that you want to
|
|
3595
|
+
# use when processing your transcription. Note that vocabulary filter
|
|
3596
|
+
# names are case sensitive.
|
|
3597
|
+
#
|
|
3598
|
+
# If you use Amazon Transcribe in multiple Regions, the vocabulary
|
|
3599
|
+
# filter must be available in Amazon Transcribe in each Region.
|
|
3600
|
+
#
|
|
3601
|
+
# If you include `IdentifyLanguage` and want to use one or more
|
|
3602
|
+
# vocabulary filters with your transcription, use the
|
|
3603
|
+
# `VocabularyFilterNames` parameter instead.
|
|
3566
3604
|
# @return [String]
|
|
3567
3605
|
#
|
|
3568
3606
|
# @!attribute [rw] vocabulary_name
|
|
3569
|
-
#
|
|
3607
|
+
# Specify the name of the custom vocabulary that you want to use when
|
|
3608
|
+
# processing your transcription. Note that vocabulary names are case
|
|
3609
|
+
# sensitive.
|
|
3610
|
+
#
|
|
3611
|
+
# If you use Amazon Transcribe multiple Regions, the vocabulary must
|
|
3612
|
+
# be available in Amazon Transcribe in each Region.
|
|
3613
|
+
#
|
|
3614
|
+
# If you include `IdentifyLanguage` and want to use one or more custom
|
|
3615
|
+
# vocabularies with your transcription, use the `VocabularyNames`
|
|
3616
|
+
# parameter instead.
|
|
3570
3617
|
# @return [String]
|
|
3571
3618
|
#
|
|
3572
3619
|
# @!attribute [rw] region
|
|
3573
|
-
# The AWS Region
|
|
3574
|
-
#
|
|
3620
|
+
# The AWS Region in which to use Amazon Transcribe.
|
|
3621
|
+
#
|
|
3622
|
+
# If you don't specify a Region, then the `MediaRegion` parameter of
|
|
3623
|
+
# the [CreateMeeting.html][1] API will be used. However, if Amazon
|
|
3624
|
+
# Transcribe is not available in the `MediaRegion`, then a
|
|
3625
|
+
# TranscriptFailed event is sent.
|
|
3626
|
+
#
|
|
3627
|
+
# Use `auto` to use Amazon Transcribe in a Region near the meeting’s
|
|
3628
|
+
# `MediaRegion`. For more information, refer to [Choosing a
|
|
3629
|
+
# transcription Region][2] in the *Amazon Chime SDK Developer Guide*.
|
|
3630
|
+
#
|
|
3631
|
+
#
|
|
3632
|
+
#
|
|
3633
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html
|
|
3634
|
+
# [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region
|
|
3575
3635
|
# @return [String]
|
|
3576
3636
|
#
|
|
3577
3637
|
# @!attribute [rw] enable_partial_results_stabilization
|
|
3578
|
-
#
|
|
3579
|
-
#
|
|
3580
|
-
#
|
|
3638
|
+
# Enables partial result stabilization for your transcription. Partial
|
|
3639
|
+
# result stabilization can reduce latency in your output, but may
|
|
3640
|
+
# impact accuracy.
|
|
3581
3641
|
# @return [Boolean]
|
|
3582
3642
|
#
|
|
3583
3643
|
# @!attribute [rw] partial_results_stability
|
|
3584
|
-
#
|
|
3585
|
-
#
|
|
3586
|
-
#
|
|
3644
|
+
# Specify the level of stability to use when you enable partial
|
|
3645
|
+
# results stabilization (`EnablePartialResultsStabilization`).
|
|
3646
|
+
#
|
|
3647
|
+
# Low stability provides the highest accuracy. High stability
|
|
3648
|
+
# transcribes faster, but with slightly lower accuracy.
|
|
3587
3649
|
# @return [String]
|
|
3588
3650
|
#
|
|
3589
3651
|
# @!attribute [rw] content_identification_type
|
|
3590
|
-
#
|
|
3591
|
-
#
|
|
3652
|
+
# Labels all personally identifiable information (PII) identified in
|
|
3653
|
+
# your transcript. If you don't include `PiiEntityTypes`, all PII is
|
|
3654
|
+
# identified.
|
|
3655
|
+
#
|
|
3656
|
+
# You can’t set `ContentIdentificationType` and
|
|
3657
|
+
# `ContentRedactionType`.
|
|
3592
3658
|
# @return [String]
|
|
3593
3659
|
#
|
|
3594
3660
|
# @!attribute [rw] content_redaction_type
|
|
3595
|
-
#
|
|
3596
|
-
#
|
|
3597
|
-
#
|
|
3661
|
+
# Content redaction is performed at the segment level. If you don't
|
|
3662
|
+
# include `PiiEntityTypes`, all PII is redacted.
|
|
3663
|
+
#
|
|
3664
|
+
# You can’t set `ContentIdentificationType` and
|
|
3665
|
+
# `ContentRedactionType`.
|
|
3598
3666
|
# @return [String]
|
|
3599
3667
|
#
|
|
3600
3668
|
# @!attribute [rw] pii_entity_types
|
|
3601
|
-
#
|
|
3602
|
-
#
|
|
3603
|
-
# `
|
|
3669
|
+
# Specify which types of personally identifiable information (PII) you
|
|
3670
|
+
# want to redact in your transcript. You can include as many types as
|
|
3671
|
+
# you'd like, or you can select `ALL`.
|
|
3672
|
+
#
|
|
3673
|
+
# Values must be comma-separated and can include: `ADDRESS`,
|
|
3674
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING`, `CREDIT_DEBIT_CVV`,
|
|
3675
|
+
# `CREDIT_DEBIT_EXPIRY` `CREDIT_DEBIT_NUMBER`, `EMAIL`,`NAME`,
|
|
3676
|
+
# `PHONE`, `PIN`, `SSN`, or `ALL`.
|
|
3604
3677
|
#
|
|
3605
|
-
#
|
|
3606
|
-
# `
|
|
3607
|
-
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
|
3608
|
-
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
|
3678
|
+
# Note that if you include `PiiEntityTypes`, you must also include
|
|
3679
|
+
# `ContentIdentificationType` or `ContentRedactionType`.
|
|
3609
3680
|
#
|
|
3610
|
-
#
|
|
3611
|
-
# `
|
|
3681
|
+
# If you include `ContentRedactionType` or
|
|
3682
|
+
# `ContentIdentificationType`, but do not include `PiiEntityTypes`,
|
|
3683
|
+
# all PII is redacted or identified.
|
|
3612
3684
|
# @return [String]
|
|
3613
3685
|
#
|
|
3614
3686
|
# @!attribute [rw] language_model_name
|
|
3615
|
-
#
|
|
3687
|
+
# Specify the name of the custom language model that you want to use
|
|
3688
|
+
# when processing your transcription. Note that language model names
|
|
3689
|
+
# are case sensitive.
|
|
3690
|
+
#
|
|
3691
|
+
# The language of the specified language model must match the language
|
|
3692
|
+
# code. If the languages don't match, the custom language model
|
|
3693
|
+
# isn't applied. There are no errors or warnings associated with a
|
|
3694
|
+
# language mismatch.
|
|
3695
|
+
#
|
|
3696
|
+
# If you use Amazon Transcribe in multiple Regions, the custom
|
|
3697
|
+
# language model must be available in Amazon Transcribe in each
|
|
3698
|
+
# Region.
|
|
3699
|
+
# @return [String]
|
|
3700
|
+
#
|
|
3701
|
+
# @!attribute [rw] identify_language
|
|
3702
|
+
# Enables automatic language identification for your transcription.
|
|
3703
|
+
#
|
|
3704
|
+
# If you include `IdentifyLanguage`, you can optionally use
|
|
3705
|
+
# `LanguageOptions` to include a list of language codes that you think
|
|
3706
|
+
# may be present in your audio stream. Including language options can
|
|
3707
|
+
# improve transcription accuracy.
|
|
3708
|
+
#
|
|
3709
|
+
# You can also use `PreferredLanguage` to include a preferred
|
|
3710
|
+
# language. Doing so can help Amazon Transcribe identify the language
|
|
3711
|
+
# faster.
|
|
3712
|
+
#
|
|
3713
|
+
# You must include either `LanguageCode` or `IdentifyLanguage`.
|
|
3714
|
+
#
|
|
3715
|
+
# Language identification can't be combined with custom language
|
|
3716
|
+
# models or redaction.
|
|
3717
|
+
# @return [Boolean]
|
|
3718
|
+
#
|
|
3719
|
+
# @!attribute [rw] language_options
|
|
3720
|
+
# Specify two or more language codes that represent the languages you
|
|
3721
|
+
# think may be present in your media; including more than five is not
|
|
3722
|
+
# recommended. If you're unsure what languages are present, do not
|
|
3723
|
+
# include this parameter.
|
|
3724
|
+
#
|
|
3725
|
+
# Including language options can improve the accuracy of language
|
|
3726
|
+
# identification.
|
|
3727
|
+
#
|
|
3728
|
+
# If you include `LanguageOptions`, you must also include
|
|
3729
|
+
# `IdentifyLanguage`.
|
|
3730
|
+
#
|
|
3731
|
+
# You can only include one language dialect per language. For example,
|
|
3732
|
+
# you cannot include `en-US` and `en-AU`.
|
|
3733
|
+
# @return [String]
|
|
3734
|
+
#
|
|
3735
|
+
# @!attribute [rw] preferred_language
|
|
3736
|
+
# Specify a preferred language from the subset of languages codes you
|
|
3737
|
+
# specified in `LanguageOptions`.
|
|
3738
|
+
#
|
|
3739
|
+
# You can only use this parameter if you include `IdentifyLanguage`
|
|
3740
|
+
# and `LanguageOptions`.
|
|
3741
|
+
# @return [String]
|
|
3742
|
+
#
|
|
3743
|
+
# @!attribute [rw] vocabulary_names
|
|
3744
|
+
# Specify the names of the custom vocabularies that you want to use
|
|
3745
|
+
# when processing your transcription. Note that vocabulary names are
|
|
3746
|
+
# case sensitive.
|
|
3747
|
+
#
|
|
3748
|
+
# If you use Amazon Transcribe in multiple Regions, the vocabulary
|
|
3749
|
+
# must be available in Amazon Transcribe in each Region.
|
|
3750
|
+
#
|
|
3751
|
+
# If you don't include `IdentifyLanguage` and want to use a custom
|
|
3752
|
+
# vocabulary with your transcription, use the `VocabularyName`
|
|
3753
|
+
# parameter instead.
|
|
3754
|
+
# @return [String]
|
|
3755
|
+
#
|
|
3756
|
+
# @!attribute [rw] vocabulary_filter_names
|
|
3757
|
+
# Specify the names of the custom vocabulary filters that you want to
|
|
3758
|
+
# use when processing your transcription. Note that vocabulary filter
|
|
3759
|
+
# names are case sensitive.
|
|
3760
|
+
#
|
|
3761
|
+
# If you use Amazon Transcribe in multiple Regions, the vocabulary
|
|
3762
|
+
# filter must be available in Amazon Transcribe in each Region.
|
|
3763
|
+
#
|
|
3764
|
+
# If you're *not* including `IdentifyLanguage` and want to use a
|
|
3765
|
+
# custom vocabulary filter with your transcription, use the
|
|
3766
|
+
# `VocabularyFilterName` parameter instead.
|
|
3616
3767
|
# @return [String]
|
|
3617
3768
|
#
|
|
3618
3769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
|
|
@@ -3628,7 +3779,12 @@ module Aws::Chime
|
|
|
3628
3779
|
:content_identification_type,
|
|
3629
3780
|
:content_redaction_type,
|
|
3630
3781
|
:pii_entity_types,
|
|
3631
|
-
:language_model_name
|
|
3782
|
+
:language_model_name,
|
|
3783
|
+
:identify_language,
|
|
3784
|
+
:language_options,
|
|
3785
|
+
:preferred_language,
|
|
3786
|
+
:vocabulary_names,
|
|
3787
|
+
:vocabulary_filter_names)
|
|
3632
3788
|
SENSITIVE = []
|
|
3633
3789
|
include Aws::Structure
|
|
3634
3790
|
end
|
|
@@ -4944,8 +5100,7 @@ module Aws::Chime
|
|
|
4944
5100
|
end
|
|
4945
5101
|
|
|
4946
5102
|
# @!attribute [rw] channel_memberships
|
|
4947
|
-
# The
|
|
4948
|
-
# returned.
|
|
5103
|
+
# The information for the requested channel memberships.
|
|
4949
5104
|
# @return [Array<Types::ChannelMembershipForAppInstanceUserSummary>]
|
|
4950
5105
|
#
|
|
4951
5106
|
# @!attribute [rw] next_token
|
|
@@ -5822,13 +5977,12 @@ module Aws::Chime
|
|
|
5822
5977
|
# to Amazon CloudWatch Logs.
|
|
5823
5978
|
#
|
|
5824
5979
|
# @!attribute [rw] enable_sip_logs
|
|
5825
|
-
#
|
|
5826
|
-
# Logs.
|
|
5980
|
+
# Boolean that enables SIP message logs to Amazon CloudWatch logs.
|
|
5827
5981
|
# @return [Boolean]
|
|
5828
5982
|
#
|
|
5829
5983
|
# @!attribute [rw] enable_media_metric_logs
|
|
5830
|
-
# Boolean that enables
|
|
5831
|
-
#
|
|
5984
|
+
# Boolean that enables logging of detailed media metrics for Voice
|
|
5985
|
+
# Connectors to Amazon CloudWatch logs.
|
|
5832
5986
|
# @return [Boolean]
|
|
5833
5987
|
#
|
|
5834
5988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/LoggingConfiguration AWS API Documentation
|
|
@@ -6680,7 +6834,7 @@ module Aws::Chime
|
|
|
6680
6834
|
|
|
6681
6835
|
# @!attribute [rw] events_configuration
|
|
6682
6836
|
# The configuration that allows a bot to receive outgoing events. Can
|
|
6683
|
-
# be
|
|
6837
|
+
# be an HTTPS endpoint or an AWS Lambda function ARN.
|
|
6684
6838
|
# @return [Types::EventsConfiguration]
|
|
6685
6839
|
#
|
|
6686
6840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutEventsConfigurationResponse AWS API Documentation
|
|
@@ -6744,7 +6898,7 @@ module Aws::Chime
|
|
|
6744
6898
|
end
|
|
6745
6899
|
|
|
6746
6900
|
# @!attribute [rw] sip_media_application_logging_configuration
|
|
6747
|
-
#
|
|
6901
|
+
# The logging configuration of the SIP media application.
|
|
6748
6902
|
# @return [Types::SipMediaApplicationLoggingConfiguration]
|
|
6749
6903
|
#
|
|
6750
6904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutSipMediaApplicationLoggingConfigurationResponse AWS API Documentation
|
|
@@ -7074,7 +7228,7 @@ module Aws::Chime
|
|
|
7074
7228
|
|
|
7075
7229
|
# @!attribute [rw] bot
|
|
7076
7230
|
# A resource that allows Enterprise account administrators to
|
|
7077
|
-
# configure an interface
|
|
7231
|
+
# configure an interface that receives events from Amazon Chime.
|
|
7078
7232
|
# @return [Types::Bot]
|
|
7079
7233
|
#
|
|
7080
7234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/RegenerateSecurityTokenResponse AWS API Documentation
|
|
@@ -7525,9 +7679,9 @@ module Aws::Chime
|
|
|
7525
7679
|
# The endpoint assigned to the SIP media application.
|
|
7526
7680
|
#
|
|
7527
7681
|
# @!attribute [rw] lambda_arn
|
|
7528
|
-
# Valid Amazon Resource Name (ARN) of the Lambda function
|
|
7529
|
-
# function must be created in the same AWS Region as the
|
|
7530
|
-
# application.
|
|
7682
|
+
# Valid Amazon Resource Name (ARN) of the Lambda function, version, or
|
|
7683
|
+
# alias. The function must be created in the same AWS Region as the
|
|
7684
|
+
# SIP media application.
|
|
7531
7685
|
# @return [String]
|
|
7532
7686
|
#
|
|
7533
7687
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SipMediaApplicationEndpoint AWS API Documentation
|
data/lib/aws-sdk-chime.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-chime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.72.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: 2023-
|
|
11
|
+
date: 2023-05-31 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.
|
|
22
|
+
version: 3.174.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.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|