aws-sdk-chimesdkmeetings 1.0.0 → 1.4.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +54 -18
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +42 -15
- data/lib/aws-sdk-chimesdkmeetings/types.rb +171 -19
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc7ef0486bcc1f28011a97a0cf6265f55d144c009e6b810f5f84f4d61c3d36bc
|
4
|
+
data.tar.gz: 8bb40805583436cc3bdc68e34e885797ea07f5cefd3449a760c681f704bdab7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 343ac752b9f478a7ad66298fb2031178dc6be791088dd3a516a3cf6a83a7c1103cedef7c02ef600a50abc911fc834c1d5436df49682a91b09dbf30842bc29896
|
7
|
+
data.tar.gz: f18c8808ffbd0f8ba3537ffbadb9ab52a36036c5c88673619ba71fb6c48d5bd1c26fc13d384c4880d0383d4f14d767e144a26655ba252c1f68abaaa57fefb7f2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2021-11-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.3.0 (2021-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added new APIs for enabling Echo Reduction with Voice Focus.
|
13
|
+
|
14
|
+
1.2.0 (2021-11-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
|
18
|
+
|
19
|
+
1.1.0 (2021-11-08)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Updated format validation for ids and regions.
|
23
|
+
|
4
24
|
1.0.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -119,7 +119,9 @@ module Aws::ChimeSDKMeetings
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -336,7 +338,13 @@ module Aws::ChimeSDKMeetings
|
|
336
338
|
|
337
339
|
# @!group API Operations
|
338
340
|
|
339
|
-
# Creates
|
341
|
+
# Creates up to 100 attendees for an active Amazon Chime SDK meeting.
|
342
|
+
# For more information about the Amazon Chime SDK, see [Using the Amazon
|
343
|
+
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
344
|
+
#
|
345
|
+
#
|
346
|
+
#
|
347
|
+
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
340
348
|
#
|
341
349
|
# @option params [required, String] :meeting_id
|
342
350
|
# The Amazon Chime SDK ID of the meeting to which you're adding
|
@@ -353,7 +361,7 @@ module Aws::ChimeSDKMeetings
|
|
353
361
|
# @example Request syntax with placeholder values
|
354
362
|
#
|
355
363
|
# resp = client.batch_create_attendee({
|
356
|
-
# meeting_id: "
|
364
|
+
# meeting_id: "GuidString", # required
|
357
365
|
# attendees: [ # required
|
358
366
|
# {
|
359
367
|
# external_user_id: "ExternalUserId", # required
|
@@ -403,7 +411,7 @@ module Aws::ChimeSDKMeetings
|
|
403
411
|
# @example Request syntax with placeholder values
|
404
412
|
#
|
405
413
|
# resp = client.create_attendee({
|
406
|
-
# meeting_id: "
|
414
|
+
# meeting_id: "GuidString", # required
|
407
415
|
# external_user_id: "ExternalUserId", # required
|
408
416
|
# })
|
409
417
|
#
|
@@ -441,7 +449,7 @@ module Aws::ChimeSDKMeetings
|
|
441
449
|
# not need to pass this option.**
|
442
450
|
#
|
443
451
|
# @option params [required, String] :media_region
|
444
|
-
# The Region in which to create the meeting.
|
452
|
+
# The Region in which to create the meeting.
|
445
453
|
#
|
446
454
|
# Available values: `af-south-1` , `ap-northeast-1` , `ap-northeast-2` ,
|
447
455
|
# `ap-south-1` , `ap-southeast-1` , `ap-southeast-2` , `ca-central-1` ,
|
@@ -459,6 +467,10 @@ module Aws::ChimeSDKMeetings
|
|
459
467
|
# The configuration for resource targets to receive notifications when
|
460
468
|
# meeting and attendee events occur.
|
461
469
|
#
|
470
|
+
# @option params [Types::MeetingFeaturesConfiguration] :meeting_features
|
471
|
+
# Lists the audio and video features enabled for a meeting, such as echo
|
472
|
+
# reduction.
|
473
|
+
#
|
462
474
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
463
475
|
#
|
464
476
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -467,7 +479,7 @@ module Aws::ChimeSDKMeetings
|
|
467
479
|
#
|
468
480
|
# resp = client.create_meeting({
|
469
481
|
# client_request_token: "ClientRequestToken", # required
|
470
|
-
# media_region: "
|
482
|
+
# media_region: "MediaRegion", # required
|
471
483
|
# meeting_host_id: "ExternalUserId",
|
472
484
|
# external_meeting_id: "ExternalMeetingId", # required
|
473
485
|
# notifications_configuration: {
|
@@ -475,6 +487,11 @@ module Aws::ChimeSDKMeetings
|
|
475
487
|
# sns_topic_arn: "Arn",
|
476
488
|
# sqs_queue_arn: "Arn",
|
477
489
|
# },
|
490
|
+
# meeting_features: {
|
491
|
+
# audio: {
|
492
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
493
|
+
# },
|
494
|
+
# },
|
478
495
|
# })
|
479
496
|
#
|
480
497
|
# @example Response structure
|
@@ -491,6 +508,7 @@ module Aws::ChimeSDKMeetings
|
|
491
508
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
492
509
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
493
510
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
511
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
494
512
|
#
|
495
513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
|
496
514
|
#
|
@@ -520,7 +538,7 @@ module Aws::ChimeSDKMeetings
|
|
520
538
|
# not need to pass this option.**
|
521
539
|
#
|
522
540
|
# @option params [required, String] :media_region
|
523
|
-
# The Region in which to create the meeting.
|
541
|
+
# The Region in which to create the meeting.
|
524
542
|
#
|
525
543
|
# @option params [String] :meeting_host_id
|
526
544
|
# Reserved.
|
@@ -528,6 +546,10 @@ module Aws::ChimeSDKMeetings
|
|
528
546
|
# @option params [required, String] :external_meeting_id
|
529
547
|
# The external meeting ID.
|
530
548
|
#
|
549
|
+
# @option params [Types::MeetingFeaturesConfiguration] :meeting_features
|
550
|
+
# Lists the audio and video features enabled for a meeting, such as echo
|
551
|
+
# reduction.
|
552
|
+
#
|
531
553
|
# @option params [Types::NotificationsConfiguration] :notifications_configuration
|
532
554
|
# The configuration for resource targets to receive notifications when
|
533
555
|
# meeting and attendee events occur.
|
@@ -545,9 +567,14 @@ module Aws::ChimeSDKMeetings
|
|
545
567
|
#
|
546
568
|
# resp = client.create_meeting_with_attendees({
|
547
569
|
# client_request_token: "ClientRequestToken", # required
|
548
|
-
# media_region: "
|
570
|
+
# media_region: "MediaRegion", # required
|
549
571
|
# meeting_host_id: "ExternalUserId",
|
550
572
|
# external_meeting_id: "ExternalMeetingId", # required
|
573
|
+
# meeting_features: {
|
574
|
+
# audio: {
|
575
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
576
|
+
# },
|
577
|
+
# },
|
551
578
|
# notifications_configuration: {
|
552
579
|
# lambda_function_arn: "Arn",
|
553
580
|
# sns_topic_arn: "Arn",
|
@@ -574,6 +601,7 @@ module Aws::ChimeSDKMeetings
|
|
574
601
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
575
602
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
576
603
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
604
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
577
605
|
# resp.attendees #=> Array
|
578
606
|
# resp.attendees[0].external_user_id #=> String
|
579
607
|
# resp.attendees[0].attendee_id #=> String
|
@@ -613,8 +641,8 @@ module Aws::ChimeSDKMeetings
|
|
613
641
|
# @example Request syntax with placeholder values
|
614
642
|
#
|
615
643
|
# resp = client.delete_attendee({
|
616
|
-
# meeting_id: "
|
617
|
-
# attendee_id: "
|
644
|
+
# meeting_id: "GuidString", # required
|
645
|
+
# attendee_id: "GuidString", # required
|
618
646
|
# })
|
619
647
|
#
|
620
648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/DeleteAttendee AWS API Documentation
|
@@ -644,7 +672,7 @@ module Aws::ChimeSDKMeetings
|
|
644
672
|
# @example Request syntax with placeholder values
|
645
673
|
#
|
646
674
|
# resp = client.delete_meeting({
|
647
|
-
# meeting_id: "
|
675
|
+
# meeting_id: "GuidString", # required
|
648
676
|
# })
|
649
677
|
#
|
650
678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/DeleteMeeting AWS API Documentation
|
@@ -677,8 +705,8 @@ module Aws::ChimeSDKMeetings
|
|
677
705
|
# @example Request syntax with placeholder values
|
678
706
|
#
|
679
707
|
# resp = client.get_attendee({
|
680
|
-
# meeting_id: "
|
681
|
-
# attendee_id: "
|
708
|
+
# meeting_id: "GuidString", # required
|
709
|
+
# attendee_id: "GuidString", # required
|
682
710
|
# })
|
683
711
|
#
|
684
712
|
# @example Response structure
|
@@ -714,7 +742,7 @@ module Aws::ChimeSDKMeetings
|
|
714
742
|
# @example Request syntax with placeholder values
|
715
743
|
#
|
716
744
|
# resp = client.get_meeting({
|
717
|
-
# meeting_id: "
|
745
|
+
# meeting_id: "GuidString", # required
|
718
746
|
# })
|
719
747
|
#
|
720
748
|
# @example Response structure
|
@@ -731,6 +759,7 @@ module Aws::ChimeSDKMeetings
|
|
731
759
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
732
760
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
733
761
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
762
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
734
763
|
#
|
735
764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
|
736
765
|
#
|
@@ -768,7 +797,7 @@ module Aws::ChimeSDKMeetings
|
|
768
797
|
# @example Request syntax with placeholder values
|
769
798
|
#
|
770
799
|
# resp = client.list_attendees({
|
771
|
-
# meeting_id: "
|
800
|
+
# meeting_id: "GuidString", # required
|
772
801
|
# next_token: "String",
|
773
802
|
# max_results: 1,
|
774
803
|
# })
|
@@ -805,7 +834,7 @@ module Aws::ChimeSDKMeetings
|
|
805
834
|
# @example Request syntax with placeholder values
|
806
835
|
#
|
807
836
|
# resp = client.start_meeting_transcription({
|
808
|
-
# meeting_id: "
|
837
|
+
# meeting_id: "GuidString", # required
|
809
838
|
# transcription_configuration: { # required
|
810
839
|
# engine_transcribe_settings: {
|
811
840
|
# language_code: "en-US", # required, 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
|
@@ -813,6 +842,12 @@ module Aws::ChimeSDKMeetings
|
|
813
842
|
# vocabulary_filter_name: "String",
|
814
843
|
# vocabulary_name: "String",
|
815
844
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
845
|
+
# enable_partial_results_stabilization: false,
|
846
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
847
|
+
# content_identification_type: "PII", # accepts PII
|
848
|
+
# content_redaction_type: "PII", # accepts PII
|
849
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
850
|
+
# language_model_name: "TranscribeLanguageModelName",
|
816
851
|
# },
|
817
852
|
# engine_transcribe_medical_settings: {
|
818
853
|
# language_code: "en-US", # required, accepts en-US
|
@@ -820,6 +855,7 @@ module Aws::ChimeSDKMeetings
|
|
820
855
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
821
856
|
# vocabulary_name: "String",
|
822
857
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
858
|
+
# content_identification_type: "PHI", # accepts PHI
|
823
859
|
# },
|
824
860
|
# },
|
825
861
|
# })
|
@@ -843,7 +879,7 @@ module Aws::ChimeSDKMeetings
|
|
843
879
|
# @example Request syntax with placeholder values
|
844
880
|
#
|
845
881
|
# resp = client.stop_meeting_transcription({
|
846
|
-
# meeting_id: "
|
882
|
+
# meeting_id: "GuidString", # required
|
847
883
|
# })
|
848
884
|
#
|
849
885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/StopMeetingTranscription AWS API Documentation
|
@@ -868,7 +904,7 @@ module Aws::ChimeSDKMeetings
|
|
868
904
|
params: params,
|
869
905
|
config: config)
|
870
906
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
871
|
-
context[:gem_version] = '1.
|
907
|
+
context[:gem_version] = '1.4.0'
|
872
908
|
Seahorse::Client::Request.new(handlers, context)
|
873
909
|
end
|
874
910
|
|
@@ -16,10 +16,12 @@ module Aws::ChimeSDKMeetings
|
|
16
16
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
17
17
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
18
18
|
AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
|
19
|
+
AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
|
19
20
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
20
21
|
BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
|
21
22
|
BatchCreateAttendeeRequest = Shapes::StructureShape.new(name: 'BatchCreateAttendeeRequest')
|
22
23
|
BatchCreateAttendeeResponse = Shapes::StructureShape.new(name: 'BatchCreateAttendeeResponse')
|
24
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
25
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
24
26
|
CreateAttendeeError = Shapes::StructureShape.new(name: 'CreateAttendeeError')
|
25
27
|
CreateAttendeeRequest = Shapes::StructureShape.new(name: 'CreateAttendeeRequest')
|
@@ -48,7 +50,10 @@ module Aws::ChimeSDKMeetings
|
|
48
50
|
ListAttendeesRequest = Shapes::StructureShape.new(name: 'ListAttendeesRequest')
|
49
51
|
ListAttendeesResponse = Shapes::StructureShape.new(name: 'ListAttendeesResponse')
|
50
52
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
53
|
+
MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
|
51
54
|
Meeting = Shapes::StructureShape.new(name: 'Meeting')
|
55
|
+
MeetingFeatureStatus = Shapes::StringShape.new(name: 'MeetingFeatureStatus')
|
56
|
+
MeetingFeaturesConfiguration = Shapes::StructureShape.new(name: 'MeetingFeaturesConfiguration')
|
52
57
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
53
58
|
NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
|
54
59
|
ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
|
@@ -57,11 +62,17 @@ module Aws::ChimeSDKMeetings
|
|
57
62
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
58
63
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
59
64
|
String = Shapes::StringShape.new(name: 'String')
|
65
|
+
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
66
|
+
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
60
67
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
68
|
+
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
69
|
+
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
61
70
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
62
71
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
63
72
|
TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
|
64
73
|
TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
|
74
|
+
TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
|
75
|
+
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
65
76
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
66
77
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
67
78
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
@@ -69,12 +80,15 @@ module Aws::ChimeSDKMeetings
|
|
69
80
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
70
81
|
|
71
82
|
Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
|
72
|
-
Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape:
|
83
|
+
Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
|
73
84
|
Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
|
74
85
|
Attendee.struct_class = Types::Attendee
|
75
86
|
|
76
87
|
AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
|
77
88
|
|
89
|
+
AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
|
90
|
+
AudioFeatures.struct_class = Types::AudioFeatures
|
91
|
+
|
78
92
|
BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
79
93
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
80
94
|
BadRequestException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -82,7 +96,7 @@ module Aws::ChimeSDKMeetings
|
|
82
96
|
|
83
97
|
BatchCreateAttendeeErrorList.member = Shapes::ShapeRef.new(shape: CreateAttendeeError)
|
84
98
|
|
85
|
-
BatchCreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
99
|
+
BatchCreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
86
100
|
BatchCreateAttendeeRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateAttendeeRequestItemList, required: true, location_name: "Attendees"))
|
87
101
|
BatchCreateAttendeeRequest.struct_class = Types::BatchCreateAttendeeRequest
|
88
102
|
|
@@ -95,7 +109,7 @@ module Aws::ChimeSDKMeetings
|
|
95
109
|
CreateAttendeeError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
96
110
|
CreateAttendeeError.struct_class = Types::CreateAttendeeError
|
97
111
|
|
98
|
-
CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
112
|
+
CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
99
113
|
CreateAttendeeRequest.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, required: true, location_name: "ExternalUserId"))
|
100
114
|
CreateAttendeeRequest.struct_class = Types::CreateAttendeeRequest
|
101
115
|
|
@@ -108,19 +122,21 @@ module Aws::ChimeSDKMeetings
|
|
108
122
|
CreateAttendeeResponse.struct_class = Types::CreateAttendeeResponse
|
109
123
|
|
110
124
|
CreateMeetingRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
111
|
-
CreateMeetingRequest.add_member(:media_region, Shapes::ShapeRef.new(shape:
|
125
|
+
CreateMeetingRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, required: true, location_name: "MediaRegion"))
|
112
126
|
CreateMeetingRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
|
113
127
|
CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
|
114
128
|
CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
|
129
|
+
CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
115
130
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
116
131
|
|
117
132
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
118
133
|
CreateMeetingResponse.struct_class = Types::CreateMeetingResponse
|
119
134
|
|
120
135
|
CreateMeetingWithAttendeesRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
121
|
-
CreateMeetingWithAttendeesRequest.add_member(:media_region, Shapes::ShapeRef.new(shape:
|
136
|
+
CreateMeetingWithAttendeesRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, required: true, location_name: "MediaRegion"))
|
122
137
|
CreateMeetingWithAttendeesRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
|
123
138
|
CreateMeetingWithAttendeesRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
|
139
|
+
CreateMeetingWithAttendeesRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
124
140
|
CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
|
125
141
|
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
|
126
142
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
@@ -132,11 +148,11 @@ module Aws::ChimeSDKMeetings
|
|
132
148
|
CreateMeetingWithAttendeesResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchCreateAttendeeErrorList, location_name: "Errors"))
|
133
149
|
CreateMeetingWithAttendeesResponse.struct_class = Types::CreateMeetingWithAttendeesResponse
|
134
150
|
|
135
|
-
DeleteAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
136
|
-
DeleteAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape:
|
151
|
+
DeleteAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
152
|
+
DeleteAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
|
137
153
|
DeleteAttendeeRequest.struct_class = Types::DeleteAttendeeRequest
|
138
154
|
|
139
|
-
DeleteMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
155
|
+
DeleteMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
140
156
|
DeleteMeetingRequest.struct_class = Types::DeleteMeetingRequest
|
141
157
|
|
142
158
|
EngineTranscribeMedicalSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeMedicalLanguageCode, required: true, location_name: "LanguageCode"))
|
@@ -144,6 +160,7 @@ module Aws::ChimeSDKMeetings
|
|
144
160
|
EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
|
145
161
|
EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
146
162
|
EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
|
163
|
+
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
147
164
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
148
165
|
|
149
166
|
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
|
@@ -151,6 +168,12 @@ module Aws::ChimeSDKMeetings
|
|
151
168
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
152
169
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
153
170
|
EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
|
171
|
+
EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
|
172
|
+
EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
|
173
|
+
EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
|
174
|
+
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
175
|
+
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
176
|
+
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
154
177
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
155
178
|
|
156
179
|
ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
@@ -158,14 +181,14 @@ module Aws::ChimeSDKMeetings
|
|
158
181
|
ForbiddenException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
159
182
|
ForbiddenException.struct_class = Types::ForbiddenException
|
160
183
|
|
161
|
-
GetAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
162
|
-
GetAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape:
|
184
|
+
GetAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
185
|
+
GetAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
|
163
186
|
GetAttendeeRequest.struct_class = Types::GetAttendeeRequest
|
164
187
|
|
165
188
|
GetAttendeeResponse.add_member(:attendee, Shapes::ShapeRef.new(shape: Attendee, location_name: "Attendee"))
|
166
189
|
GetAttendeeResponse.struct_class = Types::GetAttendeeResponse
|
167
190
|
|
168
|
-
GetMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
191
|
+
GetMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
169
192
|
GetMeetingRequest.struct_class = Types::GetMeetingRequest
|
170
193
|
|
171
194
|
GetMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -176,7 +199,7 @@ module Aws::ChimeSDKMeetings
|
|
176
199
|
LimitExceededException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
177
200
|
LimitExceededException.struct_class = Types::LimitExceededException
|
178
201
|
|
179
|
-
ListAttendeesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
202
|
+
ListAttendeesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
180
203
|
ListAttendeesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
181
204
|
ListAttendeesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
|
182
205
|
ListAttendeesRequest.struct_class = Types::ListAttendeesRequest
|
@@ -198,10 +221,14 @@ module Aws::ChimeSDKMeetings
|
|
198
221
|
Meeting.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MeetingId"))
|
199
222
|
Meeting.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
|
200
223
|
Meeting.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, location_name: "ExternalMeetingId"))
|
201
|
-
Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape:
|
224
|
+
Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
|
202
225
|
Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
|
226
|
+
Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
203
227
|
Meeting.struct_class = Types::Meeting
|
204
228
|
|
229
|
+
MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
|
230
|
+
MeetingFeaturesConfiguration.struct_class = Types::MeetingFeaturesConfiguration
|
231
|
+
|
205
232
|
NotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
206
233
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
207
234
|
NotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -218,11 +245,11 @@ module Aws::ChimeSDKMeetings
|
|
218
245
|
ServiceUnavailableException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
|
219
246
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
220
247
|
|
221
|
-
StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
248
|
+
StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
222
249
|
StartMeetingTranscriptionRequest.add_member(:transcription_configuration, Shapes::ShapeRef.new(shape: TranscriptionConfiguration, required: true, location_name: "TranscriptionConfiguration"))
|
223
250
|
StartMeetingTranscriptionRequest.struct_class = Types::StartMeetingTranscriptionRequest
|
224
251
|
|
225
|
-
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape:
|
252
|
+
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
226
253
|
StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
|
227
254
|
|
228
255
|
TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
|
@@ -43,6 +43,29 @@ module Aws::ChimeSDKMeetings
|
|
43
43
|
include Aws::Structure
|
44
44
|
end
|
45
45
|
|
46
|
+
# An optional category of meeting features that contains audio-specific
|
47
|
+
# configurations, such as operating parameters for Amazon Voice Focus.
|
48
|
+
#
|
49
|
+
# @note When making an API call, you may pass AudioFeatures
|
50
|
+
# data as a hash:
|
51
|
+
#
|
52
|
+
# {
|
53
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
54
|
+
# }
|
55
|
+
#
|
56
|
+
# @!attribute [rw] echo_reduction
|
57
|
+
# Makes echo reduction available to clients who connect to the
|
58
|
+
# meeting.
|
59
|
+
# @return [String]
|
60
|
+
#
|
61
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AudioFeatures AWS API Documentation
|
62
|
+
#
|
63
|
+
class AudioFeatures < Struct.new(
|
64
|
+
:echo_reduction)
|
65
|
+
SENSITIVE = []
|
66
|
+
include Aws::Structure
|
67
|
+
end
|
68
|
+
|
46
69
|
# The input parameters don't match the service's restrictions.
|
47
70
|
#
|
48
71
|
# @!attribute [rw] code
|
@@ -70,7 +93,7 @@ module Aws::ChimeSDKMeetings
|
|
70
93
|
# data as a hash:
|
71
94
|
#
|
72
95
|
# {
|
73
|
-
# meeting_id: "
|
96
|
+
# meeting_id: "GuidString", # required
|
74
97
|
# attendees: [ # required
|
75
98
|
# {
|
76
99
|
# external_user_id: "ExternalUserId", # required
|
@@ -146,7 +169,7 @@ module Aws::ChimeSDKMeetings
|
|
146
169
|
# data as a hash:
|
147
170
|
#
|
148
171
|
# {
|
149
|
-
# meeting_id: "
|
172
|
+
# meeting_id: "GuidString", # required
|
150
173
|
# external_user_id: "ExternalUserId", # required
|
151
174
|
# }
|
152
175
|
#
|
@@ -208,7 +231,7 @@ module Aws::ChimeSDKMeetings
|
|
208
231
|
#
|
209
232
|
# {
|
210
233
|
# client_request_token: "ClientRequestToken", # required
|
211
|
-
# media_region: "
|
234
|
+
# media_region: "MediaRegion", # required
|
212
235
|
# meeting_host_id: "ExternalUserId",
|
213
236
|
# external_meeting_id: "ExternalMeetingId", # required
|
214
237
|
# notifications_configuration: {
|
@@ -216,6 +239,11 @@ module Aws::ChimeSDKMeetings
|
|
216
239
|
# sns_topic_arn: "Arn",
|
217
240
|
# sqs_queue_arn: "Arn",
|
218
241
|
# },
|
242
|
+
# meeting_features: {
|
243
|
+
# audio: {
|
244
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
245
|
+
# },
|
246
|
+
# },
|
219
247
|
# }
|
220
248
|
#
|
221
249
|
# @!attribute [rw] client_request_token
|
@@ -227,7 +255,7 @@ module Aws::ChimeSDKMeetings
|
|
227
255
|
# @return [String]
|
228
256
|
#
|
229
257
|
# @!attribute [rw] media_region
|
230
|
-
# The Region in which to create the meeting.
|
258
|
+
# The Region in which to create the meeting.
|
231
259
|
#
|
232
260
|
# Available values: `af-south-1` , `ap-northeast-1` , `ap-northeast-2`
|
233
261
|
# , `ap-south-1` , `ap-southeast-1` , `ap-southeast-2` ,
|
@@ -249,6 +277,11 @@ module Aws::ChimeSDKMeetings
|
|
249
277
|
# meeting and attendee events occur.
|
250
278
|
# @return [Types::NotificationsConfiguration]
|
251
279
|
#
|
280
|
+
# @!attribute [rw] meeting_features
|
281
|
+
# Lists the audio and video features enabled for a meeting, such as
|
282
|
+
# echo reduction.
|
283
|
+
# @return [Types::MeetingFeaturesConfiguration]
|
284
|
+
#
|
252
285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
|
253
286
|
#
|
254
287
|
class CreateMeetingRequest < Struct.new(
|
@@ -256,7 +289,8 @@ module Aws::ChimeSDKMeetings
|
|
256
289
|
:media_region,
|
257
290
|
:meeting_host_id,
|
258
291
|
:external_meeting_id,
|
259
|
-
:notifications_configuration
|
292
|
+
:notifications_configuration,
|
293
|
+
:meeting_features)
|
260
294
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
261
295
|
include Aws::Structure
|
262
296
|
end
|
@@ -279,9 +313,14 @@ module Aws::ChimeSDKMeetings
|
|
279
313
|
#
|
280
314
|
# {
|
281
315
|
# client_request_token: "ClientRequestToken", # required
|
282
|
-
# media_region: "
|
316
|
+
# media_region: "MediaRegion", # required
|
283
317
|
# meeting_host_id: "ExternalUserId",
|
284
318
|
# external_meeting_id: "ExternalMeetingId", # required
|
319
|
+
# meeting_features: {
|
320
|
+
# audio: {
|
321
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
322
|
+
# },
|
323
|
+
# },
|
285
324
|
# notifications_configuration: {
|
286
325
|
# lambda_function_arn: "Arn",
|
287
326
|
# sns_topic_arn: "Arn",
|
@@ -303,7 +342,7 @@ module Aws::ChimeSDKMeetings
|
|
303
342
|
# @return [String]
|
304
343
|
#
|
305
344
|
# @!attribute [rw] media_region
|
306
|
-
# The Region in which to create the meeting.
|
345
|
+
# The Region in which to create the meeting.
|
307
346
|
# @return [String]
|
308
347
|
#
|
309
348
|
# @!attribute [rw] meeting_host_id
|
@@ -314,6 +353,11 @@ module Aws::ChimeSDKMeetings
|
|
314
353
|
# The external meeting ID.
|
315
354
|
# @return [String]
|
316
355
|
#
|
356
|
+
# @!attribute [rw] meeting_features
|
357
|
+
# Lists the audio and video features enabled for a meeting, such as
|
358
|
+
# echo reduction.
|
359
|
+
# @return [Types::MeetingFeaturesConfiguration]
|
360
|
+
#
|
317
361
|
# @!attribute [rw] notifications_configuration
|
318
362
|
# The configuration for resource targets to receive notifications when
|
319
363
|
# meeting and attendee events occur.
|
@@ -330,6 +374,7 @@ module Aws::ChimeSDKMeetings
|
|
330
374
|
:media_region,
|
331
375
|
:meeting_host_id,
|
332
376
|
:external_meeting_id,
|
377
|
+
:meeting_features,
|
333
378
|
:notifications_configuration,
|
334
379
|
:attendees)
|
335
380
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
@@ -365,8 +410,8 @@ module Aws::ChimeSDKMeetings
|
|
365
410
|
# data as a hash:
|
366
411
|
#
|
367
412
|
# {
|
368
|
-
# meeting_id: "
|
369
|
-
# attendee_id: "
|
413
|
+
# meeting_id: "GuidString", # required
|
414
|
+
# attendee_id: "GuidString", # required
|
370
415
|
# }
|
371
416
|
#
|
372
417
|
# @!attribute [rw] meeting_id
|
@@ -390,7 +435,7 @@ module Aws::ChimeSDKMeetings
|
|
390
435
|
# data as a hash:
|
391
436
|
#
|
392
437
|
# {
|
393
|
-
# meeting_id: "
|
438
|
+
# meeting_id: "GuidString", # required
|
394
439
|
# }
|
395
440
|
#
|
396
441
|
# @!attribute [rw] meeting_id
|
@@ -416,6 +461,7 @@ module Aws::ChimeSDKMeetings
|
|
416
461
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
417
462
|
# vocabulary_name: "String",
|
418
463
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
464
|
+
# content_identification_type: "PHI", # accepts PHI
|
419
465
|
# }
|
420
466
|
#
|
421
467
|
# @!attribute [rw] language_code
|
@@ -440,6 +486,11 @@ module Aws::ChimeSDKMeetings
|
|
440
486
|
# specify a Region, Amazon Chime uses the meeting's Region.
|
441
487
|
# @return [String]
|
442
488
|
#
|
489
|
+
# @!attribute [rw] content_identification_type
|
490
|
+
# Set this field to `PHI` to identify personal health information in
|
491
|
+
# the transcription output.
|
492
|
+
# @return [String]
|
493
|
+
#
|
443
494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeMedicalSettings AWS API Documentation
|
444
495
|
#
|
445
496
|
class EngineTranscribeMedicalSettings < Struct.new(
|
@@ -447,7 +498,8 @@ module Aws::ChimeSDKMeetings
|
|
447
498
|
:specialty,
|
448
499
|
:type,
|
449
500
|
:vocabulary_name,
|
450
|
-
:region
|
501
|
+
:region,
|
502
|
+
:content_identification_type)
|
451
503
|
SENSITIVE = []
|
452
504
|
include Aws::Structure
|
453
505
|
end
|
@@ -463,6 +515,12 @@ module Aws::ChimeSDKMeetings
|
|
463
515
|
# vocabulary_filter_name: "String",
|
464
516
|
# vocabulary_name: "String",
|
465
517
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
518
|
+
# enable_partial_results_stabilization: false,
|
519
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
520
|
+
# content_identification_type: "PII", # accepts PII
|
521
|
+
# content_redaction_type: "PII", # accepts PII
|
522
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
523
|
+
# language_model_name: "TranscribeLanguageModelName",
|
466
524
|
# }
|
467
525
|
#
|
468
526
|
# @!attribute [rw] language_code
|
@@ -486,6 +544,51 @@ module Aws::ChimeSDKMeetings
|
|
486
544
|
# Region, Amazon Chime uses the meeting's Region.
|
487
545
|
# @return [String]
|
488
546
|
#
|
547
|
+
# @!attribute [rw] enable_partial_results_stabilization
|
548
|
+
# Generates partial transcription results that are less likely to
|
549
|
+
# change as meeting attendees speak. It does so by only allowing the
|
550
|
+
# last few words from the partial results to change.
|
551
|
+
# @return [Boolean]
|
552
|
+
#
|
553
|
+
# @!attribute [rw] partial_results_stability
|
554
|
+
# The stabity level of a partial results transcription. Determines how
|
555
|
+
# stable you want the transcription results to be. A higher level
|
556
|
+
# means the transcription results are less likely to change.
|
557
|
+
# @return [String]
|
558
|
+
#
|
559
|
+
# @!attribute [rw] content_identification_type
|
560
|
+
# Set this field to `PII` to identify personally identifiable
|
561
|
+
# information in the transcription output.
|
562
|
+
# @return [String]
|
563
|
+
#
|
564
|
+
# @!attribute [rw] content_redaction_type
|
565
|
+
# Set this field to `PII` to redact personally identifiable
|
566
|
+
# information in the transcription output. Content redaction is
|
567
|
+
# performed only upon complete transcription of the audio segments.
|
568
|
+
#
|
569
|
+
# You can’t set `ContentRedactionType` and `ContentIdentificationType`
|
570
|
+
# in the same request. If you set both, your request returns a
|
571
|
+
# `BadRequestException`.
|
572
|
+
# @return [String]
|
573
|
+
#
|
574
|
+
# @!attribute [rw] pii_entity_types
|
575
|
+
# Lists the PII entity types you want to identify or redact. To
|
576
|
+
# specify entity types, you must enable `ContentIdentificationType` or
|
577
|
+
# `ContentRedactionType`.
|
578
|
+
#
|
579
|
+
# PIIEntityTypes must be comma-separated. The available values are:
|
580
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
581
|
+
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
582
|
+
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
583
|
+
#
|
584
|
+
# `PiiEntityTypes` is an optional parameter with a default value of
|
585
|
+
# `ALL`.
|
586
|
+
# @return [String]
|
587
|
+
#
|
588
|
+
# @!attribute [rw] language_model_name
|
589
|
+
# The name of the language model used during transcription.
|
590
|
+
# @return [String]
|
591
|
+
#
|
489
592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeSettings AWS API Documentation
|
490
593
|
#
|
491
594
|
class EngineTranscribeSettings < Struct.new(
|
@@ -493,7 +596,13 @@ module Aws::ChimeSDKMeetings
|
|
493
596
|
:vocabulary_filter_method,
|
494
597
|
:vocabulary_filter_name,
|
495
598
|
:vocabulary_name,
|
496
|
-
:region
|
599
|
+
:region,
|
600
|
+
:enable_partial_results_stabilization,
|
601
|
+
:partial_results_stability,
|
602
|
+
:content_identification_type,
|
603
|
+
:content_redaction_type,
|
604
|
+
:pii_entity_types,
|
605
|
+
:language_model_name)
|
497
606
|
SENSITIVE = []
|
498
607
|
include Aws::Structure
|
499
608
|
end
|
@@ -525,8 +634,8 @@ module Aws::ChimeSDKMeetings
|
|
525
634
|
# data as a hash:
|
526
635
|
#
|
527
636
|
# {
|
528
|
-
# meeting_id: "
|
529
|
-
# attendee_id: "
|
637
|
+
# meeting_id: "GuidString", # required
|
638
|
+
# attendee_id: "GuidString", # required
|
530
639
|
# }
|
531
640
|
#
|
532
641
|
# @!attribute [rw] meeting_id
|
@@ -562,7 +671,7 @@ module Aws::ChimeSDKMeetings
|
|
562
671
|
# data as a hash:
|
563
672
|
#
|
564
673
|
# {
|
565
|
-
# meeting_id: "
|
674
|
+
# meeting_id: "GuidString", # required
|
566
675
|
# }
|
567
676
|
#
|
568
677
|
# @!attribute [rw] meeting_id
|
@@ -616,7 +725,7 @@ module Aws::ChimeSDKMeetings
|
|
616
725
|
# data as a hash:
|
617
726
|
#
|
618
727
|
# {
|
619
|
-
# meeting_id: "
|
728
|
+
# meeting_id: "GuidString", # required
|
620
729
|
# next_token: "String",
|
621
730
|
# max_results: 1,
|
622
731
|
# }
|
@@ -736,6 +845,10 @@ module Aws::ChimeSDKMeetings
|
|
736
845
|
# The media placement for the meeting.
|
737
846
|
# @return [Types::MediaPlacement]
|
738
847
|
#
|
848
|
+
# @!attribute [rw] meeting_features
|
849
|
+
# The features available to a meeting, such as Amazon Voice Focus.
|
850
|
+
# @return [Types::MeetingFeaturesConfiguration]
|
851
|
+
#
|
739
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
|
740
853
|
#
|
741
854
|
class Meeting < Struct.new(
|
@@ -743,11 +856,36 @@ module Aws::ChimeSDKMeetings
|
|
743
856
|
:meeting_host_id,
|
744
857
|
:external_meeting_id,
|
745
858
|
:media_region,
|
746
|
-
:media_placement
|
859
|
+
:media_placement,
|
860
|
+
:meeting_features)
|
747
861
|
SENSITIVE = [:meeting_host_id, :external_meeting_id]
|
748
862
|
include Aws::Structure
|
749
863
|
end
|
750
864
|
|
865
|
+
# The configuration settings of the features available to a meeting.
|
866
|
+
#
|
867
|
+
# @note When making an API call, you may pass MeetingFeaturesConfiguration
|
868
|
+
# data as a hash:
|
869
|
+
#
|
870
|
+
# {
|
871
|
+
# audio: {
|
872
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
873
|
+
# },
|
874
|
+
# }
|
875
|
+
#
|
876
|
+
# @!attribute [rw] audio
|
877
|
+
# The configuration settings for the audio features available to a
|
878
|
+
# meeting.
|
879
|
+
# @return [Types::AudioFeatures]
|
880
|
+
#
|
881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/MeetingFeaturesConfiguration AWS API Documentation
|
882
|
+
#
|
883
|
+
class MeetingFeaturesConfiguration < Struct.new(
|
884
|
+
:audio)
|
885
|
+
SENSITIVE = []
|
886
|
+
include Aws::Structure
|
887
|
+
end
|
888
|
+
|
751
889
|
# One or more of the resources in the request does not exist in the
|
752
890
|
# system.
|
753
891
|
#
|
@@ -839,7 +977,7 @@ module Aws::ChimeSDKMeetings
|
|
839
977
|
# data as a hash:
|
840
978
|
#
|
841
979
|
# {
|
842
|
-
# meeting_id: "
|
980
|
+
# meeting_id: "GuidString", # required
|
843
981
|
# transcription_configuration: { # required
|
844
982
|
# engine_transcribe_settings: {
|
845
983
|
# language_code: "en-US", # required, 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
|
@@ -847,6 +985,12 @@ module Aws::ChimeSDKMeetings
|
|
847
985
|
# vocabulary_filter_name: "String",
|
848
986
|
# vocabulary_name: "String",
|
849
987
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
988
|
+
# enable_partial_results_stabilization: false,
|
989
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
990
|
+
# content_identification_type: "PII", # accepts PII
|
991
|
+
# content_redaction_type: "PII", # accepts PII
|
992
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
993
|
+
# language_model_name: "TranscribeLanguageModelName",
|
850
994
|
# },
|
851
995
|
# engine_transcribe_medical_settings: {
|
852
996
|
# language_code: "en-US", # required, accepts en-US
|
@@ -854,6 +998,7 @@ module Aws::ChimeSDKMeetings
|
|
854
998
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
855
999
|
# vocabulary_name: "String",
|
856
1000
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
1001
|
+
# content_identification_type: "PHI", # accepts PHI
|
857
1002
|
# },
|
858
1003
|
# },
|
859
1004
|
# }
|
@@ -881,7 +1026,7 @@ module Aws::ChimeSDKMeetings
|
|
881
1026
|
# data as a hash:
|
882
1027
|
#
|
883
1028
|
# {
|
884
|
-
# meeting_id: "
|
1029
|
+
# meeting_id: "GuidString", # required
|
885
1030
|
# }
|
886
1031
|
#
|
887
1032
|
# @!attribute [rw] meeting_id
|
@@ -910,6 +1055,12 @@ module Aws::ChimeSDKMeetings
|
|
910
1055
|
# vocabulary_filter_name: "String",
|
911
1056
|
# vocabulary_name: "String",
|
912
1057
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
1058
|
+
# enable_partial_results_stabilization: false,
|
1059
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
1060
|
+
# content_identification_type: "PII", # accepts PII
|
1061
|
+
# content_redaction_type: "PII", # accepts PII
|
1062
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
1063
|
+
# language_model_name: "TranscribeLanguageModelName",
|
913
1064
|
# },
|
914
1065
|
# engine_transcribe_medical_settings: {
|
915
1066
|
# language_code: "en-US", # required, accepts en-US
|
@@ -917,6 +1068,7 @@ module Aws::ChimeSDKMeetings
|
|
917
1068
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
918
1069
|
# vocabulary_name: "String",
|
919
1070
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
1071
|
+
# content_identification_type: "PHI", # accepts PHI
|
920
1072
|
# },
|
921
1073
|
# }
|
922
1074
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmeetings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.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: 2021-11-
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|