aws-sdk-chime 1.57.0 → 1.61.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: dbd8abb062c33c23c84a25b6e550fb9b547c1cc97765c82943d9c3adfb2930b1
4
- data.tar.gz: adbd2a31f83b1c3c8da84871a3bfd2358fbd5322c8d399a558b58e4c4b60e89c
3
+ metadata.gz: d44a5dd3ca9affa82939e9293971505c32cb7f848fd6137be5dbf616acfd9403
4
+ data.tar.gz: 0b5f6623dc4b9167cd021a8482f81939ff4647a9ea1d89853c514ba810870d95
5
5
  SHA512:
6
- metadata.gz: 8a029aa41ea57b6d6b09779c98d4e034785dc17786f116f69c18a137da0721ebdc12b1191a84d86b66d0459e1c3d59858d515f2f3f3fe9dc2cf032d0a9bc7583
7
- data.tar.gz: c53cac717ddc250d19e3612754ec9c2799d0c7beb6678f5c3cba66233bfc7d1da2a615a453a5b06c43a6d3e08d4fe6a11239bc4e4402d88a57ad726af83f7326
6
+ metadata.gz: 0e11db345d619ba6d4d71d4f3f3f456d9637cc4b6c0aa87ed252b8805e704e3d60bc937196596c8932e53789fc82bdeb59b8b0c76db2817e2a5019dd60495c67
7
+ data.tar.gz: 2ad6293174e4e67ac7d7edca27f80f0a3deec45de21c77a515028f013fd20085809b5647e101fdb0e15de9d9b84eab366f47c47f11706cb00072db94a58ea8e5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.60.0 (2021-10-22)
10
+ ------------------
11
+
12
+ * Feature - Chime VoiceConnector and VoiceConnectorGroup APIs will now return an ARN.
13
+
14
+ 1.59.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.58.0 (2021-10-07)
20
+ ------------------
21
+
22
+ * Feature - This release enables customers to configure Chime MediaCapturePipeline via API.
23
+
4
24
  1.57.0 (2021-09-14)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.61.0
@@ -275,6 +275,15 @@ module Aws::Chime
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -1433,6 +1442,10 @@ module Aws::Chime
1433
1442
  # **A suitable default value is auto-generated.** You should normally
1434
1443
  # not need to pass this option.**
1435
1444
  #
1445
+ # @option params [Types::ChimeSdkMeetingConfiguration] :chime_sdk_meeting_configuration
1446
+ # The configuration for a specified media capture pipeline. `SourceType`
1447
+ # must be `ChimeSdkMeeting`.
1448
+ #
1436
1449
  # @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1437
1450
  #
1438
1451
  # * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
@@ -1445,6 +1458,27 @@ module Aws::Chime
1445
1458
  # sink_type: "S3Bucket", # required, accepts S3Bucket
1446
1459
  # sink_arn: "Arn", # required
1447
1460
  # client_request_token: "ClientRequestToken",
1461
+ # chime_sdk_meeting_configuration: {
1462
+ # source_configuration: {
1463
+ # selected_video_streams: {
1464
+ # attendee_ids: ["GuidString"],
1465
+ # external_user_ids: ["ExternalUserIdType"],
1466
+ # },
1467
+ # },
1468
+ # artifacts_configuration: {
1469
+ # audio: { # required
1470
+ # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
1471
+ # },
1472
+ # video: { # required
1473
+ # state: "Enabled", # required, accepts Enabled, Disabled
1474
+ # mux_type: "VideoOnly", # accepts VideoOnly
1475
+ # },
1476
+ # content: { # required
1477
+ # state: "Enabled", # required, accepts Enabled, Disabled
1478
+ # mux_type: "ContentOnly", # accepts ContentOnly
1479
+ # },
1480
+ # },
1481
+ # },
1448
1482
  # })
1449
1483
  #
1450
1484
  # @example Response structure
@@ -1457,6 +1491,15 @@ module Aws::Chime
1457
1491
  # resp.media_capture_pipeline.sink_arn #=> String
1458
1492
  # resp.media_capture_pipeline.created_timestamp #=> Time
1459
1493
  # resp.media_capture_pipeline.updated_timestamp #=> Time
1494
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
1495
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
1496
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
1497
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
1498
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
1499
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
1500
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
1501
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
1502
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
1460
1503
  #
1461
1504
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
1462
1505
  #
@@ -2190,6 +2233,7 @@ module Aws::Chime
2190
2233
  # resp.voice_connector.require_encryption #=> Boolean
