aws-sdk-chime 1.54.0 → 1.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5af79610d4d8e73d87c694dd53c7f04b6429f1349482eb99d5af5fb55243200a
4
- data.tar.gz: 588f4b88b83c0f6b92003eca97c87cc69c7cbd3ebb815fe77edd877605878fe5
3
+ metadata.gz: 2c61a093dfdc4c48bb32b0d11e31e7d7eea66615784fe9bcf6d0a10ffd1b8bd3
4
+ data.tar.gz: ff3970031a976071e87c910707954f03ec7146076f371ecdbec26533404a148a
5
5
  SHA512:
6
- metadata.gz: 954407ea3680210e915cac50402cc39727fcf78bb6cdd51916fd2b09c13e80eec2c59056248dba54578a254396e9ca04d11ebba4d9827c8a78568a1c07501be9
7
- data.tar.gz: c63bbac10a24cb83e8878e5538aa98ff72d1a18b0411219eedb623a39f0b40304cdf1f67d03cef92ff40b9f8565cae8b5da335bbf6b1ec33c5cac888070a699f
6
+ metadata.gz: 2b8251eab9e2d35973ff65bdfb9a6085bc0fc93b872e96315ba4cfefa2cb21fd4e243db037e668d76c75abbd96e2944e8f55f3ff5d6bad7d97da848e0a5791e4
7
+ data.tar.gz: 1b4ab0f4708c141862388963e4f2185b1e36fe4e699c78833a538caf56b74b083ac9ce09066015e97154f86aca243b0f5ab78c8f8893e2ec984ea2df954635b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2021-10-07)
5
+ ------------------
6
+
7
+ * Feature - This release enables customers to configure Chime MediaCapturePipeline via API.
8
+
9
+ 1.57.0 (2021-09-14)
10
+ ------------------
11
+
12
+ * Feature - Adds support for SipHeaders parameter for CreateSipMediaApplicationCall.
13
+
14
+ 1.56.0 (2021-09-01)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.55.0 (2021-08-10)
20
+ ------------------
21
+
22
+ * Feature - Add support for "auto" in Region field of StartMeetingTranscription API request.
23
+
4
24
  1.54.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.58.0
@@ -1433,6 +1433,10 @@ module Aws::Chime
1433
1433
  # **A suitable default value is auto-generated.** You should normally
1434
1434
  # not need to pass this option.**
1435
1435
  #
1436
+ # @option params [Types::ChimeSdkMeetingConfiguration] :chime_sdk_meeting_configuration
1437
+ # The configuration for a specified media capture pipeline. `SourceType`
1438
+ # must be `ChimeSdkMeeting`.
1439
+ #
1436
1440
  # @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1437
1441
  #
1438
1442
  # * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
@@ -1445,6 +1449,27 @@ module Aws::Chime
1445
1449
  # sink_type: "S3Bucket", # required, accepts S3Bucket
1446
1450
  # sink_arn: "Arn", # required
1447
1451
  # client_request_token: "ClientRequestToken",
1452
+ # chime_sdk_meeting_configuration: {
1453
+ # source_configuration: {
1454
+ # selected_video_streams: {
1455
+ # attendee_ids: ["GuidString"],
1456
+ # external_user_ids: ["ExternalUserIdType"],
1457
+ # },
1458
+ # },
1459
+ # artifacts_configuration: {
1460
+ # audio: { # required
1461
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
1462
+ # },
1463
+ # video: { # required
1464
+ # state: "Enabled", # required, accepts Enabled, Disabled
1465
+ # mux_type: "VideoOnly", # accepts VideoOnly
1466
+ # },
1467
+ # content: { # required
1468
+ # state: "Enabled", # required, accepts Enabled, Disabled
1469
+ # mux_type: "ContentOnly", # accepts ContentOnly
1470
+ # },
1471
+ # },
1472
+ # },
1448
1473
  # })
1449
1474
  #
1450
1475
  # @example Response structure
@@ -1457,6 +1482,15 @@ module Aws::Chime
1457
1482
  # resp.media_capture_pipeline.sink_arn #=> String
1458
1483
  # resp.media_capture_pipeline.created_timestamp #=> Time
1459
1484
  # resp.media_capture_pipeline.updated_timestamp #=> Time
1485
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
1486
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
1487
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
1488
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
1489
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
1490
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
1491
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
1492
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
1493
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
1460
1494
  #
1461
1495
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
1462
1496
  #
@@ -1995,6 +2029,9 @@ module Aws::Chime
1995
2029
  # @option params [required, String] :sip_media_application_id
1996
2030
  # The ID of the SIP media application.
1997
2031
  #
2032
+ # @option params [Hash<String,String>] :sip_headers
2033
+ # The SIP headers added to an outbound call leg.
2034
+ #
1998
2035
  # @return [Types::CreateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1999
2036
  #
2000
2037
  # * {Types::CreateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
@@ -2005,6 +2042,9 @@ module Aws::Chime
2005
2042
  # from_phone_number: "E164PhoneNumber", # required
2006
2043
  # to_phone_number: "E164PhoneNumber", # required
2007
2044
  # sip_media_application_id: "NonEmptyString", # required
2045
+ # sip_headers: {
2046
+ # "SensitiveString" => "SensitiveString",
2047
+ # },
2008
2048
  # })
2009
2049
  #
2010
2050
  # @example Response structure
@@ -3090,7 +3130,7 @@ module Aws::Chime
3090
3130
  req.send_request(options)
3091
3131
  end
3092
3132
 
3093
- # Returns the full details of an `AppInstanceUser` .
3133
+ # Returns the full details of an `AppInstanceUser`.
3094
3134
  #
3095
3135
  # @option params [required, String] :app_instance_user_arn
3096
3136
  # The ARN of the `AppInstanceUser`.
@@ -3890,6 +3930,15 @@ module Aws::Chime
3890
3930
  # resp.media_capture_pipeline.sink_arn #=> String
