aws-sdk-chime 1.49.0 → 1.50.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: 7b0726bb32625e6a74388cc38b4045da281a839fcd7a4c6ef5d3342335c354be
4
- data.tar.gz: 1f00f48b24cb6c1198bdee293ab07535486ce8979efdb2b27220ed338dff45ee
3
+ metadata.gz: c09cdb75d4a88983a9fc6855526f9f425437bab02c7e0e0cb2347542668a1714
4
+ data.tar.gz: f50ac7793940c16b68104db72f5d15714470207e404296c8bcc7f37f083bdb02
5
5
  SHA512:
6
- metadata.gz: 2253f8703589de7712dc3db0c8db4b28d6da3f354367262e971d67a0edaf1effa447e3c9e325f211f7a7d02a0184a4f410ac48774182d5b77c8cf02abbece50a
7
- data.tar.gz: 99bb6636a88d2d92b8e6905a7acb3510cf1aee76d5b823f90ebaaa26872ff65b9901a7f2b95c1e949230d842461b6af84d1e243a0f8bcf30d067e203dc46076f
6
+ metadata.gz: 2571f36292fe9f82bd213c2b83de8b9bc080c69c56959670983e76f308823d58518513ecd6e01ced7796882e116a3921a254d16ce59d798b69c2b3241dd97b2c
7
+ data.tar.gz: 2ab22bb9dd394a732dd11adfacaf43bbda210a82223521f6c601fa252cbdc9dcd86a96126757b3db16489cfbbd8c7daa3ada2a06f211d13bab02f9ee3f460286
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2021-07-07)
5
+ ------------------
6
+
7
+ * Feature - Releasing new APIs for AWS Chime MediaCapturePipeline
8
+
4
9
  1.49.0 (2021-06-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
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.49.0'
51
+ GEM_VERSION = '1.50.0'
52
52
 
53
53
  end
@@ -1410,6 +1410,62 @@ module Aws::Chime
1410
1410
  req.send_request(options)
1411
1411
  end
1412
1412
 
1413
+ # Creates a media capture pipeline.
1414
+ #
1415
+ # @option params [required, String] :source_type
1416
+ # Source type from which the media artifacts will be captured. A Chime
1417
+ # SDK Meeting is the only supported source.
1418
+ #
1419
+ # @option params [required, String] :source_arn
1420
+ # ARN of the source from which the media artifacts are captured.
1421
+ #
1422
+ # @option params [required, String] :sink_type
1423
+ # Destination type to which the media artifacts are saved. You must use
1424
+ # an S3 bucket.
1425
+ #
1426
+ # @option params [required, String] :sink_arn
1427
+ # The ARN of the sink type.
1428
+ #
1429
+ # @option params [String] :client_request_token
1430
+ # The token assigned to the client making the pipeline request.
1431
+ #
1432
+ # **A suitable default value is auto-generated.** You should normally
1433
+ # not need to pass this option.**
1434
+ #
1435
+ # @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1436
+ #
1437
+ # * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
1438
+ #
1439
+ # @example Request syntax with placeholder values
1440
+ #
1441
+ # resp = client.create_media_capture_pipeline({
1442
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
1443
+ # source_arn: "Arn", # required
1444
+ # sink_type: "S3Bucket", # required, accepts S3Bucket
1445
+ # sink_arn: "Arn", # required
1446
+ # client_request_token: "ClientRequestToken",
1447
+ # })
1448
+ #
1449
+ # @example Response structure
1450
+ #
1451
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
1452
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
1453
+ # resp.media_capture_pipeline.source_arn #=> String
1454
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1455
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
1456
+ # resp.media_capture_pipeline.sink_arn #=> String
1457
+ # resp.media_capture_pipeline.created_timestamp #=> Time
1458
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
1459
+ #
1460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
1461
+ #
1462
+ # @overload create_media_capture_pipeline(params = {})
1463
+ # @param [Hash] params ({})
1464
+ def create_media_capture_pipeline(params = {}, options = {})
1465
+ req = build_request(:create_media_capture_pipeline, params)
1466
+ req.send_request(options)
1467
+ end
1468
+
1413
1469
  # Creates a new Amazon Chime SDK meeting in the specified media Region
1414
1470
  # with no initial attendees. For more information about specifying media
1415
1471
  # Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
@@ -2555,6 +2611,28 @@ module Aws::Chime
2555
2611
  req.send_request(options)
2556
2612
  end
2557
2613
 
2614
+ # Deletes the media capture pipeline.
2615
+ #
2616
+ # @option params [required, String] :media_pipeline_id
2617
+ # The ID of the media capture pipeline being deleted.
2618
+ #
2619
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2620
+ #
2621
+ # @example Request syntax with placeholder values
2622
+ #
2623
+ # resp = client.delete_media_capture_pipeline({
2624
+ # media_pipeline_id: "GuidString", # required
2625
+ # })
2626
+ #
2627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipeline AWS API Documentation
2628
+ #
2629
+ # @overload delete_media_capture_pipeline(params = {})
2630
+ # @param [Hash] params ({})
2631
+ def delete_media_capture_pipeline(params = {}, options = {})
2632
+ req = build_request(:delete_media_capture_pipeline, params)
2633
+ req.send_request(options)
2634
+ end
2635
+
2558
2636
  # Deletes the specified Amazon Chime SDK meeting. The operation deletes
2559
2637
  # all attendees, disconnects all clients, and prevents new clients from
2560
2638
  # joining the meeting. For more information about the Amazon Chime SDK,
@@ -3785,6 +3863,41 @@ module Aws::Chime
3785
3863
  req.send_request(options)
3786
3864
  end
3787
3865
 
3866
+ # Gets an existing media capture pipeline.
3867
+ #
3868
+ # @option params [required, String] :media_pipeline_id
3869
+ # The ID of the pipeline that you want to get.
3870
+ #
3871
+ # @return [Types::GetMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3872
+ #
3873
+ # * {Types::GetMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
3874
+ #
3875
+ # @example Request syntax with placeholder values
3876
+ #
3877
+ # resp = client.get_media_capture_pipeline({
3878
+ # media_pipeline_id: "GuidString", # required
3879
+ # })
3880
+ #
3881
+ # @example Response structure
3882
+ #
3883
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
3884
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
3885
+ # resp.media_capture_pipeline.source_arn #=> String
3886
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
3887
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
3888
+ # resp.media_capture_pipeline.sink_arn #=> String
3889
+ # resp.media_capture_pipeline.created_timestamp #=> Time
3890
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
3891
+ #
3892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3893
+ #
3894
+ # @overload get_media_capture_pipeline(params = {})
3895
+ # @param [Hash] params ({})
3896
+ def get_media_capture_pipeline(params = {}, options = {})
3897
+ req = build_request(:get_media_capture_pipeline, params)
3898
+ req.send_request(options)
3899
+ end
3900
+
3788
3901
  # Gets the Amazon Chime SDK meeting details for the specified meeting
3789
3902
  # ID. For more information about the Amazon Chime SDK, see [Using the
3790
3903
  # Amazon Chime SDK][1] in the *Amazon Chime Developer Guide* .
@@ -5379,6 +5492,51 @@ module Aws::Chime
5379
5492
  req.send_request(options)
5380
5493
  end
5381
5494
 
5495
+ # Returns a list of media capture pipelines.
5496
+ #
5497
+ # @option params [String] :next_token
5498
+ # The token used to retrieve the next page of results.
5499
+ #
5500
+ # @option params [Integer] :max_results
5501
+ # The maximum number of results to return in a single call. Valid Range:
5502
+ # 1 - 99.
5503
+ #
5504
+ # @return [Types::ListMediaCapturePipelinesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5505
+ #
5506
+ # * {Types::ListMediaCapturePipelinesResponse#media_capture_pipelines #media_capture_pipelines} => Array<Types::MediaCapturePipeline>
5507
+ # * {Types::ListMediaCapturePipelinesResponse#next_token #next_token} => String
5508
+ #
5509
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5510
+ #
5511
+ # @example Request syntax with placeholder values
5512
+ #
5513
+ # resp = client.list_media_capture_pipelines({
5514
+ # next_token: "String",
5515
+ # max_results: 1,
5516
+ # })
5517
+ #
5518
+ # @example Response structure
5519
+ #
5520
+ # resp.media_capture_pipelines #=> Array
5521
+ # resp.media_capture_pipelines[0].media_pipeline_id #=> String
5522
+ # resp.media_capture_pipelines[0].source_type #=> String, one of "ChimeSdkMeeting"
5523
+ # resp.media_capture_pipelines[0].source_arn #=> String
5524
+ # resp.media_capture_pipelines[0].status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
5525
+ # resp.media_capture_pipelines[0].sink_type #=> String, one of "S3Bucket"
5526
+ # resp.media_capture_pipelines[0].sink_arn #=> String
5527
+ # resp.media_capture_pipelines[0].created_timestamp #=> Time
5528
+ # resp.media_capture_pipelines[0].updated_timestamp #=> Time
5529
+ # resp.next_token #=> String
5530
+ #
5531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
5532
+ #
5533
+ # @overload list_media_capture_pipelines(params = {})
5534
+ # @param [Hash] params ({})
5535
+ def list_media_capture_pipelines(params = {}, options = {})
5536
+ req = build_request(:list_media_capture_pipelines, params)
5537
+ req.send_request(options)
5538
+ end
5539
+
5382
5540
  # Lists the tags applied to an Amazon Chime SDK meeting resource.
5383
5541
  #
5384
5542
  # @option params [required, String] :meeting_id
@@ -8178,7 +8336,7 @@ module Aws::Chime
8178
8336
  params: params,
8179
8337
  config: config)
