aws-sdk-ivs 1.20.0 → 1.23.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: 74b39b8f6bc9df36280a55d689adf6b33c9de504e076895e2c20e605a5c045b8
4
- data.tar.gz: 47ad6da406659607db8609d89f06e1abd33ef3684ffb7cedd8b18b6c9599f88d
3
+ metadata.gz: 25ece648b0f3be5adff398ad333bdf14c157d79fe53fe586fd7e717620291c77
4
+ data.tar.gz: 45b695c53a64205431d81690c04c2bef574f56f09d41f94f46f5bb1a7255145e
5
5
  SHA512:
6
- metadata.gz: 43ed37447a4762379e611c4860018761e1c5711260503d99771b0c7631f0eeafc7bf4d77651f9dc8fbc318963a315e6c74171a718d6aa7eca024a7c3c7ff7937
7
- data.tar.gz: ab114942a342c93712a1c09bd657fb5c8b328c27af8aee87f900561700cceea68dea7b6a8f81b47ad6c90722854366e8c78f98cc3aea3ea7f678f9e8e2fdd6be
6
+ metadata.gz: e9e7aaf3e70752a4bda39fed0ab8489add308993aadcb65a5224d0ad69fd22353b5e06297c64f213d467b942b438a4b1f0deaf9ef4b499b47cec9a20c0b7a94f
7
+ data.tar.gz: 1c4b5496efe7ff333c71b7323ff7076c5a0db5f697dab8c00e362ae2dd6f7903fdaaf1ba4ee226ae97bca261814c332ff0bcbc625c4e6ef0526ec1096209cb33
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2022-08-31)
5
+ ------------------
6
+
7
+ * Feature - IVS Merge Fragmented Streams. This release adds support for recordingReconnectWindow field in IVS recordingConfigurations. For more information see https://docs.aws.amazon.com/ivs/latest/APIReference/Welcome.html
8
+
9
+ 1.22.0 (2022-08-24)
10
+ ------------------
11
+
12
+ * Feature - Documentation Change for IVS API Reference - Doc-only update to type field description for CreateChannel and UpdateChannel actions and for Channel data type. Also added Amazon Resource Names (ARNs) paragraph to Welcome section.
13
+
14
+ 1.21.0 (2022-08-12)
15
+ ------------------
16
+
17
+ * Feature - Updates various list api MaxResults ranges
18
+
4
19
  1.20.0 (2022-02-24)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.23.0
@@ -452,7 +452,15 @@ module Aws::IVS
452
452
  # disabled).
453
453
  #
454
454
  # @option params [Hash<String,String>] :tags
455
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
455
+ # Array of 1-50 maps, each of the form `string:string (key:value)`. See
456
+ # [Tagging Amazon Web Services Resources][1] for more information,
457
+ # including restrictions that apply to tags and "Tag naming limits and
458
+ # requirements"; Amazon IVS has no service-specific constraints beyond
459
+ # what is documented there.
460
+ #
461
+ #
462
+ #
463
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
456
464
  #
457
465
  # @option params [String] :type
458
466
  # Channel type, which determines the allowable resolution and bitrate.
@@ -460,15 +468,19 @@ module Aws::IVS
460
468
  # probably will disconnect immediately.* Default: `STANDARD`. Valid
461
469
  # values:
462
470
  #
463
- # * `STANDARD`\: Multiple qualities are generated from the original
464
- # input, to automatically give viewers the best experience for their
465
- # devices and network conditions. Resolution can be up to 1080p and
466
- # bitrate can be up to 8.5 Mbps. Audio is transcoded only for
467
- # renditions 360p and below; above that, audio is passed through.
471
+ # * `STANDARD`\: Video is transcoded: multiple qualities are generated
472
+ # from the original input, to automatically give viewers the best
473
+ # experience for their devices and network conditions. Transcoding
474
+ # allows higher playback quality across a range of download speeds.
475
+ # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
476
+ # Audio is transcoded only for renditions 360p and below; above that,
477
+ # audio is passed through. This is the default.
468
478
  #
469
- # * `BASIC`\: Amazon IVS delivers the original input to viewers. The
470
- # viewer’s video-quality choice is limited to the original input.
471
- # Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
479
+ # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
480
+ # input to viewers. The viewer’s video-quality choice is limited to
481
+ # the original input. Resolution can be up to 1080p and bitrate can be
482
+ # up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between
483
+ # 480p and 1080p.
472
484
  #
473
485
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
474
486
  #
@@ -538,8 +550,21 @@ module Aws::IVS
538
550
  # @option params [String] :name
539
551
  # Recording-configuration name. The value does not need to be unique.
540
552
  #
553
+ # @option params [Integer] :recording_reconnect_window_seconds
554
+ # If a broadcast disconnects and then reconnects within the specified
555
+ # interval, the multiple streams will be considered a single broadcast
556
+ # and merged together. Default: 0.
557
+ #
541
558
  # @option params [Hash<String,String>] :tags