2191
2234
  # resp.voice_connector.created_timestamp #=> Time
2192
2235
  # resp.voice_connector.updated_timestamp #=> Time
2236
+ # resp.voice_connector.voice_connector_arn #=> String
2193
2237
  #
2194
2238
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnector AWS API Documentation
2195
2239
  #
@@ -2240,6 +2284,7 @@ module Aws::Chime
2240
2284
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
2241
2285
  # resp.voice_connector_group.created_timestamp #=> Time
2242
2286
  # resp.voice_connector_group.updated_timestamp #=> Time
2287
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
2243
2288
  #
2244
2289
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnectorGroup AWS API Documentation
2245
2290
  #
@@ -3896,6 +3941,15 @@ module Aws::Chime
3896
3941
  # resp.media_capture_pipeline.sink_arn #=> String
3897
3942
  # resp.media_capture_pipeline.created_timestamp #=> Time
3898
3943
  # resp.media_capture_pipeline.updated_timestamp #=> Time
3944
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
3945
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
3946
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
3947
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
3948
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
3949
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
3950
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
3951
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
3952
+ # resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
3899
3953
  #
3900
3954
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3901
3955
  #
@@ -4414,6 +4468,7 @@ module Aws::Chime
4414
4468
  # resp.voice_connector.require_encryption #=> Boolean
4415
4469
  # resp.voice_connector.created_timestamp #=> Time
4416
4470
  # resp.voice_connector.updated_timestamp #=> Time
4471
+ # resp.voice_connector.voice_connector_arn #=> String
4417
4472
  #
4418
4473
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnector AWS API Documentation
4419
4474
  #
@@ -4481,6 +4536,7 @@ module Aws::Chime
4481
4536
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
4482
4537
  # resp.voice_connector_group.created_timestamp #=> Time
4483
4538
  # resp.voice_connector_group.updated_timestamp #=> Time
4539
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
4484
4540
  #
4485
4541
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorGroup AWS API Documentation
4486
4542
  #
@@ -5535,6 +5591,15 @@ module Aws::Chime
5535
5591
  # resp.media_capture_pipelines[0].sink_arn #=> String
5536
5592
  # resp.media_capture_pipelines[0].created_timestamp #=> Time
5537
5593
  # resp.media_capture_pipelines[0].updated_timestamp #=> Time
5594
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
5595
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
5596
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
5597
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
5598
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
5599
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
5600
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
5601
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
5602
+ # resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
5538
5603
  # resp.next_token #=> String
5539
5604
  #
5540
5605
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
@@ -6174,6 +6239,7 @@ module Aws::Chime
6174
6239
  # resp.voice_connector_groups[0].voice_connector_items[0].priority #=> Integer
6175
6240
  # resp.voice_connector_groups[0].created_timestamp #=> Time
6176
6241
  # resp.voice_connector_groups[0].updated_timestamp #=> Time
6242
+ # resp.voice_connector_groups[0].voice_connector_group_arn #=> String
6177
6243
  # resp.next_token #=> String
6178
6244
  #
6179
6245
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectorGroups AWS API Documentation
@@ -6248,6 +6314,7 @@ module Aws::Chime
6248
6314
  # resp.voice_connectors[0].require_encryption #=> Boolean
6249
6315
  # resp.voice_connectors[0].created_timestamp #=> Time
6250
6316
  # resp.voice_connectors[0].updated_timestamp #=> Time
6317
+ # resp.voice_connectors[0].voice_connector_arn #=> String
6251
6318
  # resp.next_token #=> String
6252
6319
  #
6253
6320
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectors AWS API Documentation
@@ -7795,10 +7862,10 @@ module Aws::Chime
7795
7862
  # Amazon Chime Business Calling and Amazon Chime Voice Connector
7796
7863
  # settings.
7797
7864
  #
7798
- # @option params [required, Types::BusinessCallingSettings] :business_calling
7865
+ # @option params [Types::BusinessCallingSettings] :business_calling
7799
7866
  # The Amazon Chime Business Calling settings.
7800
7867
  #
7801
- # @option params [required, Types::VoiceConnectorSettings] :voice_connector
7868
+ # @option params [Types::VoiceConnectorSettings] :voice_connector
7802
7869
  # The Amazon Chime Voice Connector settings.
7803
7870
  #
7804
7871
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -7806,10 +7873,10 @@ module Aws::Chime
7806
7873
  # @example Request syntax with placeholder values
7807
7874
  #
7808
7875
  # resp = client.update_global_settings({
7809
- # business_calling: { # required
7876
+ # business_calling: {
7810
7877
  # cdr_bucket: "String",