8180
8338
  context[:gem_name] = 'aws-sdk-chime'
8181
- context[:gem_version] = '1.49.0'
8339
+ context[:gem_version] = '1.50.0'
8182
8340
  Seahorse::Client::Request.new(handlers, context)
8183
8341
  end
8184
8342
 
@@ -137,6 +137,8 @@ module Aws::Chime
137
137
  CreateChannelModeratorResponse = Shapes::StructureShape.new(name: 'CreateChannelModeratorResponse')
138
138
  CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
139
139
  CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
140
+ CreateMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineRequest')
141
+ CreateMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineResponse')
140
142
  CreateMeetingDialOutRequest = Shapes::StructureShape.new(name: 'CreateMeetingDialOutRequest')
141
143
  CreateMeetingDialOutResponse = Shapes::StructureShape.new(name: 'CreateMeetingDialOutResponse')
142
144
  CreateMeetingRequest = Shapes::StructureShape.new(name: 'CreateMeetingRequest')
@@ -182,6 +184,7 @@ module Aws::Chime
182
184
  DeleteChannelModeratorRequest = Shapes::StructureShape.new(name: 'DeleteChannelModeratorRequest')
183
185
  DeleteChannelRequest = Shapes::StructureShape.new(name: 'DeleteChannelRequest')