542
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
559
+ # Array of 1-50 maps, each of the form `string:string (key:value)`. See
560
+ # [Tagging Amazon Web Services Resources][1] for more information,
561
+ # including restrictions that apply to tags and "Tag naming limits and
562
+ # requirements"; Amazon IVS has no service-specific constraints beyond
563
+ # what is documented there.
564
+ #
565
+ #
566
+ #
567
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
543
568
  #
544
569
  # @option params [Types::ThumbnailConfiguration] :thumbnail_configuration
545
570
  # A complex type that allows you to enable/disable the recording of
@@ -559,6 +584,7 @@ module Aws::IVS
559
584
  # },
560
585
  # },
561
586
  # name: "RecordingConfigurationName",
587
+ # recording_reconnect_window_seconds: 1,
562
588
  # tags: {
563
589
  # "TagKey" => "TagValue",
564
590
  # },
@@ -573,6 +599,7 @@ module Aws::IVS
573
599
  # resp.recording_configuration.arn #=> String
574
600
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
575
601
  # resp.recording_configuration.name #=> String
602
+ # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
576
603
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
577
604
  # resp.recording_configuration.tags #=> Hash
578
605
  # resp.recording_configuration.tags["TagKey"] #=> String
@@ -601,7 +628,15 @@ module Aws::IVS
601
628
  # ARN of the channel for which to create the stream key.
602
629
  #
603
630
  # @option params [Hash<String,String>] :tags
604
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
631
+ # Array of 1-50 maps, each of the form `string:string (key:value)`. See
632
+ # [Tagging Amazon Web Services Resources][1] for more information,
633
+ # including restrictions that apply to tags and "Tag naming limits and
634
+ # requirements"; Amazon IVS has no service-specific constraints beyond
635
+ # what is documented there.
636
+ #
637
+ #
638
+ #
639
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
605
640
  #
606
641
  # @return [Types::CreateStreamKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
607
642
  #
@@ -843,6 +878,7 @@ module Aws::IVS
843
878
  # resp.recording_configuration.arn #=> String
844
879
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
845
880
  # resp.recording_configuration.name #=> String
881
+ # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
846
882
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
847
883
  # resp.recording_configuration.tags #=> Hash
848
884
  # resp.recording_configuration.tags["TagKey"] #=> String
@@ -974,6 +1010,7 @@ module Aws::IVS
974
1010
  # resp.stream_session.recording_configuration.arn #=> String
975
1011
  # resp.stream_session.recording_configuration.destination_configuration.s3.bucket_name #=> String
976
1012
  # resp.stream_session.recording_configuration.name #=> String
1013
+ # resp.stream_session.recording_configuration.recording_reconnect_window_seconds #=> Integer
977
1014
  # resp.stream_session.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
978
1015
  # resp.stream_session.recording_configuration.tags #=> Hash
979
1016
  # resp.stream_session.recording_configuration.tags["TagKey"] #=> String
@@ -1013,7 +1050,14 @@ module Aws::IVS
1013
1050
  #
1014
1051
  # @option params [Hash<String,String>] :tags
1015
1052
  # Any tags provided with the request are added to the playback key pair
1016
- # tags.
1053
+ # tags. See [Tagging Amazon Web Services Resources][1] for more
1054
+ # information, including restrictions that apply to tags and "Tag
1055
+ # naming limits and requirements"; Amazon IVS has no service-specific
1056
+ # constraints beyond what is documented there.
1057
+ #
1058
+ #
1059
+ #
1060
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1017
1061
  #
1018
1062
  # @return [Types::ImportPlaybackKeyPairResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1019
1063
  #
@@ -1061,7 +1105,7 @@ module Aws::IVS
1061
1105
  # recording-configuration ARN.
1062
1106
  #
1063
1107
  # @option params [Integer] :max_results
1064
- # Maximum number of channels to return. Default: 50.
1108
+ # Maximum number of channels to return. Default: 100.
1065
1109
  #
1066
1110
  # @option params [String] :next_token
1067
1111
  # The first channel to retrieve. This is used for pagination; see the
@@ -1113,11 +1157,12 @@ module Aws::IVS
1113
1157
  # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html
1114
1158
  #
1115
1159
  # @option params [Integer] :max_results
1116
- # The first key pair to retrieve. This is used for pagination; see the
1117
- # `nextToken` response field. Default: 50.
1160
+ # Maximum number of key pairs to return. Default: your service quota or
1161
+ # 100, whichever is smaller.
1118
1162
  #
1119
1163
  # @option params [String] :next_token
1120
- # Maximum number of key pairs to return.
1164
+ # The first key pair to retrieve. This is used for pagination; see the
1165
+ # `nextToken` response field.
1121
1166
  #
1122
1167
  # @return [Types::ListPlaybackKeyPairsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1123
1168
  #
@@ -1156,7 +1201,8 @@ module Aws::IVS
1156
1201
  # processed.
1157
1202
  #
1158
1203
  # @option params [Integer] :max_results
1159
- # Maximum number of recording configurations to return. Default: 50.
1204
+ # Maximum number of recording configurations to return. Default: your
1205
+ # service quota or 100, whichever is smaller.
1160
1206
  #
1161
1207
  # @option params [String] :next_token
1162
1208
  # The first recording configuration to retrieve. This is used for