3891
3931
  # resp.media_capture_pipeline.created_timestamp #=> Time
3892
3932
  # resp.media_capture_pipeline.updated_timestamp #=> Time
3933
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
3934
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
3935
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
3936
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
3937
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
3938
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
3939
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
3940
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
3941
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
3893
3942
  #
3894
3943
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3895
3944
  #
@@ -5529,6 +5578,15 @@ module Aws::Chime
5529
5578
  # resp.media_capture_pipelines[0].sink_arn #=> String
5530
5579
  # resp.media_capture_pipelines[0].created_timestamp #=> Time
5531
5580
  # resp.media_capture_pipelines[0].updated_timestamp #=> Time
5581
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
5582
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
5583
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
5584
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
5585
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
5586
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
5587
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
5588
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
5589
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
5532
5590
  # resp.next_token #=> String
5533
5591
  #
5534
5592
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
@@ -7193,7 +7251,7 @@ module Aws::Chime
7193
7251
  req.send_request(options)
7194
7252
  end
7195
7253
 
7196
- # Start transcription for the specified `meetingId`.
7254
+ # Starts transcription for the specified `meetingId`.
7197
7255
  #
7198
7256
  # @option params [required, String] :meeting_id
7199
7257
  # The unique ID of the meeting being transcribed.
@@ -7215,14 +7273,14 @@ module Aws::Chime
7215
7273
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
7216
7274
  # vocabulary_filter_name: "String",
7217
7275
  # vocabulary_name: "String",
7218
- # 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
7276
+ # 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
7219
7277
  # },
7220
7278
  # engine_transcribe_medical_settings: {
7221
7279
  # language_code: "en-US", # required, accepts en-US
7222
7280
  # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
7223
7281
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
7224
7282
  # vocabulary_name: "String",
7225
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
7283
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
7226
7284
  # },
7227
7285
  # },
7228
7286
  # })
@@ -7789,10 +7847,10 @@ module Aws::Chime
7789
7847
  # Amazon Chime Business Calling and Amazon Chime Voice Connector
7790
7848
  # settings.
7791
7849
  #
7792
- # @option params [required, Types::BusinessCallingSettings] :business_calling
7850
+ # @option params [Types::BusinessCallingSettings] :business_calling
7793
7851
  # The Amazon Chime Business Calling settings.
7794
7852
  #
7795
- # @option params [required, Types::VoiceConnectorSettings] :voice_connector
7853
+ # @option params [Types::VoiceConnectorSettings] :voice_connector
7796
7854
  # The Amazon Chime Voice Connector settings.
7797
7855
  #
7798
7856
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -7800,10 +7858,10 @@ module Aws::Chime
7800
7858
  # @example Request syntax with placeholder values
7801
7859
  #
7802
7860
  # resp = client.update_global_settings({
7803
- # business_calling: { # required
7861
+ # business_calling: {
7804
7862
  # cdr_bucket: "String",
7805
7863
  # },
7806
- # voice_connector: { # required
7864
+ # voice_connector: {
7807
7865
  # cdr_bucket: "String",
7808
7866
  # },
7809
7867
  # })
@@ -8405,7 +8463,7 @@ module Aws::Chime
8405
8463
  params: params,
8406
8464
  config: config)
8407
8465
  context[:gem_name] = 'aws-sdk-chime'
8408
- context[:gem_version] = '1.54.0'
8466
+ context[:gem_version] = '1.58.0'
8409
8467
  Seahorse::Client::Request.new(handlers, context)
8410
8468
  end
8411
8469
 
@@ -38,6 +38,8 @@ module Aws::Chime
38
38
  AppInstanceUserSummary = Shapes::StructureShape.new(name: 'AppInstanceUserSummary')
39
39
  AreaCode = Shapes::StringShape.new(name: 'AreaCode')
40
40
  Arn = Shapes::StringShape.new(name: 'Arn')
41
+ ArtifactsConfiguration = Shapes::StructureShape.new(name: 'ArtifactsConfiguration')
42
+ ArtifactsState = Shapes::StringShape.new(name: 'ArtifactsState')
41
43
  AssociatePhoneNumberWithUserRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserRequest')
42
44
  AssociatePhoneNumberWithUserResponse = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserResponse')
43
45
  AssociatePhoneNumbersWithVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumbersWithVoiceConnectorGroupRequest')
@@ -47,9 +49,12 @@ module Aws::Chime
47
49
  AssociateSigninDelegateGroupsWithAccountRequest = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountRequest')
48
50
  AssociateSigninDelegateGroupsWithAccountResponse = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountResponse')
49
51
  Attendee = Shapes::StructureShape.new(name: 'Attendee')
52
+ AttendeeIdList = Shapes::ListShape.new(name: 'AttendeeIdList')
50
53
  AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
51
54
  AttendeeTagKeyList = Shapes::ListShape.new(name: 'AttendeeTagKeyList')
52
55
  AttendeeTagList = Shapes::ListShape.new(name: 'AttendeeTagList')
56
+ AudioArtifactsConfiguration = Shapes::StructureShape.new(name: 'AudioArtifactsConfiguration')
57
+ AudioMuxType = Shapes::StringShape.new(name: 'AudioMuxType')
53
58
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
54
59
  BatchChannelMemberships = Shapes::StructureShape.new(name: 'BatchChannelMemberships')
55
60
  BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
@@ -108,9 +113,12 @@ module Aws::Chime
108
113
  ChannelSummary = Shapes::StructureShape.new(name: 'ChannelSummary')
109
114
  ChannelSummaryList = Shapes::ListShape.new(name: 'ChannelSummaryList')
110
115
  ChimeArn = Shapes::StringShape.new(name: 'ChimeArn')
116
+ ChimeSdkMeetingConfiguration = Shapes::StructureShape.new(name: 'ChimeSdkMeetingConfiguration')
111
117
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
112
118
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
113
119
  Content = Shapes::StringShape.new(name: 'Content')