184
186
  DeleteEventsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteEventsConfigurationRequest')
187
+ DeleteMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'DeleteMediaCapturePipelineRequest')
185
188
  DeleteMeetingRequest = Shapes::StructureShape.new(name: 'DeleteMeetingRequest')
186
189
  DeletePhoneNumberRequest = Shapes::StructureShape.new(name: 'DeletePhoneNumberRequest')
187
190
  DeleteProxySessionRequest = Shapes::StructureShape.new(name: 'DeleteProxySessionRequest')
@@ -253,6 +256,8 @@ module Aws::Chime
253
256
  GetEventsConfigurationRequest = Shapes::StructureShape.new(name: 'GetEventsConfigurationRequest')
254
257
  GetEventsConfigurationResponse = Shapes::StructureShape.new(name: 'GetEventsConfigurationResponse')
255
258
  GetGlobalSettingsResponse = Shapes::StructureShape.new(name: 'GetGlobalSettingsResponse')
259
+ GetMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineRequest')
260
+ GetMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineResponse')
256
261
  GetMeetingRequest = Shapes::StructureShape.new(name: 'GetMeetingRequest')
257
262
  GetMeetingResponse = Shapes::StructureShape.new(name: 'GetMeetingResponse')
258
263
  GetMessagingSessionEndpointRequest = Shapes::StructureShape.new(name: 'GetMessagingSessionEndpointRequest')