@@ -1202,7 +1248,7 @@ module Aws::IVS
1202
1248
  # Channel ARN used to filter the list.
1203
1249
  #
1204
1250
  # @option params [Integer] :max_results
1205
- # Maximum number of streamKeys to return. Default: 50.
1251
+ # Maximum number of streamKeys to return. Default: 1.
1206
1252
  #
1207
1253
  # @option params [String] :next_token
1208
1254
  # The first stream key to retrieve. This is used for pagination; see the
@@ -1248,7 +1294,7 @@ module Aws::IVS
1248
1294
  # Channel ARN used to filter the list.
1249
1295
  #
1250
1296
  # @option params [Integer] :max_results
1251
- # Maximum number of streams to return. Default: 50.
1297
+ # Maximum number of streams to return. Default: 100.
1252
1298
  #
1253
1299
  # @option params [String] :next_token
1254
1300
  # The first stream to retrieve. This is used for pagination; see the
@@ -1294,7 +1340,7 @@ module Aws::IVS
1294
1340
  # Filters the stream list to match the specified criterion.
1295
1341
  #
1296
1342
  # @option params [Integer] :max_results
1297
- # Maximum number of streams to return. Default: 50.
1343
+ # Maximum number of streams to return. Default: 100.
1298
1344
  #
1299
1345
  # @option params [String] :next_token
1300
1346
  # The first stream to retrieve. This is used for pagination; see the
@@ -1340,7 +1386,7 @@ module Aws::IVS
1340
1386
  # Gets information about Amazon Web Services tags for the specified ARN.
1341
1387
  #
1342
1388
  # @option params [required, String] :resource_arn
1343
- # The ARN of the resource to be retrieved.
1389
+ # The ARN of the resource to be retrieved. The ARN must be URL-encoded.
1344
1390
  #
1345
1391
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1346
1392
  #
@@ -1436,10 +1482,18 @@ module Aws::IVS
1436
1482
  # specified ARN.
1437
1483
  #
1438
1484
  # @option params [required, String] :resource_arn
1439
- # ARN of the resource for which tags are to be added or updated.
1485
+ # ARN of the resource for which tags are to be added or updated. The ARN
1486
+ # must be URL-encoded.
1440
1487
  #
1441
1488
  # @option params [required, Hash<String,String>] :tags
1442
- # Array of tags to be added or updated.
1489
+ # Array of tags to be added or updated. See [Tagging Amazon Web Services
1490
+ # Resources][1] for more information, including restrictions that apply
1491
+ # to tags and "Tag naming limits and requirements"; Amazon IVS has no
1492
+ # service-specific constraints beyond what is documented there.
1493
+ #
1494
+ #
1495
+ #
1496
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1443
1497
  #
1444
1498
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1445
1499
  #
@@ -1464,10 +1518,18 @@ module Aws::IVS
1464
1518
  # Removes tags from the resource with the specified ARN.
1465
1519
  #
1466
1520
  # @option params [required, String] :resource_arn
1467
- # ARN of the resource for which tags are to be removed.
1521
+ # ARN of the resource for which tags are to be removed. The ARN must be
1522
+ # URL-encoded.
1468
1523
  #
1469
1524
  # @option params [required, Array<String>] :tag_keys
1470
- # Array of tags to be removed.
1525
+ # Array of tags to be removed. See [Tagging Amazon Web Services
1526
+ # Resources][1] for more information, including restrictions that apply
1527
+ # to tags and "Tag naming limits and requirements"; Amazon IVS has no
1528
+ # service-specific constraints beyond what is documented there.
1529
+ #
1530
+ #
1531
+ #
1532
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1471
1533
  #
1472
1534
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1473
1535
  #
@@ -1516,15 +1578,19 @@ module Aws::IVS
1516
1578
  # *If you exceed the allowable resolution or bitrate, the stream
1517
1579
  # probably will disconnect immediately*. Valid values:
1518
1580
  #
1519
- # * `STANDARD`\: Multiple qualities are generated from the original
1520
- # input, to automatically give viewers the best experience for their
1521
- # devices and network conditions. Resolution can be up to 1080p and
1522
- # bitrate can be up to 8.5 Mbps. Audio is transcoded only for
1523
- # renditions 360p and below; above that, audio is passed through.
1581
+ # * `STANDARD`\: Video is transcoded: multiple qualities are generated
1582
+ # from the original input, to automatically give viewers the best
1583
+ # experience for their devices and network conditions. Transcoding
1584
+ # allows higher playback quality across a range of download speeds.
1585
+ # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
1586
+ # Audio is transcoded only for renditions 360p and below; above that,
1587
+ # audio is passed through. This is the default.
1524
1588
  #
1525
- # * `BASIC`\: Amazon IVS delivers the original input to viewers. The
1526
- # viewer’s video-quality choice is limited to the original input.
1527
- # Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
1589
+ # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
1590
+ # input to viewers. The viewer’s video-quality choice is limited to
1591
+ # the original input. Resolution can be up to 1080p and bitrate can be
1592
+ # up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between
1593
+ # 480p and 1080p.
1528
1594
  #