120
+ ContentArtifactsConfiguration = Shapes::StructureShape.new(name: 'ContentArtifactsConfiguration')
121
+ ContentMuxType = Shapes::StringShape.new(name: 'ContentMuxType')
114
122
  ConversationRetentionSettings = Shapes::StructureShape.new(name: 'ConversationRetentionSettings')
115
123
  Country = Shapes::StringShape.new(name: 'Country')
116
124
  CountryList = Shapes::ListShape.new(name: 'CountryList')
@@ -237,6 +245,7 @@ module Aws::Chime
237
245
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
238
246
  EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
239
247
  ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
248
+ ExternalUserIdList = Shapes::ListShape.new(name: 'ExternalUserIdList')
240
249
  ExternalUserIdType = Shapes::StringShape.new(name: 'ExternalUserIdType')
241
250
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
242
251
  FunctionArn = Shapes::StringShape.new(name: 'FunctionArn')
@@ -502,6 +511,7 @@ module Aws::Chime
502
511
  SMAUpdateCallArgumentsMap = Shapes::MapShape.new(name: 'SMAUpdateCallArgumentsMap')
503
512
  SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
504
513
  SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
514
+ SelectedVideoStreams = Shapes::StructureShape.new(name: 'SelectedVideoStreams')
505
515
  SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
506
516
  SendChannelMessageResponse = Shapes::StructureShape.new(name: 'SendChannelMessageResponse')
507
517
  SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
@@ -511,6 +521,7 @@ module Aws::Chime
511
521
  SigninDelegateGroup = Shapes::StructureShape.new(name: 'SigninDelegateGroup')
512
522
  SigninDelegateGroupList = Shapes::ListShape.new(name: 'SigninDelegateGroupList')
513
523
  SipApplicationPriority = Shapes::IntegerShape.new(name: 'SipApplicationPriority')
524
+ SipHeadersMap = Shapes::MapShape.new(name: 'SipHeadersMap')
514
525
  SipMediaApplication = Shapes::StructureShape.new(name: 'SipMediaApplication')
515
526
  SipMediaApplicationCall = Shapes::StructureShape.new(name: 'SipMediaApplicationCall')
516
527
  SipMediaApplicationEndpoint = Shapes::StructureShape.new(name: 'SipMediaApplicationEndpoint')
@@ -525,6 +536,7 @@ module Aws::Chime
525
536
  SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
526
537
  SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
527
538
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
539
+ SourceConfiguration = Shapes::StructureShape.new(name: 'SourceConfiguration')
528
540
  StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
529
541
  StartMeetingTranscriptionResponse = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionResponse')
530
542
  StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
@@ -617,6 +629,8 @@ module Aws::Chime
617
629
  UserName = Shapes::StringShape.new(name: 'UserName')
618
630
  UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
619
631
  UserType = Shapes::StringShape.new(name: 'UserType')
632
+ VideoArtifactsConfiguration = Shapes::StructureShape.new(name: 'VideoArtifactsConfiguration')
633
+ VideoMuxType = Shapes::StringShape.new(name: 'VideoMuxType')
620
634
  VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
621
635
  VoiceConnectorAwsRegion = Shapes::StringShape.new(name: 'VoiceConnectorAwsRegion')
622
636
  VoiceConnectorGroup = Shapes::StructureShape.new(name: 'VoiceConnectorGroup')
@@ -705,6 +719,11 @@ module Aws::Chime
705
719
  AppInstanceUserSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
706
720
  AppInstanceUserSummary.struct_class = Types::AppInstanceUserSummary
707
721
 
722
+ ArtifactsConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioArtifactsConfiguration, required: true, location_name: "Audio"))
723
+ ArtifactsConfiguration.add_member(:video, Shapes::ShapeRef.new(shape: VideoArtifactsConfiguration, required: true, location_name: "Video"))
724
+ ArtifactsConfiguration.add_member(:content, Shapes::ShapeRef.new(shape: ContentArtifactsConfiguration, required: true, location_name: "Content"))
725
+ ArtifactsConfiguration.struct_class = Types::ArtifactsConfiguration
726
+
708
727
  AssociatePhoneNumberWithUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "accountId"))
709
728
  AssociatePhoneNumberWithUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "userId"))
710
729
  AssociatePhoneNumberWithUserRequest.add_member(:e164_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "E164PhoneNumber"))
@@ -739,12 +758,17 @@ module Aws::Chime
739
758
  Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
740
759
  Attendee.struct_class = Types::Attendee
741
760
 
761
+ AttendeeIdList.member = Shapes::ShapeRef.new(shape: GuidString)
762
+
742
763
  AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
743
764
 
744
765
  AttendeeTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
745
766
 
746
767
  AttendeeTagList.member = Shapes::ShapeRef.new(shape: Tag)
747
768
 
769
+ AudioArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: AudioMuxType, required: true, location_name: "MuxType"))
770
+ AudioArtifactsConfiguration.struct_class = Types::AudioArtifactsConfiguration
771
+
748
772
  BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
749
773
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
750
774
  BadRequestException.struct_class = Types::BadRequestException
@@ -939,10 +963,18 @@ module Aws::Chime
939
963
 
940
964
  ChannelSummaryList.member = Shapes::ShapeRef.new(shape: ChannelSummary)
941
965
 
966
+ ChimeSdkMeetingConfiguration.add_member(:source_configuration, Shapes::ShapeRef.new(shape: SourceConfiguration, location_name: "SourceConfiguration"))
967
+ ChimeSdkMeetingConfiguration.add_member(:artifacts_configuration, Shapes::ShapeRef.new(shape: ArtifactsConfiguration, location_name: "ArtifactsConfiguration"))
968
+ ChimeSdkMeetingConfiguration.struct_class = Types::ChimeSdkMeetingConfiguration
969
+
942
970
  ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
943
971
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
944
972
  ConflictException.struct_class = Types::ConflictException
945
973
 