@@ -336,6 +341,8 @@ module Aws::Chime
336
341
  ListChannelsModeratedByAppInstanceUserResponse = Shapes::StructureShape.new(name: 'ListChannelsModeratedByAppInstanceUserResponse')
337
342
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
338
343
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
344
+ ListMediaCapturePipelinesRequest = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesRequest')
345
+ ListMediaCapturePipelinesResponse = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesResponse')
339
346
  ListMeetingTagsRequest = Shapes::StructureShape.new(name: 'ListMeetingTagsRequest')
340
347
  ListMeetingTagsResponse = Shapes::StructureShape.new(name: 'ListMeetingTagsResponse')
341
348
  ListMeetingsRequest = Shapes::StructureShape.new(name: 'ListMeetingsRequest')
@@ -370,6 +377,11 @@ module Aws::Chime
370
377
  LogoutUserRequest = Shapes::StructureShape.new(name: 'LogoutUserRequest')
371
378
  LogoutUserResponse = Shapes::StructureShape.new(name: 'LogoutUserResponse')
372
379
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
380
+ MediaCapturePipeline = Shapes::StructureShape.new(name: 'MediaCapturePipeline')
381
+ MediaCapturePipelineList = Shapes::ListShape.new(name: 'MediaCapturePipelineList')
382
+ MediaPipelineSinkType = Shapes::StringShape.new(name: 'MediaPipelineSinkType')
383
+ MediaPipelineSourceType = Shapes::StringShape.new(name: 'MediaPipelineSourceType')
384
+ MediaPipelineStatus = Shapes::StringShape.new(name: 'MediaPipelineStatus')
373
385
  MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
374
386
  Meeting = Shapes::StructureShape.new(name: 'Meeting')
375
387
  MeetingList = Shapes::ListShape.new(name: 'MeetingList')
@@ -1022,6 +1034,16 @@ module Aws::Chime
1022
1034
  CreateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
1023
1035
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
1024
1036
 
1037
+ CreateMediaCapturePipelineRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, required: true, location_name: "SourceType"))
1038
+ CreateMediaCapturePipelineRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SourceArn"))
1039
+ CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
1040
+ CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
1041
+ CreateMediaCapturePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1042
+ CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
1043
+
1044
+ CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
1045
+ CreateMediaCapturePipelineResponse.struct_class = Types::CreateMediaCapturePipelineResponse
1046
+
1025
1047
  CreateMeetingDialOutRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1026
1048
  CreateMeetingDialOutRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
1027
1049
  CreateMeetingDialOutRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
@@ -1208,6 +1230,9 @@ module Aws::Chime
1208
1230
  DeleteEventsConfigurationRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "botId"))
1209
1231
  DeleteEventsConfigurationRequest.struct_class = Types::DeleteEventsConfigurationRequest
1210
1232
 
1233
+ DeleteMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
1234
+ DeleteMediaCapturePipelineRequest.struct_class = Types::DeleteMediaCapturePipelineRequest
1235
+
1211
1236
  DeleteMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1212
1237
  DeleteMeetingRequest.struct_class = Types::DeleteMeetingRequest