1529
1595
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1530
1596
  #
@@ -1576,7 +1642,7 @@ module Aws::IVS
1576
1642
  params: params,
1577
1643
  config: config)
1578
1644
  context[:gem_name] = 'aws-sdk-ivs'
1579
- context[:gem_version] = '1.20.0'
1645
+ context[:gem_version] = '1.23.0'
1580
1646
  Seahorse::Client::Request.new(handlers, context)
1581
1647
  end
1582
1648
 
@@ -102,6 +102,7 @@ module Aws::IVS
102
102
  RecordingConfigurationState = Shapes::StringShape.new(name: 'RecordingConfigurationState')
103
103
  RecordingConfigurationSummary = Shapes::StructureShape.new(name: 'RecordingConfigurationSummary')
104
104
  RecordingMode = Shapes::StringShape.new(name: 'RecordingMode')
105
+ RecordingReconnectWindowSeconds = Shapes::IntegerShape.new(name: 'RecordingReconnectWindowSeconds')
105
106
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
106
107
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
107
108
  S3DestinationBucketName = Shapes::StringShape.new(name: 'S3DestinationBucketName')
@@ -227,6 +228,7 @@ module Aws::IVS
227
228
 
228
229
  CreateRecordingConfigurationRequest.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
229
230
  CreateRecordingConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
231
+ CreateRecordingConfigurationRequest.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
230
232
  CreateRecordingConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
231
233
  CreateRecordingConfigurationRequest.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
232
234
  CreateRecordingConfigurationRequest.struct_class = Types::CreateRecordingConfigurationRequest
@@ -392,6 +394,7 @@ module Aws::IVS
392
394
  RecordingConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: RecordingConfigurationArn, required: true, location_name: "arn"))
393
395
  RecordingConfiguration.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
394
396
  RecordingConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
397
+ RecordingConfiguration.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
395
398
  RecordingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: RecordingConfigurationState, required: true, location_name: "state"))
396
399
  RecordingConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
397
400
  RecordingConfiguration.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
@@ -22,7 +22,9 @@ module Aws::IVS
22
22
  include Aws::Structure
23
23
  end
24
24
 
25
- # Object specifying a stream’s audio configuration.
25
+ # Object specifying a stream’s audio configuration, as set up by the
26
+ # broadcaster (usually in an encoder). This is part of the
27
+ # IngestConfiguration object and used for monitoring stream health.
26
28
  #
27
29
  # @!attribute [rw] channels
28
30
  # Number of audio channels.
@@ -184,6 +186,14 @@ module Aws::IVS
184
186
  #
185
187
  # @!attribute [rw] tags
186
188
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
189
+ # See [Tagging Amazon Web Services Resources][1] for more information,
190
+ # including restrictions that apply to tags and "Tag naming limits
191
+ # and requirements"; Amazon IVS has no service-specific constraints
192
+ # beyond what is documented there.
193
+ #
194
+ #
195
+ #
196
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
187
197
  # @return [Hash<String,String>]
188
198
  #
189
199
  # @!attribute [rw] type
@@ -192,15 +202,19 @@ module Aws::IVS
192
202
  # probably will disconnect immediately.* Default: `STANDARD`. Valid
193
203
  # values:
194
204
  #
195
- # * `STANDARD`\: Multiple qualities are generated from the original
196
- # input, to automatically give viewers the best experience for their
197
- # devices and network conditions. Resolution can be up to 1080p and
198
- # bitrate can be up to 8.5 Mbps. Audio is transcoded only for
199
- # renditions 360p and below; above that, audio is passed through.
205
+ # * `STANDARD`\: Video is transcoded: multiple qualities are generated
206
+ # from the original input, to automatically give viewers the best
207
+ # experience for their devices and network conditions. Transcoding
208
+ # allows higher playback quality across a range of download speeds.
209
+ # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
210
+ # Audio is transcoded only for renditions 360p and below; above
211
+ # that, audio is passed through. This is the default.
200
212
  #
201
- # * `BASIC`\: Amazon IVS delivers the original input to viewers. The
202
- # viewer’s video-quality choice is limited to the original input.
203
- # Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
213
+ # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
214
+ # input to viewers. The viewer’s video-quality choice is limited to
215
+ # the original input. Resolution can be up to 1080p and bitrate can
216
+ # be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
217
+ # between 480p and 1080p.
204
218
  # @return [String]
205
219
  #
206
220
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/Channel AWS API Documentation
@@ -261,6 +275,14 @@ module Aws::IVS
261
275
  #
262
276
  # @!attribute [rw] tags
263
277
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
278
+ # See [Tagging Amazon Web Services Resources][1] for more information,
279
+ # including restrictions that apply to tags and "Tag naming limits
280
+ # and requirements"; Amazon IVS has no service-specific constraints
281
+ # beyond what is documented there.
282
+ #
283
+ #
284
+ #
285
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
264
286
  # @return [Hash<String,String>]
265
287
  #
266
288
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ChannelSummary AWS API Documentation
@@ -325,6 +347,14 @@ module Aws::IVS
325
347
  #
326
348
  # @!attribute [rw] tags