7811
7878
  # },
7812
- # voice_connector: { # required
7879
+ # voice_connector: {
7813
7880
  # cdr_bucket: "String",
7814
7881
  # },
7815
7882
  # })
@@ -8340,6 +8407,7 @@ module Aws::Chime
8340
8407
  # resp.voice_connector.require_encryption #=> Boolean
8341
8408
  # resp.voice_connector.created_timestamp #=> Time
8342
8409
  # resp.voice_connector.updated_timestamp #=> Time
8410
+ # resp.voice_connector.voice_connector_arn #=> String
8343
8411
  #
8344
8412
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnector AWS API Documentation
8345
8413
  #
@@ -8388,6 +8456,7 @@ module Aws::Chime
8388
8456
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
8389
8457
  # resp.voice_connector_group.created_timestamp #=> Time
8390
8458
  # resp.voice_connector_group.updated_timestamp #=> Time
8459
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
8391
8460
  #
8392
8461
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnectorGroup AWS API Documentation
8393
8462
  #
@@ -8411,7 +8480,7 @@ module Aws::Chime
8411
8480
  params: params,
8412
8481
  config: config)
8413
8482
  context[:gem_name] = 'aws-sdk-chime'
8414
- context[:gem_version] = '1.57.0'
8483
+ context[:gem_version] = '1.61.0'
8415
8484
  Seahorse::Client::Request.new(handlers, context)
8416
8485
  end
8417
8486
 
@@ -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')
@@ -526,6 +536,7 @@ module Aws::Chime
526
536
  SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
527
537
  SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
528
538
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
539
+ SourceConfiguration = Shapes::StructureShape.new(name: 'SourceConfiguration')
529
540
  StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
530
541
  StartMeetingTranscriptionResponse = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionResponse')
531
542
  StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
@@ -618,6 +629,8 @@ module Aws::Chime
618
629
  UserName = Shapes::StringShape.new(name: 'UserName')
619
630
  UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
620
631
  UserType = Shapes::StringShape.new(name: 'UserType')
632
+ VideoArtifactsConfiguration = Shapes::StructureShape.new(name: 'VideoArtifactsConfiguration')
633
+ VideoMuxType = Shapes::StringShape.new(name: 'VideoMuxType')
621
634
  VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
622
635
  VoiceConnectorAwsRegion = Shapes::StringShape.new(name: 'VoiceConnectorAwsRegion')
623
636
  VoiceConnectorGroup = Shapes::StructureShape.new(name: 'VoiceConnectorGroup')
@@ -706,6 +719,11 @@ module Aws::Chime
706
719
  AppInstanceUserSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
707
720
  AppInstanceUserSummary.struct_class = Types::AppInstanceUserSummary
708
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
+
709
727
  AssociatePhoneNumberWithUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "accountId"))
710
728
  AssociatePhoneNumberWithUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "userId"))
711
729
  AssociatePhoneNumberWithUserRequest.add_member(:e164_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "E164PhoneNumber"))
@@ -740,12 +758,17 @@ module Aws::Chime
740
758
  Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
741
759
  Attendee.struct_class = Types::Attendee
742
760
 
761
+ AttendeeIdList.member = Shapes::ShapeRef.new(shape: GuidString)
762
+
743
763
  AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
744
764
 
745
765
  AttendeeTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
746
766
 
747
767
  AttendeeTagList.member = Shapes::ShapeRef.new(shape: Tag)
748
768
 
769
+ AudioArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: AudioMuxType, required: true, location_name: "MuxType"))
770
+ AudioArtifactsConfiguration.struct_class = Types::AudioArtifactsConfiguration
771
+
749
772
  BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
750
773
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
751
774
  BadRequestException.struct_class = Types::BadRequestException
@@ -940,10 +963,18 @@ module Aws::Chime
940
963
 
941
964
  ChannelSummaryList.member = Shapes::ShapeRef.new(shape: ChannelSummary)
942
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
+
943
970
  ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
944
971
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
945
972
  ConflictException.struct_class = Types::ConflictException
946
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
+
947
978
  ConversationRetentionSettings.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
948
979
  ConversationRetentionSettings.struct_class = Types::ConversationRetentionSettings
949
980
 
@@ -1056,6 +1087,7 @@ module Aws::Chime
1056
1087
  CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
1057
1088
  CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
1058
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"))
1059
1091
  CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
1060
1092
 
1061
1093
  CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
@@ -1417,6 +1449,8 @@ module Aws::Chime
1417
1449
  EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