1213
1238
 
@@ -1426,6 +1451,12 @@ module Aws::Chime
1426
1451
  GetGlobalSettingsResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, location_name: "VoiceConnector"))
1427
1452
  GetGlobalSettingsResponse.struct_class = Types::GetGlobalSettingsResponse
1428
1453
 
1454
+ GetMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
1455
+ GetMediaCapturePipelineRequest.struct_class = Types::GetMediaCapturePipelineRequest
1456
+
1457
+ GetMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
1458
+ GetMediaCapturePipelineResponse.struct_class = Types::GetMediaCapturePipelineResponse
1459
+
1429
1460
  GetMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1430
1461
  GetMeetingRequest.struct_class = Types::GetMeetingRequest
1431
1462
 
@@ -1724,6 +1755,14 @@ module Aws::Chime
1724
1755
  ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1725
1756
  ListChannelsResponse.struct_class = Types::ListChannelsResponse
1726
1757
 
1758
+ ListMediaCapturePipelinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
1759
+ ListMediaCapturePipelinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
1760
+ ListMediaCapturePipelinesRequest.struct_class = Types::ListMediaCapturePipelinesRequest
1761
+
1762
+ ListMediaCapturePipelinesResponse.add_member(:media_capture_pipelines, Shapes::ShapeRef.new(shape: MediaCapturePipelineList, location_name: "MediaCapturePipelines"))
1763
+ ListMediaCapturePipelinesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
1764
+ ListMediaCapturePipelinesResponse.struct_class = Types::ListMediaCapturePipelinesResponse
1765
+
1727
1766
  ListMeetingTagsRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1728
1767
  ListMeetingTagsRequest.struct_class = Types::ListMeetingTagsRequest
1729
1768
 
@@ -1859,6 +1898,18 @@ module Aws::Chime
1859
1898
 
1860
1899
  LogoutUserResponse.struct_class = Types::LogoutUserResponse
1861
1900
 
1901
+ MediaCapturePipeline.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MediaPipelineId"))
1902
+ MediaCapturePipeline.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, location_name: "SourceType"))
1903
+ MediaCapturePipeline.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceArn"))
1904
+ MediaCapturePipeline.add_member(:status, Shapes::ShapeRef.new(shape: MediaPipelineStatus, location_name: "Status"))
1905
+ MediaCapturePipeline.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, location_name: "SinkType"))
1906
+ MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
1907
+ MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
1908
+ MediaCapturePipeline.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
1909
+ MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
1910
+
1911
+ MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
1912
+
1862
1913
  MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioHostUrl"))
1863
1914
  MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioFallbackUrl"))
1864
1915
  MediaPlacement.add_member(:screen_data_url, Shapes::ShapeRef.new(shape: UriType, location_name: "ScreenDataUrl"))
@@ -2965,6 +3016,21 @@ module Aws::Chime
2965
3016
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2966
3017
  end)
2967
3018
 
3019
+ api.add_operation(:create_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
3020
+ o.name = "CreateMediaCapturePipeline"
3021
+ o.http_method = "POST"
3022
+ o.http_request_uri = "/media-capture-pipelines"
3023
+ o.input = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineRequest)
3024
+ o.output = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineResponse)
3025
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3026
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3027
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3028
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3029
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3030
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3031
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3032
+ end)
3033
+
2968
3034
  api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
2969
3035
  o.name = "CreateMeeting"
2970
3036
  o.http_method = "POST"
@@ -3369,6 +3435,21 @@ module Aws::Chime
3369
3435
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3370
3436
  end)
3371
3437
 