327
349
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
350
+ # See [Tagging Amazon Web Services Resources][1] for more information,
351
+ # including restrictions that apply to tags and "Tag naming limits
352
+ # and requirements"; Amazon IVS has no service-specific constraints
353
+ # beyond what is documented there.
354
+ #
355
+ #
356
+ #
357
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
328
358
  # @return [Hash<String,String>]
329
359
  #
330
360
  # @!attribute [rw] type
@@ -333,15 +363,19 @@ module Aws::IVS
333
363
  # probably will disconnect immediately.* Default: `STANDARD`. Valid
334
364
  # values:
335
365
  #
336
- # * `STANDARD`\: Multiple qualities are generated from the original
337
- # input, to automatically give viewers the best experience for their
338
- # devices and network conditions. Resolution can be up to 1080p and
339
- # bitrate can be up to 8.5 Mbps. Audio is transcoded only for
340
- # renditions 360p and below; above that, audio is passed through.
366
+ # * `STANDARD`\: Video is transcoded: multiple qualities are generated
367
+ # from the original input, to automatically give viewers the best
368
+ # experience for their devices and network conditions. Transcoding
369
+ # allows higher playback quality across a range of download speeds.
370
+ # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
371
+ # Audio is transcoded only for renditions 360p and below; above
372
+ # that, audio is passed through. This is the default.
341
373
  #
342
- # * `BASIC`\: Amazon IVS delivers the original input to viewers. The
343
- # viewer’s video-quality choice is limited to the original input.
344
- # Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
374
+ # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
375
+ # input to viewers. The viewer’s video-quality choice is limited to
376
+ # the original input. Resolution can be up to 1080p and bitrate can
377
+ # be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
378
+ # between 480p and 1080p.
345
379
  # @return [String]
346
380
  #
347
381
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateChannelRequest AWS API Documentation
@@ -382,6 +416,7 @@ module Aws::IVS
382
416
  # },
383
417
  # },
384
418
  # name: "RecordingConfigurationName",
419
+ # recording_reconnect_window_seconds: 1,
385
420
  # tags: {
386
421
  # "TagKey" => "TagValue",
387
422
  # },
@@ -400,8 +435,22 @@ module Aws::IVS
400
435
  # Recording-configuration name. The value does not need to be unique.
401
436
  # @return [String]
402
437
  #
438
+ # @!attribute [rw] recording_reconnect_window_seconds
439
+ # If a broadcast disconnects and then reconnects within the specified
440
+ # interval, the multiple streams will be considered a single broadcast
441
+ # and merged together. Default: 0.
442
+ # @return [Integer]
443
+ #
403
444
  # @!attribute [rw] tags
404
445
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
446
+ # See [Tagging Amazon Web Services Resources][1] for more information,
447
+ # including restrictions that apply to tags and "Tag naming limits
448
+ # and requirements"; Amazon IVS has no service-specific constraints
449
+ # beyond what is documented there.
450
+ #
451
+ #
452
+ #
453
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
405
454
  # @return [Hash<String,String>]
406
455
  #
407
456
  # @!attribute [rw] thumbnail_configuration
@@ -415,6 +464,7 @@ module Aws::IVS
415
464
  class CreateRecordingConfigurationRequest < Struct.new(
416
465
  :destination_configuration,
417
466
  :name,
467
+ :recording_reconnect_window_seconds,
418
468
  :tags,
419
469
  :thumbnail_configuration)
420
470
  SENSITIVE = []
@@ -451,6 +501,14 @@ module Aws::IVS
451
501
  #
452
502
  # @!attribute [rw] tags
453
503
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
504
+ # See [Tagging Amazon Web Services Resources][1] for more information,
505
+ # including restrictions that apply to tags and "Tag naming limits
506
+ # and requirements"; Amazon IVS has no service-specific constraints
507
+ # beyond what is documented there.
508
+ #
509
+ #
510
+ #
511
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
454
512
  # @return [Hash<String,String>]
455
513
  #
456
514
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateStreamKeyRequest AWS API Documentation
@@ -800,7 +858,14 @@ module Aws::IVS
800
858
  #
801
859
  # @!attribute [rw] tags
802
860
  # Any tags provided with the request are added to the playback key
803
- # pair tags.
861
+ # pair tags. See [Tagging Amazon Web Services Resources][1] for more
862
+ # information, including restrictions that apply to tags and "Tag
863
+ # naming limits and requirements"; Amazon IVS has no service-specific
864
+ # constraints beyond what is documented there.
865
+ #
866
+ #
867
+ #
868
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
804
869
  # @return [Hash<String,String>]
805
870
  #
806
871
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ImportPlaybackKeyPairRequest AWS API Documentation
@@ -876,7 +941,7 @@ module Aws::IVS
876
941
  # @return [String]
877
942
  #
878
943
  # @!attribute [rw] max_results
879
- # Maximum number of channels to return. Default: 50.
944
+ # Maximum number of channels to return. Default: 100.
880
945
  # @return [Integer]
881
946
  #
882
947
  # @!attribute [rw] next_token
@@ -922,12 +987,13 @@ module Aws::IVS
922
987
  # }