974
+ ContentArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
975
+ ContentArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: ContentMuxType, location_name: "MuxType"))
976
+ ContentArtifactsConfiguration.struct_class = Types::ContentArtifactsConfiguration
977
+
946
978
  ConversationRetentionSettings.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
947
979
  ConversationRetentionSettings.struct_class = Types::ConversationRetentionSettings
948
980
 
@@ -1055,6 +1087,7 @@ module Aws::Chime
1055
1087
  CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
1056
1088
  CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
1057
1089
  CreateMediaCapturePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1090
+ CreateMediaCapturePipelineRequest.add_member(:chime_sdk_meeting_configuration, Shapes::ShapeRef.new(shape: ChimeSdkMeetingConfiguration, location_name: "ChimeSdkMeetingConfiguration"))
1058
1091
  CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
1059
1092
 
1060
1093
  CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
@@ -1136,6 +1169,7 @@ module Aws::Chime
1136
1169
  CreateSipMediaApplicationCallRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
1137
1170
  CreateSipMediaApplicationCallRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
1138
1171
  CreateSipMediaApplicationCallRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
1172
+ CreateSipMediaApplicationCallRequest.add_member(:sip_headers, Shapes::ShapeRef.new(shape: SipHeadersMap, location_name: "SipHeaders"))
1139
1173
  CreateSipMediaApplicationCallRequest.struct_class = Types::CreateSipMediaApplicationCallRequest
1140
1174
 
1141
1175
  CreateSipMediaApplicationCallResponse.add_member(:sip_media_application_call, Shapes::ShapeRef.new(shape: SipMediaApplicationCall, location_name: "SipMediaApplicationCall"))
@@ -1415,6 +1449,8 @@ module Aws::Chime
1415
1449
  EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
1416
1450
  EventsConfiguration.struct_class = Types::EventsConfiguration
1417
1451
 
1452
+ ExternalUserIdList.member = Shapes::ShapeRef.new(shape: ExternalUserIdType)
1453
+
1418
1454
  ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
1419
1455
  ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1420
1456
  ForbiddenException.struct_class = Types::ForbiddenException
@@ -1936,6 +1972,7 @@ module Aws::Chime
1936
1972
  MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
1937
1973
  MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
1938
1974
  MediaCapturePipeline.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
1975
+ MediaCapturePipeline.add_member(:chime_sdk_meeting_configuration, Shapes::ShapeRef.new(shape: ChimeSdkMeetingConfiguration, location_name: "ChimeSdkMeetingConfiguration"))
1939
1976
  MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
1940
1977
 
1941
1978
  MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
@@ -2284,6 +2321,10 @@ module Aws::Chime
2284
2321
  SearchAvailablePhoneNumbersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
2285
2322
  SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
2286
2323
 
2324
+ SelectedVideoStreams.add_member(:attendee_ids, Shapes::ShapeRef.new(shape: AttendeeIdList, location_name: "AttendeeIds"))
2325
+ SelectedVideoStreams.add_member(:external_user_ids, Shapes::ShapeRef.new(shape: ExternalUserIdList, location_name: "ExternalUserIds"))
2326
+ SelectedVideoStreams.struct_class = Types::SelectedVideoStreams
2327
+
2287
2328
  SendChannelMessageRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
2288
2329
  SendChannelMessageRequest.add_member(:content, Shapes::ShapeRef.new(shape: NonEmptyContent, required: true, location_name: "Content"))
2289
2330
  SendChannelMessageRequest.add_member(:type, Shapes::ShapeRef.new(shape: ChannelMessageType, required: true, location_name: "Type"))
@@ -2312,6 +2353,9 @@ module Aws::Chime
2312
2353
 
2313
2354
  SigninDelegateGroupList.member = Shapes::ShapeRef.new(shape: SigninDelegateGroup)
2314
2355
 
2356
+ SipHeadersMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
2357
+ SipHeadersMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
2358
+
2315
2359
  SipMediaApplication.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "SipMediaApplicationId"))
2316
2360
  SipMediaApplication.add_member(:aws_region, Shapes::ShapeRef.new(shape: String, location_name: "AwsRegion"))
2317
2361
  SipMediaApplication.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, location_name: "Name"))
@@ -2352,6 +2396,9 @@ module Aws::Chime
2352
2396
 
2353
2397
  SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
2354
2398
 
2399
+ SourceConfiguration.add_member(:selected_video_streams, Shapes::ShapeRef.new(shape: SelectedVideoStreams, location_name: "SelectedVideoStreams"))
2400
+ SourceConfiguration.struct_class = Types::SourceConfiguration
2401
+
2355
2402
  StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
2356
2403
  StartMeetingTranscriptionRequest.add_member(:transcription_configuration, Shapes::ShapeRef.new(shape: TranscriptionConfiguration, required: true, location_name: "TranscriptionConfiguration"))
2357
2404
  StartMeetingTranscriptionRequest.struct_class = Types::StartMeetingTranscriptionRequest
@@ -2507,8 +2554,8 @@ module Aws::Chime
2507
2554
  UpdateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
2508
2555
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
2509
2556
 
2510
- UpdateGlobalSettingsRequest.add_member(:business_calling, Shapes::ShapeRef.new(shape: BusinessCallingSettings, required: true, location_name: "BusinessCalling"))
2511
- UpdateGlobalSettingsRequest.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, required: true, location_name: "VoiceConnector"))
2557
+ UpdateGlobalSettingsRequest.add_member(:business_calling, Shapes::ShapeRef.new(shape: BusinessCallingSettings, location_name: "BusinessCalling"))
2558
+ UpdateGlobalSettingsRequest.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, location_name: "VoiceConnector"))
2512
2559
  UpdateGlobalSettingsRequest.struct_class = Types::UpdateGlobalSettingsRequest
2513
2560
 
2514
2561
  UpdatePhoneNumberRequest.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "phoneNumberId"))
@@ -2650,6 +2697,10 @@ module Aws::Chime
2650
2697
  UserSettings.add_member(:telephony, Shapes::ShapeRef.new(shape: TelephonySettings, required: true, location_name: "Telephony"))
2651
2698
  UserSettings.struct_class = Types::UserSettings
2652
2699
 
2700
+ VideoArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
2701
+ VideoArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: VideoMuxType, location_name: "MuxType"))
2702
+ VideoArtifactsConfiguration.struct_class = Types::VideoArtifactsConfiguration
2703
+
2653
2704
  VoiceConnector.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorId"))
2654
2705
  VoiceConnector.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
2655
2706
  VoiceConnector.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorName, location_name: "Name"))
@@ -3213,6 +3264,7 @@ module Aws::Chime
3213
3264
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3214
3265
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3215
3266
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3267
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3216
3268
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3217
3269
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3218
3270
  end)
@@ -5670,6 +5722,7 @@ module Aws::Chime
5670
5722
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5671
5723
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5672
5724
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5725
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
5673
5726
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5674
5727
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5675
5728
  end)
@@ -383,6 +383,47 @@ module Aws::Chime
383
383
  include Aws::Structure
384
384
  end
385
385
 
386
+ # The configuration for the artifacts.
387
+ #
388
+ # @note When making an API call, you may pass ArtifactsConfiguration
389
+ # data as a hash:
390
+ #
391
+ # {
392
+ # audio: { # required
393
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
394
+ # },
395
+ # video: { # required
396
+ # state: "Enabled", # required, accepts Enabled, Disabled
397
+ # mux_type: "VideoOnly", # accepts VideoOnly
398
+ # },
399
+ # content: { # required
400
+ # state: "Enabled", # required, accepts Enabled, Disabled
401
+ # mux_type: "ContentOnly", # accepts ContentOnly
402
+ # },
403
+ # }
404
+ #
405
+ # @!attribute [rw] audio
406
+ # The configuration for the audio artifacts.
407
+ # @return [Types::AudioArtifactsConfiguration]
408
+ #
409
+ # @!attribute [rw] video
410
+ # The configuration for the video artifacts.
411
+ # @return [Types::VideoArtifactsConfiguration]
412
+ #
413
+ # @!attribute [rw] content
414
+ # The configuration for the content artifacts.
415
+ # @return [Types::ContentArtifactsConfiguration]
416
+ #
417
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ArtifactsConfiguration AWS API Documentation
418
+ #
419
+ class ArtifactsConfiguration < Struct.new(
420
+ :audio,
421
+ :video,
422
+ :content)
423
+ SENSITIVE = []
424
+ include Aws::Structure
425
+ end
426
+
386
427
  # @note When making an API call, you may pass AssociatePhoneNumberWithUserRequest
387
428
  # data as a hash:
388
429
  #
@@ -580,6 +621,27 @@ module Aws::Chime
580
621
  include Aws::Structure
581
622
  end
582
623
 
624
+ # The audio artifact configuration object.
625
+ #
626
+ # @note When making an API call, you may pass AudioArtifactsConfiguration
627
+ # data as a hash:
628
+ #
629
+ # {
630
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
631
+ # }
632
+ #
633
+ # @!attribute [rw] mux_type
634
+ # The MUX type of the audio artifact configuration object.
635
+ # @return [String]
636
+ #
637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AudioArtifactsConfiguration AWS API Documentation
638
+ #
639
+ class AudioArtifactsConfiguration < Struct.new(
640
+ :mux_type)
641
+ SENSITIVE = []
642
+ include Aws::Structure
643
+ end
644
+
583
645
  # The input parameters don't match the service's restrictions.
584
646
  #
585
647
  # @!attribute [rw] code
@@ -601,7 +663,7 @@ module Aws::Chime
601
663
  # and membership types.
602
664
  #
603
665
  # @!attribute [rw] invited_by
604
- # The details of a user.
666
+ # The identifier of the member who invited another member.
605
667
  # @return [Types::Identity]
606
668
  #
607
669
  # @!attribute [rw] type
@@ -1237,7 +1299,7 @@ module Aws::Chime
1237
1299
  # @return [Types::ChannelSummary]
1238
1300
  #
1239
1301
  # @!attribute [rw] app_instance_user_membership_summary
1240
- # Returns the channel membership data for an `AppInstance`.
1302
+ # Summary of the membership details of an `AppInstanceUser`.
1241
1303
  # @return [Types::AppInstanceUserMembershipSummary]
1242
1304
  #
1243
1305
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ChannelMembershipForAppInstanceUserSummary AWS API Documentation
@@ -1498,6 +1560,52 @@ module Aws::Chime
1498
1560
  include Aws::Structure
1499
1561
  end
1500
1562
 
1563
+ # The configuration object of the Amazon Chime SDK meeting for a
1564
+ # specified media capture pipeline. `SourceType` must be
1565
+ # `ChimeSdkMeeting`.
1566
+ #
1567
+ # @note When making an API call, you may pass ChimeSdkMeetingConfiguration
1568
+ # data as a hash:
1569
+ #
1570
+ # {
1571
+ # source_configuration: {
1572
+ # selected_video_streams: {
1573
+ # attendee_ids: ["GuidString"],
1574
+ # external_user_ids: ["ExternalUserIdType"],
1575
+ # },
1576
+ # },
1577
+ # artifacts_configuration: {
1578
+ # audio: { # required
1579
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
1580
+ # },
1581
+ # video: { # required
1582
+ # state: "Enabled", # required, accepts Enabled, Disabled
1583
+ # mux_type: "VideoOnly", # accepts VideoOnly
1584
+ # },
1585
+ # content: { # required
1586
+ # state: "Enabled", # required, accepts Enabled, Disabled
1587
+ # mux_type: "ContentOnly", # accepts ContentOnly
1588
+ # },
1589
+ # },
1590
+ # }
1591
+ #
1592
+ # @!attribute [rw] source_configuration
1593
+ # The source configuration for a specified media capture pipline.
1594
+ # @return [Types::SourceConfiguration]
1595
+ #
1596
+ # @!attribute [rw] artifacts_configuration
1597
+ # The configuration for the artifacts in an Amazon Chime SDK meeting.
1598
+ # @return [Types::ArtifactsConfiguration]
1599
+ #
1600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ChimeSdkMeetingConfiguration AWS API Documentation
1601
+ #
1602
+ class ChimeSdkMeetingConfiguration < Struct.new(
1603
+ :source_configuration,
1604
+ :artifacts_configuration)
1605
+ SENSITIVE = []
1606
+ include Aws::Structure
1607
+ end
1608
+
1501
1609
  # The request could not be processed because of conflict in the current