3438
+ api.add_operation(:delete_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
3439
+ o.name = "DeleteMediaCapturePipeline"
3440
+ o.http_method = "DELETE"
3441
+ o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
3442
+ o.input = Shapes::ShapeRef.new(shape: DeleteMediaCapturePipelineRequest)
3443
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3444
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3445
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
3446
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3447
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3448
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3449
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3450
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3451
+ end)
3452
+
3372
3453
  api.add_operation(:delete_meeting, Seahorse::Model::Operation.new.tap do |o|
3373
3454
  o.name = "DeleteMeeting"
3374
3455
  o.http_method = "DELETE"
@@ -3954,6 +4035,21 @@ module Aws::Chime
3954
4035
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3955
4036
  end)
3956
4037
 
4038
+ api.add_operation(:get_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
4039
+ o.name = "GetMediaCapturePipeline"
4040
+ o.http_method = "GET"
4041
+ o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
4042
+ o.input = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineRequest)
4043
+ o.output = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineResponse)
4044
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4045
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4046
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4047
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
4048
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
4049
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
4050
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
4051
+ end)
4052
+
3957
4053
  api.add_operation(:get_meeting, Seahorse::Model::Operation.new.tap do |o|
3958
4054
  o.name = "GetMeeting"
3959
4055
  o.http_method = "GET"
@@ -4607,6 +4703,26 @@ module Aws::Chime
4607
4703
  )
4608
4704
  end)
4609
4705
 