923
988
  #
924
989
  # @!attribute [rw] max_results
925
- # The first key pair to retrieve. This is used for pagination; see the
926
- # `nextToken` response field. Default: 50.
990
+ # Maximum number of key pairs to return. Default: your service quota
991
+ # or 100, whichever is smaller.
927
992
  # @return [Integer]
928
993
  #
929
994
  # @!attribute [rw] next_token
930
- # Maximum number of key pairs to return.
995
+ # The first key pair to retrieve. This is used for pagination; see the
996
+ # `nextToken` response field.
931
997
  # @return [String]
932
998
  #
933
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListPlaybackKeyPairsRequest AWS API Documentation
@@ -966,7 +1032,8 @@ module Aws::IVS
966
1032
  # }
967
1033
  #
968
1034
  # @!attribute [rw] max_results
969
- # Maximum number of recording configurations to return. Default: 50.
1035
+ # Maximum number of recording configurations to return. Default: your
1036
+ # service quota or 100, whichever is smaller.
970
1037
  # @return [Integer]
971
1038
  #
972
1039
  # @!attribute [rw] next_token
@@ -1015,7 +1082,7 @@ module Aws::IVS
1015
1082
  # @return [String]
1016
1083
  #
1017
1084
  # @!attribute [rw] max_results
1018
- # Maximum number of streamKeys to return. Default: 50.
1085
+ # Maximum number of streamKeys to return. Default: 1.
1019
1086
  # @return [Integer]
1020
1087
  #
1021
1088
  # @!attribute [rw] next_token
@@ -1065,7 +1132,7 @@ module Aws::IVS
1065
1132
  # @return [String]
1066
1133
  #
1067
1134
  # @!attribute [rw] max_results
1068
- # Maximum number of streams to return. Default: 50.
1135
+ # Maximum number of streams to return. Default: 100.
1069
1136
  # @return [Integer]
1070
1137
  #
1071
1138
  # @!attribute [rw] next_token
@@ -1117,7 +1184,7 @@ module Aws::IVS
1117
1184
  # @return [Types::StreamFilters]
1118
1185
  #
1119
1186
  # @!attribute [rw] max_results
1120
- # Maximum number of streams to return. Default: 50.
1187
+ # Maximum number of streams to return. Default: 100.
1121
1188
  # @return [Integer]
1122
1189
  #
1123
1190
  # @!attribute [rw] next_token
@@ -1161,7 +1228,8 @@ module Aws::IVS
1161
1228
  # }
1162
1229
  #
1163
1230
  # @!attribute [rw] resource_arn
1164
- # The ARN of the resource to be retrieved.
1231
+ # The ARN of the resource to be retrieved. The ARN must be
1232
+ # URL-encoded.
1165
1233
  # @return [String]
1166
1234
  #
1167
1235
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListTagsForResourceRequest AWS API Documentation
@@ -1211,6 +1279,14 @@ module Aws::IVS
1211
1279
  #
1212
1280
  # @!attribute [rw] tags
1213
1281
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1282
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1283
+ # including restrictions that apply to tags and "Tag naming limits
1284
+ # and requirements"; Amazon IVS has no service-specific constraints
1285
+ # beyond what is documented there.
1286
+ #
1287
+ #
1288
+ #
1289
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1214
1290
  # @return [Hash<String,String>]
1215
1291
  #
1216
1292
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPair AWS API Documentation
@@ -1236,6 +1312,14 @@ module Aws::IVS
1236
1312
  #
1237
1313
  # @!attribute [rw] tags
1238
1314
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1315
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1316
+ # including restrictions that apply to tags and "Tag naming limits
1317
+ # and requirements"; Amazon IVS has no service-specific constraints
1318
+ # beyond what is documented there.
1319
+ #
1320
+ #
1321
+ #
1322
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1239
1323
  # @return [Hash<String,String>]
1240
1324
  #
1241
1325
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPairSummary AWS API Documentation
@@ -1289,6 +1373,12 @@ module Aws::IVS
1289
1373
  # Recording-configuration name. The value does not need to be unique.
1290
1374
  # @return [String]
1291
1375
  #
1376
+ # @!attribute [rw] recording_reconnect_window_seconds
1377
+ # If a broadcast disconnects and then reconnects within the specified
1378
+ # interval, the multiple streams will be considered a single broadcast
1379
+ # and merged together. Default: 0.
1380
+ # @return [Integer]
1381
+ #
1292
1382
  # @!attribute [rw] state
1293
1383
  # Indicates the current state of the recording configuration. When the
1294
1384
  # state is `ACTIVE`, the configuration is ready for recording a
@@ -1297,6 +1387,14 @@ module Aws::IVS
1297
1387
  #
1298
1388
  # @!attribute [rw] tags
1299
1389
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1390
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1391
+ # including restrictions that apply to tags and "Tag naming limits
1392
+ # and requirements"; Amazon IVS has no service-specific constraints
1393
+ # beyond what is documented there.
1394
+ #
1395
+ #
1396
+ #
1397
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1300
1398
  # @return [Hash<String,String>]
1301
1399
  #
