aws-sdk-chime 1.57.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: dbd8abb062c33c23c84a25b6e550fb9b547c1cc97765c82943d9c3adfb2930b1
4
- data.tar.gz: adbd2a31f83b1c3c8da84871a3bfd2358fbd5322c8d399a558b58e4c4b60e89c
3
+ metadata.gz: 2c61a093dfdc4c48bb32b0d11e31e7d7eea66615784fe9bcf6d0a10ffd1b8bd3
4
+ data.tar.gz: ff3970031a976071e87c910707954f03ec7146076f371ecdbec26533404a148a
5
5
  SHA512:
6
- metadata.gz: 8a029aa41ea57b6d6b09779c98d4e034785dc17786f116f69c18a137da0721ebdc12b1191a84d86b66d0459e1c3d59858d515f2f3f3fe9dc2cf032d0a9bc7583
7
- data.tar.gz: c53cac717ddc250d19e3612754ec9c2799d0c7beb6678f5c3cba66233bfc7d1da2a615a453a5b06c43a6d3e08d4fe6a11239bc4e4402d88a57ad726af83f7326
6
+ metadata.gz: 2b8251eab9e2d35973ff65bdfb9a6085bc0fc93b872e96315ba4cfefa2cb21fd4e243db037e668d76c75abbd96e2944e8f55f3ff5d6bad7d97da848e0a5791e4
7
+ data.tar.gz: 1b4ab0f4708c141862388963e4f2185b1e36fe4e699c78833a538caf56b74b083ac9ce09066015e97154f86aca243b0f5ab78c8f8893e2ec984ea2df954635b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.57.0 (2021-09-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.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
  #
@@ -3896,6 +3930,15 @@ module Aws::Chime
3896
3930
  # resp.media_capture_pipeline.sink_arn #=> String
3897
3931
  # resp.media_capture_pipeline.created_timestamp #=> Time
3898
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"
3899
3942
  #
3900
3943
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3901
3944
  #
@@ -5535,6 +5578,15 @@ module Aws::Chime
5535
5578
  # resp.media_capture_pipelines[0].sink_arn #=> String
5536
5579
  # resp.media_capture_pipelines[0].created_timestamp #=> Time
5537
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"
5538
5590
  # resp.next_token #=> String
5539
5591
  #
5540
5592
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
@@ -7795,10 +7847,10 @@ module Aws::Chime
7795
7847
  # Amazon Chime Business Calling and Amazon Chime Voice Connector
7796
7848
  # settings.
7797
7849
  #
7798
- # @option params [required, Types::BusinessCallingSettings] :business_calling
7850
+ # @option params [Types::BusinessCallingSettings] :business_calling
7799
7851
  # The Amazon Chime Business Calling settings.
7800
7852
  #
7801
- # @option params [required, Types::VoiceConnectorSettings] :voice_connector
7853
+ # @option params [Types::VoiceConnectorSettings] :voice_connector
7802
7854
  # The Amazon Chime Voice Connector settings.
7803
7855
  #
7804
7856
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -7806,10 +7858,10 @@ module Aws::Chime
7806
7858
  # @example Request syntax with placeholder values
7807
7859
  #
7808
7860
  # resp = client.update_global_settings({
7809
- # business_calling: { # required
7861
+ # business_calling: {
7810
7862
  # cdr_bucket: "String",
7811
7863
  # },
7812
- # voice_connector: { # required
7864
+ # voice_connector: {
7813
7865
  # cdr_bucket: "String",
7814
7866
  # },
7815
7867
  # })
@@ -8411,7 +8463,7 @@ module Aws::Chime
8411
8463
  params: params,
8412
8464
  config: config)
8413
8465
  context[:gem_name] = 'aws-sdk-chime'
8414
- context[:gem_version] = '1.57.0'
8466
+ context[:gem_version] = '1.58.0'
8415
8467
  Seahorse::Client::Request.new(handlers, context)
8416
8468
  end
8417
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')
@@ -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"))
@@ -5676,6 +5722,7 @@ module Aws::Chime
5676
5722
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5677
5723
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5678
5724
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5725
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
5679
5726
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5680
5727
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5681
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
@@ -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
  #
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.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.57.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-09-14 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