1502
1610
  # state of the resource.
1503
1611
  #
@@ -1516,6 +1624,33 @@ module Aws::Chime
1516
1624
  include Aws::Structure
1517
1625
  end
1518
1626
 
1627
+ # The content artifact object.
1628
+ #
1629
+ # @note When making an API call, you may pass ContentArtifactsConfiguration
1630
+ # data as a hash:
1631
+ #
1632
+ # {
1633
+ # state: "Enabled", # required, accepts Enabled, Disabled
1634
+ # mux_type: "ContentOnly", # accepts ContentOnly
1635
+ # }
1636
+ #
1637
+ # @!attribute [rw] state
1638
+ # Indicates whether the content artifact is enabled or disabled.
1639
+ # @return [String]
1640
+ #
1641
+ # @!attribute [rw] mux_type
1642
+ # The MUX type of the artifact configuration.
1643
+ # @return [String]
1644
+ #
1645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ContentArtifactsConfiguration AWS API Documentation
1646
+ #
1647
+ class ContentArtifactsConfiguration < Struct.new(
1648
+ :state,
1649
+ :mux_type)
1650
+ SENSITIVE = []
1651
+ include Aws::Structure
1652
+ end
1653
+
1519
1654
  # The retention settings that determine how long to retain conversation
1520
1655
  # messages for an Amazon Chime Enterprise account.
1521
1656
  #
@@ -2140,6 +2275,27 @@ module Aws::Chime
2140
2275
  # sink_type: "S3Bucket", # required, accepts S3Bucket
2141
2276
  # sink_arn: "Arn", # required
2142
2277
  # client_request_token: "ClientRequestToken",
2278
+ # chime_sdk_meeting_configuration: {
2279
+ # source_configuration: {
2280
+ # selected_video_streams: {
2281
+ # attendee_ids: ["GuidString"],
2282
+ # external_user_ids: ["ExternalUserIdType"],
2283
+ # },
2284
+ # },
2285
+ # artifacts_configuration: {
2286
+ # audio: { # required
2287
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
2288
+ # },
2289
+ # video: { # required
2290
+ # state: "Enabled", # required, accepts Enabled, Disabled
2291
+ # mux_type: "VideoOnly", # accepts VideoOnly
2292
+ # },
2293
+ # content: { # required
2294
+ # state: "Enabled", # required, accepts Enabled, Disabled
2295
+ # mux_type: "ContentOnly", # accepts ContentOnly
2296
+ # },
2297
+ # },
2298
+ # },
2143
2299
  # }
2144
2300
  #
2145
2301
  # @!attribute [rw] source_type
@@ -2167,6 +2323,11 @@ module Aws::Chime
2167
2323
  # not need to pass this option.
2168
2324
  # @return [String]
2169
2325
  #
2326
+ # @!attribute [rw] chime_sdk_meeting_configuration
2327
+ # The configuration for a specified media capture pipeline.
2328
+ # `SourceType` must be `ChimeSdkMeeting`.
2329
+ # @return [Types::ChimeSdkMeetingConfiguration]
2330
+ #
2170
2331
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineRequest AWS API Documentation
2171
2332
  #
2172
2333
  class CreateMediaCapturePipelineRequest < Struct.new(
@@ -2174,7 +2335,8 @@ module Aws::Chime
2174
2335
  :source_arn,
2175
2336
  :sink_type,
2176
2337
  :sink_arn,
2177
- :client_request_token)
2338
+ :client_request_token,
2339
+ :chime_sdk_meeting_configuration)
2178
2340
  SENSITIVE = [:source_arn, :sink_arn, :client_request_token]
2179
2341
  include Aws::Structure
2180
2342
  end
@@ -2655,6 +2817,9 @@ module Aws::Chime
2655
2817
  # from_phone_number: "E164PhoneNumber", # required
2656
2818
  # to_phone_number: "E164PhoneNumber", # required
2657
2819
  # sip_media_application_id: "NonEmptyString", # required
2820
+ # sip_headers: {
2821
+ # "SensitiveString" => "SensitiveString",
2822
+ # },
2658
2823
  # }
2659
2824
  #
2660
2825
  # @!attribute [rw] from_phone_number
@@ -2670,12 +2835,17 @@ module Aws::Chime
2670
2835
  # The ID of the SIP media application.
2671
2836
  # @return [String]
2672
2837
  #
2838
+ # @!attribute [rw] sip_headers
2839
+ # The SIP headers added to an outbound call leg.
2840
+ # @return [Hash<String,String>]
2841
+ #
2673
2842
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateSipMediaApplicationCallRequest AWS API Documentation
2674
2843
  #
2675
2844
  class CreateSipMediaApplicationCallRequest < Struct.new(
2676
2845
  :from_phone_number,
2677
2846
  :to_phone_number,
2678
- :sip_media_application_id)
2847
+ :sip_media_application_id,
2848
+ :sip_headers)
2679
2849
  SENSITIVE = [:from_phone_number, :to_phone_number]
2680
2850
  include Aws::Structure
2681
2851
  end
@@ -4182,7 +4352,7 @@ module Aws::Chime
4182
4352
  # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
4183
4353
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
4184
4354
  # vocabulary_name: "String",
4185
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
4355
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
4186
4356
  # }
4187
4357
  #
4188
4358
  # @!attribute [rw] language_code
@@ -4204,8 +4374,7 @@ module Aws::Chime
4204
4374
  #
4205
4375
  # @!attribute [rw] region
4206
4376
  # The AWS Region passed to Amazon Transcribe Medical. If you don't
4207
- # specify a Region, Amazon Chime uses the Region closest to the
4208
- # meeting's Region.
4377
+ # specify a Region, Amazon Chime uses the meeting's Region.
4209
4378
  # @return [String]
4210
4379
  #
4211
4380
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
@@ -4230,7 +4399,7 @@ module Aws::Chime
4230
4399
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
4231
4400
  # vocabulary_filter_name: "String",
4232
4401
  # vocabulary_name: "String",
4233
- # 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
4402
+ # 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
4234
4403
  # }
4235
4404
  #
4236
4405
  # @!attribute [rw] language_code
@@ -4251,8 +4420,7 @@ module Aws::Chime
4251
4420
  #
4252
4421
  # @!attribute [rw] region
4253
4422
  # The AWS Region passed to Amazon Transcribe. If you don't specify a
4254
- # Region, Amazon Chime uses the Region closest to the meeting's
4255
- # Region.
4423
+ # Region, Amazon Chime uses the meeting's Region.
4256
4424
  # @return [String]
4257
4425
  #
4258
4426
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
@@ -7008,8 +7176,8 @@ module Aws::Chime
7008
7176
  #
7009
7177
  class LogoutUserResponse < Aws::EmptyStructure; end
7010
7178
 
7011
- # A media capture pipeline object. A string consisting of an ID, source
7012
- # type, a source ARN, a sink type, and a sink ARN.
7179
+ # A media capture pipeline object consisting of an ID, source type,
7180
+ # source ARN, a sink type, a sink ARN, and a configuration object.
7013
7181
  #
7014
7182
  # @!attribute [rw] media_pipeline_id
7015
7183
  # The ID of a media capture pipeline.
@@ -7047,6 +7215,11 @@ module Aws::Chime
7047
7215
  # format.
7048
7216
  # @return [Time]
7049
7217
  #
7218
+ # @!attribute [rw] chime_sdk_meeting_configuration
7219
+ # The configuration for a specified media capture pipeline.
7220
+ # `SourceType` must be `ChimeSdkMeeting`.
7221
+ # @return [Types::ChimeSdkMeetingConfiguration]
7222
+ #
7050
7223
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
7051
7224
  #
7052
7225
  class MediaCapturePipeline < Struct.new(
@@ -7057,7 +7230,8 @@ module Aws::Chime
7057
7230
  :sink_type,
7058
7231
  :sink_arn,
7059
7232
  :created_timestamp,
7060
- :updated_timestamp)
7233
+ :updated_timestamp,
7234
+ :chime_sdk_meeting_configuration)
7061
7235
  SENSITIVE = [:source_arn, :sink_arn]
7062
7236
  include Aws::Structure
7063
7237
  end
@@ -7094,7 +7268,7 @@ module Aws::Chime
7094
7268
  # @return [String]
7095
7269
  #
7096
7270
  # @!attribute [rw] event_ingestion_url
7097
- # The URL of the S3 bucket used to store the captured media.
7271
+ # The event ingestion URL.
7098
7272
  # @return [String]
7099
7273
  #
7100
7274
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -7315,6 +7489,11 @@ module Aws::Chime
7315
7489
  # Origination settings enable your SIP hosts to receive inbound calls
7316
7490
  # using your Amazon Chime Voice Connector.
7317
7491
  #
7492
+ # <note markdown="1"> The parameters listed below are not required, but you must use at
7493
+ # least one.
7494
+ #
7495
+ # </note>
7496
+ #
7318
7497
  # @note When making an API call, you may pass Origination
7319
7498
  # data as a hash:
7320
7499
  #
@@ -7333,12 +7512,14 @@ module Aws::Chime
7333
7512
  #
7334
7513
  # @!attribute [rw] routes
7335
7514
  # The call distribution properties defined for your SIP hosts. Valid
7336
- # range: Minimum value of 1. Maximum value of 20.
7515
+ # range: Minimum value of 1. Maximum value of 20. This parameter is
7516
+ # not required, but you must specify this parameter or `Disabled`.
7337
7517
  # @return [Array<Types::OriginationRoute>]
7338
7518
  #
7339
7519
  # @!attribute [rw] disabled
7340
7520
  # When origination settings are disabled, inbound calls are not
7341
- # enabled for your Amazon Chime Voice Connector.
7521
+ # enabled for your Amazon Chime Voice Connector. This parameter is not
7522
+ # required, but you must specify this parameter or `Routes`.
7342
7523
  # @return [Boolean]
7343
7524
  #
7344
7525
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Origination AWS API Documentation
@@ -7355,6 +7536,11 @@ module Aws::Chime
7355
7536
  # Connector. Limit: Ten origination routes for each Amazon Chime Voice
7356
7537
  # Connector.
7357
7538
  #
7539
+ # <note markdown="1"> The parameters listed below are not required, but you must use at
7540
+ # least one.
7541
+ #
7542
+ # </note>
7543
+ #
7358
7544
  # @note When making an API call, you may pass OriginationRoute
7359
7545
  # data as a hash:
7360
7546
  #
@@ -8747,6 +8933,36 @@ module Aws::Chime
8747
8933
  include Aws::Structure
8748
8934
  end
8749
8935
 
8936
+ # The video streams to capture for a specified media capture pipeline.
8937
+ # The total number of video streams can't exceed 25.
8938
+ #
8939
+ # @note When making an API call, you may pass SelectedVideoStreams
8940
+ # data as a hash:
8941
+ #
8942
+ # {
8943
+ # attendee_ids: ["GuidString"],
8944
+ # external_user_ids: ["ExternalUserIdType"],
8945
+ # }
8946
+ #
8947
+ # @!attribute [rw] attendee_ids
8948
+ # The attendee IDs of the streams selected for a media capture
8949
+ # pipeline.
8950
+ # @return [Array<String>]
8951
+ #
8952
+ # @!attribute [rw] external_user_ids
8953
+ # The external user IDs of the streams selected for a media capture
8954
+ # pipeline.
8955
+ # @return [Array<String>]
8956
+ #
8957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SelectedVideoStreams AWS API Documentation
8958
+ #
8959
+ class SelectedVideoStreams < Struct.new(
8960
+ :attendee_ids,
8961
+ :external_user_ids)
8962
+ SENSITIVE = []
8963
+ include Aws::Structure
8964
+ end
8965
+
8750
8966
  # @note When making an API call, you may pass SendChannelMessageRequest
8751
8967
  # data as a hash:
8752
8968
  #
@@ -9072,6 +9288,31 @@ module Aws::Chime
9072
9288
  include Aws::Structure
9073
9289
  end
9074
9290
 
9291
+ # Source configuration for a specified media capture pipeline.
9292
+ #
9293
+ # @note When making an API call, you may pass SourceConfiguration
9294
+ # data as a hash:
9295
+ #
9296
+ # {
9297
+ # selected_video_streams: {
9298
+ # attendee_ids: ["GuidString"],
9299
+ # external_user_ids: ["ExternalUserIdType"],
9300
+ # },
9301
+ # }
9302
+ #
9303
+ # @!attribute [rw] selected_video_streams
9304
+ # The selected video streams to capture for a specified media capture
9305
+ # pipeline. The number of video streams can't exceed 25.
9306
+ # @return [Types::SelectedVideoStreams]
9307
+ #
9308
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SourceConfiguration AWS API Documentation
9309
+ #
9310
+ class SourceConfiguration < Struct.new(
9311
+ :selected_video_streams)
9312
+ SENSITIVE = []
9313
+ include Aws::Structure
9314
+ end
9315
+
9075
9316
  # @note When making an API call, you may pass StartMeetingTranscriptionRequest
9076
9317
  # data as a hash:
9077
9318
  #
@@ -9083,14 +9324,14 @@ module Aws::Chime
9083
9324
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9084
9325
  # vocabulary_filter_name: "String",
9085
9326
  # vocabulary_name: "String",
9086
- # 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
9327
+ # 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
9087
9328
  # },
9088
9329
  # engine_transcribe_medical_settings: {
9089
9330
  # language_code: "en-US", # required, accepts en-US
9090
9331
  # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9091
9332
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9092
9333
  # vocabulary_name: "String",
9093
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
9334
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9094
9335
  # },
9095
9336
  # },
9096
9337
  # }
@@ -9459,14 +9700,14 @@ module Aws::Chime
9459
9700
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9460
9701
  # vocabulary_filter_name: "String",
9461
9702
  # vocabulary_name: "String",
9462
- # 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
9703
+ # 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
9463
9704
  # },
9464
9705
  # engine_transcribe_medical_settings: {
9465
9706
  # language_code: "en-US", # required, accepts en-US
9466
9707
  # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9467
9708
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9468
9709
  # vocabulary_name: "String",
9469
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
9710
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9470
9711
  # },
9471
9712
  # }
9472
9713
  #
@@ -9476,8 +9717,8 @@ module Aws::Chime
9476
9717
  # @return [Types::EngineTranscribeSettings]
9477
9718
  #
9478
9719
  # @!attribute [rw] engine_transcribe_medical_settings
9479
- # The transcription configuration settings passed to Amazon
9480
- # Transcribe.
9720
+ # The transcription configuration settings passed to Amazon Transcribe
9721
+ # Medical.
9481
9722
  # @return [Types::EngineTranscribeMedicalSettings]
9482
9723
  #
9483
9724
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TranscriptionConfiguration AWS API Documentation
@@ -9966,10 +10207,10 @@ module Aws::Chime
9966
10207
  # data as a hash:
9967
10208
  #
9968
10209
  # {
9969
- # business_calling: { # required
10210
+ # business_calling: {
9970
10211
  # cdr_bucket: "String",
9971
10212
  # },
9972
- # voice_connector: { # required
10213
+ # voice_connector: {
9973
10214
  # cdr_bucket: "String",
9974
10215
  # },
9975
10216
  # }
@@ -10734,6 +10975,33 @@ module Aws::Chime
10734
10975
  include Aws::Structure
10735
10976
  end
10736
10977
 
10978
+ # The video artifact configuration object.
10979
+ #
10980
+ # @note When making an API call, you may pass VideoArtifactsConfiguration
10981
+ # data as a hash:
10982
+ #
10983
+ # {
10984
+ # state: "Enabled", # required, accepts Enabled, Disabled
10985
+ # mux_type: "VideoOnly", # accepts VideoOnly
10986
+ # }
10987
+ #
10988
+ # @!attribute [rw] state
10989
+ # Indicates whether the video artifact is enabled or disabled.
10990
+ # @return [String]
10991
+ #
10992
+ # @!attribute [rw] mux_type
10993
+ # The MUX type of the video artifact configuration object.
10994
+ # @return [String]
10995
+ #
10996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VideoArtifactsConfiguration AWS API Documentation
10997
+ #
10998
+ class VideoArtifactsConfiguration < Struct.new(
10999
+ :state,
11000
+ :mux_type)
11001
+ SENSITIVE = []
11002
+ include Aws::Structure
11003
+ end
11004
+
10737
11005
  # The Amazon Chime Voice Connector configuration, including outbound
10738
11006
  # host name and encryption settings.
10739
11007
  #
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.54.0'
51
+ GEM_VERSION = '1.58.0'
52
52
 
53
53
  end
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.54.0
4
+ version: 1.58.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-07-30 00:00:00.000000000 Z
11
+ date: 2021-10-07 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.119.0
22
+ version: 3.120.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.119.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="