1302
1400
  # @!attribute [rw] thumbnail_configuration
@@ -1311,6 +1409,7 @@ module Aws::IVS
1311
1409
  :arn,
1312
1410
  :destination_configuration,
1313
1411
  :name,
1412
+ :recording_reconnect_window_seconds,
1314
1413
  :state,
1315
1414
  :tags,
1316
1415
  :thumbnail_configuration)
@@ -1341,6 +1440,14 @@ module Aws::IVS
1341
1440
  #
1342
1441
  # @!attribute [rw] tags
1343
1442
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1443
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1444
+ # including restrictions that apply to tags and "Tag naming limits
1445
+ # and requirements"; Amazon IVS has no service-specific constraints
1446
+ # beyond what is documented there.
1447
+ #
1448
+ #
1449
+ #
1450
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1344
1451
  # @return [Hash<String,String>]
1345
1452
  #
1346
1453
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RecordingConfigurationSummary AWS API Documentation
@@ -1440,8 +1547,8 @@ module Aws::IVS
1440
1547
  # @return [String]
1441
1548
  #
1442
1549
  # @!attribute [rw] start_time
1443
- # Time of the stream’s start. This is an ISO 8601 timestamp returned
1444
- # as a string.
1550
+ # Time of the stream’s start. This is an ISO 8601 timestamp; *note
1551
+ # that this is returned as a string*.
1445
1552
  # @return [Time]
1446
1553
  #
1447
1554
  # @!attribute [rw] state
@@ -1483,7 +1590,8 @@ module Aws::IVS
1483
1590
  # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/eventbridge.html
1484
1591
  #
1485
1592
  # @!attribute [rw] event_time
1486
- # UTC ISO-8601 formatted timestamp of when the event occurred.
1593
+ # Time when the event occurred. This is an ISO 8601 timestamp; *note
1594
+ # that this is returned as a string*.
1487
1595
  # @return [Time]
1488
1596
  #
1489
1597
  # @!attribute [rw] name
@@ -1537,6 +1645,14 @@ module Aws::IVS
1537
1645
  #
1538
1646
  # @!attribute [rw] tags
1539
1647
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1648
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1649
+ # including restrictions that apply to tags and "Tag naming limits
1650
+ # and requirements"; Amazon IVS has no service-specific constraints
1651
+ # beyond what is documented there.
1652
+ #
1653
+ #
1654
+ #
1655
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1540
1656
  # @return [Hash<String,String>]
1541
1657
  #
1542
1658
  # @!attribute [rw] value
@@ -1566,6 +1682,14 @@ module Aws::IVS
1566
1682
  #
1567
1683
  # @!attribute [rw] tags
1568
1684
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
1685
+ # See [Tagging Amazon Web Services Resources][1] for more information,
1686
+ # including restrictions that apply to tags and "Tag naming limits
1687
+ # and requirements"; Amazon IVS has no service-specific constraints
1688
+ # beyond what is documented there.
1689
+ #
1690
+ #
1691
+ #
1692
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1569
1693
  # @return [Hash<String,String>]
1570
1694
  #
1571
1695
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/StreamKeySummary AWS API Documentation
@@ -1587,8 +1711,9 @@ module Aws::IVS
1587
1711
  # @return [Types::Channel]
1588
1712
  #
1589
1713
  # @!attribute [rw] end_time
1590
- # UTC ISO-8601 formatted timestamp of when the channel went offline.
1591
- # For live streams, this is `NULL`.
1714
+ # Time when the channel went offline. This is an ISO 8601 timestamp;
1715
+ # *note that this is returned as a string*. For live streams, this is
1716
+ # `NULL`.
1592
1717
  # @return [Time]
1593
1718
  #
1594
1719
  # @!attribute [rw] ingest_configuration
@@ -1600,7 +1725,8 @@ module Aws::IVS
1600
1725
  # @return [Types::RecordingConfiguration]
1601
1726
  #
1602
1727
  # @!attribute [rw] start_time
1603
- # UTC ISO-8601 formatted timestamp of when the channel went live.
1728
+ # Time when the channel went live. This is an ISO 8601 timestamp;
1729
+ # *note that this is returned as a string*.
1604
1730
  # @return [Time]
1605
1731
  #
1606
1732
  # @!attribute [rw] stream_id
@@ -1636,8 +1762,9 @@ module Aws::IVS
1636
1762
  # Summary information about a stream session.
1637
1763
  #
1638
1764
  # @!attribute [rw] end_time
1639
- # UTC ISO-8601 formatted timestamp of when the channel went offline.
1640
- # For live streams, this is `NULL`.
1765
+ # Time when the channel went offline. This is an ISO 8601 timestamp;
1766
+ # *note that this is returned as a string*. For live streams, this is
1767
+ # `NULL`.
1641
1768
  # @return [Time]
1642
1769
  #
1643
1770
  # @!attribute [rw] has_error_event
@@ -1645,7 +1772,8 @@ module Aws::IVS
1645
1772
  # @return [Boolean]
1646
1773
  #
1647
1774
  # @!attribute [rw] start_time