1418
1450
  EventsConfiguration.struct_class = Types::EventsConfiguration
1419
1451
 
1452
+ ExternalUserIdList.member = Shapes::ShapeRef.new(shape: ExternalUserIdType)
1453
+
1420
1454
  ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
1421
1455
  ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1422
1456
  ForbiddenException.struct_class = Types::ForbiddenException
@@ -1938,6 +1972,7 @@ module Aws::Chime
1938
1972
  MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
1939
1973
  MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
1940
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"))
1941
1976
  MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
1942
1977
 
1943
1978
  MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
@@ -2286,6 +2321,10 @@ module Aws::Chime
2286
2321
  SearchAvailablePhoneNumbersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
2287
2322
  SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
2288
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
+
2289
2328
  SendChannelMessageRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
2290
2329
  SendChannelMessageRequest.add_member(:content, Shapes::ShapeRef.new(shape: NonEmptyContent, required: true, location_name: "Content"))
2291
2330
  SendChannelMessageRequest.add_member(:type, Shapes::ShapeRef.new(shape: ChannelMessageType, required: true, location_name: "Type"))
@@ -2357,6 +2396,9 @@ module Aws::Chime
2357
2396
 
2358
2397
  SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
2359
2398
 
2399
+ SourceConfiguration.add_member(:selected_video_streams, Shapes::ShapeRef.new(shape: SelectedVideoStreams, location_name: "SelectedVideoStreams"))
2400
+ SourceConfiguration.struct_class = Types::SourceConfiguration
2401
+
2360
2402
  StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
2361
2403
  StartMeetingTranscriptionRequest.add_member(:transcription_configuration, Shapes::ShapeRef.new(shape: TranscriptionConfiguration, required: true, location_name: "TranscriptionConfiguration"))
2362
2404
  StartMeetingTranscriptionRequest.struct_class = Types::StartMeetingTranscriptionRequest
@@ -2512,8 +2554,8 @@ module Aws::Chime
2512
2554
  UpdateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
2513
2555
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
2514
2556
 
2515
- UpdateGlobalSettingsRequest.add_member(:business_calling, Shapes::ShapeRef.new(shape: BusinessCallingSettings, required: true, location_name: "BusinessCalling"))
2516
- 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"))
2517
2559
  UpdateGlobalSettingsRequest.struct_class = Types::UpdateGlobalSettingsRequest
2518
2560
 
2519
2561
  UpdatePhoneNumberRequest.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "phoneNumberId"))
@@ -2655,6 +2697,10 @@ module Aws::Chime
2655
2697
  UserSettings.add_member(:telephony, Shapes::ShapeRef.new(shape: TelephonySettings, required: true, location_name: "Telephony"))
2656
2698
  UserSettings.struct_class = Types::UserSettings
2657
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
+
2658
2704
  VoiceConnector.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorId"))
2659
2705
  VoiceConnector.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
2660
2706
  VoiceConnector.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorName, location_name: "Name"))
@@ -2662,6 +2708,7 @@ module Aws::Chime
2662
2708
  VoiceConnector.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequireEncryption"))
2663
2709
  VoiceConnector.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
2664
2710
  VoiceConnector.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