4706
+ api.add_operation(:list_media_capture_pipelines, Seahorse::Model::Operation.new.tap do |o|
4707
+ o.name = "ListMediaCapturePipelines"
4708
+ o.http_method = "GET"
4709
+ o.http_request_uri = "/media-capture-pipelines"
4710
+ o.input = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesRequest)
4711
+ o.output = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesResponse)
4712
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4713
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4714
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
4715
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
4716
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
4717
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
4718
+ o[:pager] = Aws::Pager.new(
4719
+ limit_key: "max_results",
4720
+ tokens: {
4721
+ "next_token" => "next_token"
4722
+ }
4723
+ )
4724
+ end)
4725
+
4610
4726
  api.add_operation(:list_meeting_tags, Seahorse::Model::Operation.new.tap do |o|
4611
4727
  o.name = "ListMeetingTags"
4612
4728
  o.http_method = "GET"
@@ -2126,6 +2126,67 @@ module Aws::Chime
2126
2126
  include Aws::Structure
2127
2127
  end
2128
2128
 
2129
+ # @note When making an API call, you may pass CreateMediaCapturePipelineRequest
2130
+ # data as a hash:
2131
+ #
2132
+ # {
2133
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
2134
+ # source_arn: "Arn", # required
2135
+ # sink_type: "S3Bucket", # required, accepts S3Bucket
2136
+ # sink_arn: "Arn", # required
2137
+ # client_request_token: "ClientRequestToken",
2138
+ # }
2139
+ #
2140
+ # @!attribute [rw] source_type
2141
+ # Source type from which the media artifacts will be captured. A Chime
2142
+ # SDK Meeting is the only supported source.
2143
+ # @return [String]
2144
+ #
2145
+ # @!attribute [rw] source_arn
2146
+ # ARN of the source from which the media artifacts are captured.
2147
+ # @return [String]
2148
+ #
2149
+ # @!attribute [rw] sink_type
2150
+ # Destination type to which the media artifacts are saved. You must
2151
+ # use an S3 bucket.
2152
+ # @return [String]
2153
+ #
2154
+ # @!attribute [rw] sink_arn
2155
+ # The ARN of the sink type.
2156
+ # @return [String]
2157
+ #
2158
+ # @!attribute [rw] client_request_token
2159
+ # The token assigned to the client making the pipeline request.
2160
+ #
2161
+ # **A suitable default value is auto-generated.** You should normally
2162
+ # not need to pass this option.
2163
+ # @return [String]
2164
+ #
2165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineRequest AWS API Documentation
2166
+ #
2167
+ class CreateMediaCapturePipelineRequest < Struct.new(
2168
+ :source_type,
2169
+ :source_arn,
2170
+ :sink_type,
2171
+ :sink_arn,
2172
+ :client_request_token)
2173
+ SENSITIVE = [:source_arn, :sink_arn, :client_request_token]
2174
+ include Aws::Structure
2175
+ end
2176
+
2177
+ # @!attribute [rw] media_capture_pipeline
2178
+ # A media capture pipeline object, the ID, source type, source ARN,
2179
+ # sink type, and sink ARN of a media capture pipeline object.
2180
+ # @return [Types::MediaCapturePipeline]
2181
+ #
2182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineResponse AWS API Documentation
2183
+ #
2184
+ class CreateMediaCapturePipelineResponse < Struct.new(
2185
+ :media_capture_pipeline)
2186
+ SENSITIVE = []
2187
+ include Aws::Structure
2188
+ end
2189
+
2129
2190
  # @note When making an API call, you may pass CreateMeetingDialOutRequest
2130
2191
  # data as a hash:
2131
2192
  #
@@ -3252,6 +3313,25 @@ module Aws::Chime
3252
3313
  include Aws::Structure
3253
3314
  end
3254
3315
 
3316
+ # @note When making an API call, you may pass DeleteMediaCapturePipelineRequest
3317
+ # data as a hash:
3318
+ #
3319
+ # {
3320
+ # media_pipeline_id: "GuidString", # required
3321
+ # }
3322
+ #
3323
+ # @!attribute [rw] media_pipeline_id
3324
+ # The ID of the media capture pipeline being deleted.
3325
+ # @return [String]
3326
+ #
3327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipelineRequest AWS API Documentation
3328
+ #
3329
+ class DeleteMediaCapturePipelineRequest < Struct.new(
3330
+ :media_pipeline_id)
3331
+ SENSITIVE = []
3332
+ include Aws::Structure
3333
+ end
3334
+
3255
3335
  # @note When making an API call, you may pass DeleteMeetingRequest
3256
3336
  # data as a hash:
3257
3337
  #
@@ -4458,6 +4538,37 @@ module Aws::Chime
4458
4538
  include Aws::Structure
4459
4539
  end
4460
4540
 
4541
+ # @note When making an API call, you may pass GetMediaCapturePipelineRequest
4542
+ # data as a hash:
4543
+ #
4544
+ # {
4545
+ # media_pipeline_id: "GuidString", # required
4546
+ # }
4547
+ #
4548
+ # @!attribute [rw] media_pipeline_id
4549
+ # The ID of the pipeline that you want to get.
4550
+ # @return [String]
4551
+ #
4552
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineRequest AWS API Documentation
4553
+ #
4554
+ class GetMediaCapturePipelineRequest < Struct.new(
4555
+ :media_pipeline_id)
4556
+ SENSITIVE = []
4557
+ include Aws::Structure
4558
+ end
4559
+
4560
+ # @!attribute [rw] media_capture_pipeline
4561
+ # The media capture pipeline object.
4562
+ # @return [Types::MediaCapturePipeline]
4563
+ #
4564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineResponse AWS API Documentation
4565
+ #
4566
+ class GetMediaCapturePipelineResponse < Struct.new(
4567
+ :media_capture_pipeline)
4568
+ SENSITIVE = []
4569
+ include Aws::Structure
4570
+ end
4571
+
4461
4572
  # @note When making an API call, you may pass GetMeetingRequest
4462
4573
  # data as a hash:
4463
4574
  #
@@ -6028,6 +6139,49 @@ module Aws::Chime
6028
6139
  include Aws::Structure
6029
6140
  end
6030
6141
 
6142
+ # @note When making an API call, you may pass ListMediaCapturePipelinesRequest
6143
+ # data as a hash:
6144
+ #
6145
+ # {
6146
+ # next_token: "String",
6147
+ # max_results: 1,
6148
+ # }
6149
+ #
6150
+ # @!attribute [rw] next_token
6151
+ # The token used to retrieve the next page of results.
6152
+ # @return [String]
6153
+ #
6154
+ # @!attribute [rw] max_results
6155
+ # The maximum number of results to return in a single call. Valid
6156
+ # Range: 1 - 99.
6157
+ # @return [Integer]
6158
+ #
6159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesRequest AWS API Documentation
6160
+ #
6161
+ class ListMediaCapturePipelinesRequest < Struct.new(
6162
+ :next_token,
6163
+ :max_results)
6164
+ SENSITIVE = []
6165
+ include Aws::Structure
6166
+ end
6167
+
6168
+ # @!attribute [rw] media_capture_pipelines
6169
+ # The media capture pipeline objects in the list.
6170
+ # @return [Array<Types::MediaCapturePipeline>]
6171
+ #
6172
+ # @!attribute [rw] next_token
6173
+ # The token used to retrieve the next page of results.
6174
+ # @return [String]
6175
+ #
6176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesResponse AWS API Documentation
6177
+ #
6178
+ class ListMediaCapturePipelinesResponse < Struct.new(
6179
+ :media_capture_pipelines,
6180
+ :next_token)
6181
+ SENSITIVE = []
6182
+ include Aws::Structure
6183
+ end
6184
+
6031
6185
  # @note When making an API call, you may pass ListMeetingTagsRequest
6032
6186
  # data as a hash:
6033
6187
  #
@@ -6754,6 +6908,60 @@ module Aws::Chime
6754
6908
  #
6755
6909
  class LogoutUserResponse < Aws::EmptyStructure; end
6756
6910
 
6911
+ # A media capture pipeline object. A string consisting of an ID, source
6912
+ # type, a source ARN, a sink type, and a sink ARN.
6913
+ #
6914
+ # @!attribute [rw] media_pipeline_id
6915
+ # The ID of a media capture pipeline.
6916
+ # @return [String]
6917
+ #
6918
+ # @!attribute [rw] source_type
6919
+ # Source type from which media artifacts are saved. You must use
6920
+ # `ChimeMeeting`.
6921
+ # @return [String]
6922
+ #
6923
+ # @!attribute [rw] source_arn
6924
+ # ARN of the source from which the media artifacts will be saved.
6925
+ # @return [String]
6926
+ #
6927
+ # @!attribute [rw] status
6928
+ # The status of the media capture pipeline.
6929
+ # @return [String]
6930
+ #
6931
+ # @!attribute [rw] sink_type
6932
+ # Destination type to which the media artifacts are saved. You must
6933
+ # use an S3 Bucket.
6934
+ # @return [String]
6935
+ #
6936
+ # @!attribute [rw] sink_arn
6937
+ # ARN of the destination to which the media artifacts are saved.
6938
+ # @return [String]
6939
+ #
6940
+ # @!attribute [rw] created_timestamp
6941
+ # The time at which the capture pipeline was created, in ISO 8601
6942
+ # format.
6943
+ # @return [Time]
6944
+ #
6945
+ # @!attribute [rw] updated_timestamp
6946
+ # The time at which the capture pipeline was updated, in ISO 8601
6947
+ # format.
6948
+ # @return [Time]
6949
+ #
6950
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
6951
+ #
6952
+ class MediaCapturePipeline < Struct.new(
6953
+ :media_pipeline_id,
6954
+ :source_type,
6955
+ :source_arn,
6956
+ :status,
6957
+ :sink_type,
6958
+ :sink_arn,
6959
+ :created_timestamp,
6960
+ :updated_timestamp)
6961
+ SENSITIVE = [:source_arn, :sink_arn]
6962
+ include Aws::Structure
6963
+ end
6964
+
6757
6965
  # A set of endpoints used by clients to connect to the media service
6758
6966
  # group for a Amazon Chime SDK meeting.
6759
6967
  #
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.49.0
4
+ version: 1.50.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-06-24 00:00:00.000000000 Z
11
+ date: 2021-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core