1648
- # UTC ISO-8601 formatted timestamp of when the channel went live.
1775
+ # Time when the channel went live. This is an ISO 8601 timestamp;
1776
+ # *note that this is returned as a string*.
1649
1777
  # @return [Time]
1650
1778
  #
1651
1779
  # @!attribute [rw] stream_id
@@ -1675,8 +1803,8 @@ module Aws::IVS
1675
1803
  # @return [String]
1676
1804
  #
1677
1805
  # @!attribute [rw] start_time
1678
- # Time of the stream’s start. This is an ISO 8601 timestamp returned
1679
- # as a string.
1806
+ # Time of the stream’s start. This is an ISO 8601 timestamp; *note
1807
+ # that this is returned as a string*.
1680
1808
  # @return [Time]
1681
1809
  #
1682
1810
  # @!attribute [rw] state
@@ -1732,11 +1860,20 @@ module Aws::IVS
1732
1860
  # }
1733
1861
  #
1734
1862
  # @!attribute [rw] resource_arn
1735
- # ARN of the resource for which tags are to be added or updated.
1863
+ # ARN of the resource for which tags are to be added or updated. The
1864
+ # ARN must be URL-encoded.
1736
1865
  # @return [String]
1737
1866
  #
1738
1867
  # @!attribute [rw] tags
1739
- # Array of tags to be added or updated.
1868
+ # Array of tags to be added or updated. See [Tagging Amazon Web
1869
+ # Services Resources][1] for more information, including restrictions
1870
+ # that apply to tags and "Tag naming limits and requirements";
1871
+ # Amazon IVS has no service-specific constraints beyond what is
1872
+ # documented there.
1873
+ #
1874
+ #
1875
+ #
1876
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1740
1877
  # @return [Hash<String,String>]
1741
1878
  #
1742
1879
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/TagResourceRequest AWS API Documentation
@@ -1815,11 +1952,19 @@ module Aws::IVS
1815
1952
  # }
1816
1953
  #
1817
1954
  # @!attribute [rw] resource_arn
1818
- # ARN of the resource for which tags are to be removed.
1955
+ # ARN of the resource for which tags are to be removed. The ARN must
1956
+ # be URL-encoded.
1819
1957
  # @return [String]
1820
1958
  #
1821
1959
  # @!attribute [rw] tag_keys
1822
- # Array of tags to be removed.
1960
+ # Array of tags to be removed. See [Tagging Amazon Web Services
1961
+ # Resources][1] for more information, including restrictions that
1962
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1963
+ # has no service-specific constraints beyond what is documented there.
1964
+ #
1965
+ #
1966
+ #
1967
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1823
1968
  # @return [Array<String>]
1824
1969
  #
1825
1970
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UntagResourceRequest AWS API Documentation
@@ -1877,15 +2022,19 @@ module Aws::IVS
1877
2022
  # *If you exceed the allowable resolution or bitrate, the stream
1878
2023
  # probably will disconnect immediately*. Valid values:
1879
2024
  #
1880
- # * `STANDARD`\: Multiple qualities are generated from the original
1881
- # input, to automatically give viewers the best experience for their
1882
- # devices and network conditions. Resolution can be up to 1080p and
1883
- # bitrate can be up to 8.5 Mbps. Audio is transcoded only for
1884
- # renditions 360p and below; above that, audio is passed through.
2025
+ # * `STANDARD`\: Video is transcoded: multiple qualities are generated
2026
+ # from the original input, to automatically give viewers the best
2027
+ # experience for their devices and network conditions. Transcoding
2028
+ # allows higher playback quality across a range of download speeds.
2029
+ # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
2030
+ # Audio is transcoded only for renditions 360p and below; above
2031
+ # that, audio is passed through. This is the default.
1885
2032
  #
1886
- # * `BASIC`\: Amazon IVS delivers the original input to viewers. The
1887
- # viewer’s video-quality choice is limited to the original input.
1888
- # Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
2033
+ # * `BASIC`\: Video is transmuxed: Amazon IVS delivers the original
2034
+ # input to viewers. The viewer’s video-quality choice is limited to
2035
+ # the original input. Resolution can be up to 1080p and bitrate can
2036
+ # be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
2037
+ # between 480p and 1080p.
1889
2038
  # @return [String]
1890
2039
  #
1891
2040
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateChannelRequest AWS API Documentation
@@ -1926,7 +2075,9 @@ module Aws::IVS
1926
2075
  include Aws::Structure
1927
2076
  end
1928
2077
 
1929
- # Object specifying a stream’s video configuration.
2078
+ # Object specifying a stream’s video configuration, as set up by the
2079
+ # broadcaster (usually in an encoder). This is part of the
2080
+ # IngestConfiguration object and used for monitoring stream health.
1930
2081
  #
1931
2082
  # @!attribute [rw] avc_level
1932
2083
  # Indicates the degree of required decoder performance for a profile.
data/lib/aws-sdk-ivs.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-ivs/customizations'
48
48
  # @!group service
49
49
  module Aws::IVS
50
50
 
51
- GEM_VERSION = '1.20.0'
51
+ GEM_VERSION = '1.23.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.23.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core