2711
+ VoiceConnector.add_member(:voice_connector_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorArn"))
2665
2712
  VoiceConnector.struct_class = Types::VoiceConnector
2666
2713
 
2667
2714
  VoiceConnectorGroup.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupId"))
@@ -2669,6 +2716,7 @@ module Aws::Chime
2669
2716
  VoiceConnectorGroup.add_member(:voice_connector_items, Shapes::ShapeRef.new(shape: VoiceConnectorItemList, location_name: "VoiceConnectorItems"))
2670
2717
  VoiceConnectorGroup.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
2671
2718
  VoiceConnectorGroup.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
2719
+ VoiceConnectorGroup.add_member(:voice_connector_group_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupArn"))
2672
2720
  VoiceConnectorGroup.struct_class = Types::VoiceConnectorGroup
2673
2721
 
2674
2722
  VoiceConnectorGroupList.member = Shapes::ShapeRef.new(shape: VoiceConnectorGroup)
@@ -5676,6 +5724,7 @@ module Aws::Chime
5676
5724
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5677
5725
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5678
5726
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5727
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
5679
5728
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5680
5729
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5681
5730
  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
@@ -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
@@ -7014,8 +7176,8 @@ module Aws::Chime
7014
7176
  #
7015
7177
  class LogoutUserResponse < Aws::EmptyStructure; end
7016
7178
 
7017
- # A media capture pipeline object. A string consisting of an ID, source
7018
- # 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.
7019
7181
  #
7020
7182
  # @!attribute [rw] media_pipeline_id
7021
7183
  # The ID of a media capture pipeline.
@@ -7053,6 +7215,11 @@ module Aws::Chime
7053
7215
  # format.
7054
7216
  # @return [Time]
7055
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
+ #
7056
7223
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
7057
7224
  #
7058
7225
  class MediaCapturePipeline < Struct.new(
@@ -7063,7 +7230,8 @@ module Aws::Chime
7063
7230
  :sink_type,
7064
7231
  :sink_arn,
7065
7232
  :created_timestamp,
7066
- :updated_timestamp)
7233
+ :updated_timestamp,
7234
+ :chime_sdk_meeting_configuration)
7067
7235
  SENSITIVE = [:source_arn, :sink_arn]
7068
7236
  include Aws::Structure
7069
7237
  end
@@ -7100,7 +7268,7 @@ module Aws::Chime
7100
7268
  # @return [String]
7101
7269
  #
7102
7270
  # @!attribute [rw] event_ingestion_url
7103
- # The URL of the S3 bucket used to store the captured media.
7271
+ # The event ingestion URL.
7104
7272
  # @return [String]
7105
7273
  #
7106
7274
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8765,6 +8933,36 @@ module Aws::Chime
8765
8933
  include Aws::Structure
8766
8934
  end
8767
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
+
8768
8966
  # @note When making an API call, you may pass SendChannelMessageRequest
8769
8967
  # data as a hash:
8770
8968
  #
@@ -9090,6 +9288,31 @@ module Aws::Chime
9090
9288
  include Aws::Structure
9091
9289
  end
9092
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
+
9093
9316
  # @note When making an API call, you may pass StartMeetingTranscriptionRequest
9094
9317
  # data as a hash:
9095
9318
  #
@@ -9984,10 +10207,10 @@ module Aws::Chime
9984
10207
  # data as a hash:
9985
10208
  #
9986
10209
  # {
9987
- # business_calling: { # required
10210
+ # business_calling: {
9988
10211
  # cdr_bucket: "String",
9989
10212
  # },
9990
- # voice_connector: { # required
10213
+ # voice_connector: {
9991
10214
  # cdr_bucket: "String",
9992
10215
  # },
9993
10216
  # }
@@ -10752,6 +10975,33 @@ module Aws::Chime
10752
10975
  include Aws::Structure
10753
10976
  end
10754
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
+
10755
11005
  # The Amazon Chime Voice Connector configuration, including outbound
10756
11006
  # host name and encryption settings.
10757
11007
  #
@@ -10787,6 +11037,10 @@ module Aws::Chime
10787
11037
  # format.
10788
11038
  # @return [Time]
10789
11039
  #
11040
+ # @!attribute [rw] voice_connector_arn
11041
+ # The ARN of the specified Amazon Chime Voice Connector.
11042
+ # @return [String]
11043
+ #
10790
11044
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnector AWS API Documentation
10791
11045
  #
10792
11046
  class VoiceConnector < Struct.new(
@@ -10796,7 +11050,8 @@ module Aws::Chime
10796
11050
  :outbound_host_name,
10797
11051
  :require_encryption,
10798
11052
  :created_timestamp,
10799
- :updated_timestamp)
11053
+ :updated_timestamp,
11054
+ :voice_connector_arn)
10800
11055
  SENSITIVE = []
10801
11056
  include Aws::Structure
10802
11057
  end
@@ -10829,6 +11084,10 @@ module Aws::Chime
10829
11084
  # 8601 format.
10830
11085
  # @return [Time]
10831
11086
  #
11087
+ # @!attribute [rw] voice_connector_group_arn
11088
+ # The ARN of the specified Amazon Chime Voice Connector group.
11089
+ # @return [String]
11090
+ #
10832
11091
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnectorGroup AWS API Documentation
10833
11092
  #
10834
11093
  class VoiceConnectorGroup < Struct.new(
@@ -10836,7 +11095,8 @@ module Aws::Chime
10836
11095
  :name,
10837
11096
  :voice_connector_items,
10838
11097
  :created_timestamp,
10839
- :updated_timestamp)
11098
+ :updated_timestamp,
11099
+ :voice_connector_group_arn)
10840
11100
  SENSITIVE = []
10841
11101
  include Aws::Structure
10842
11102
  end
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.57.0'
51
+ GEM_VERSION = '1.61.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.57.0
4
+ version: 1.61.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-09-14 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement