aws-sdk-ivsrealtime 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 664ce977c839c2e2da0513734924ecb0d4429c82ab1f6a0516803075bb346c55
4
- data.tar.gz: 3fe9bc32f35eacd510dcc545750651b054b19673d28ad24d02152ec285d34bf8
3
+ metadata.gz: a87479caa5c86bde268e2fc9c6dec5b4946d337e274364418842bc5ad6c8b8a2
4
+ data.tar.gz: 17425ef09a60118266937ee22c08e4cd9ce5cbfb26e5965439dc42d0bc5cfcb3
5
5
  SHA512:
6
- metadata.gz: 9dead615f492883e856b8e9b446117e248668cb745aead3e13250d48ec386df60da3f168c645f4fe85dece2072178a106a871c578d1a69b4fcf258d21fd0a010
7
- data.tar.gz: a9b12054082cb71a8b074eea38e2fbe22c12807d3b21083a9b5b8297c4b632e6af23488a4e3039cff7ab57e9acdc665d228a608a1407dbedaa8bd124d808ec12
6
+ metadata.gz: 75603d8d97a9ac481f935f173158cb950c643d68f29704f8e34da4dcb0feb3c8a843abda10dcb0ff475e14fe8dcc1f9d4413db34480ed0dd3bdf70f3f88c06cb
7
+ data.tar.gz: ff3b0d543525cdb3daea0011d143e75b53de43042abe02d731bd49213bd011d485aa25d8f290cf1f9fa7b28c24ce00e896f20d122e2354e0e205a33a07f03094
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2024-03-13)
5
+ ------------------
6
+
7
+ * Feature - adds support for multiple new composition layout configuration options (grid, pip)
8
+
4
9
  1.15.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.16.0
@@ -781,6 +781,20 @@ module Aws::IVSRealTime
781
781
  # resp.composition.destinations[0].state #=> String, one of "STARTING", "ACTIVE", "STOPPING", "RECONNECTING", "FAILED", "STOPPED"
782
782
  # resp.composition.end_time #=> Time
783
783
  # resp.composition.layout.grid.featured_participant_attribute #=> String
784
+ # resp.composition.layout.grid.grid_gap #=> Integer
785
+ # resp.composition.layout.grid.omit_stopped_video #=> Boolean
786
+ # resp.composition.layout.grid.video_aspect_ratio #=> String, one of "AUTO", "VIDEO", "SQUARE", "PORTRAIT"
787
+ # resp.composition.layout.grid.video_fill_mode #=> String, one of "FILL", "COVER", "CONTAIN"
788
+ # resp.composition.layout.pip.featured_participant_attribute #=> String
789
+ # resp.composition.layout.pip.grid_gap #=> Integer
790
+ # resp.composition.layout.pip.omit_stopped_video #=> Boolean
791
+ # resp.composition.layout.pip.pip_behavior #=> String, one of "STATIC", "DYNAMIC"
792
+ # resp.composition.layout.pip.pip_height #=> Integer
793
+ # resp.composition.layout.pip.pip_offset #=> Integer
794
+ # resp.composition.layout.pip.pip_participant_attribute #=> String
795
+ # resp.composition.layout.pip.pip_position #=> String, one of "TOP_LEFT", "TOP_RIGHT", "BOTTOM_LEFT", "BOTTOM_RIGHT"
796
+ # resp.composition.layout.pip.pip_width #=> Integer
797
+ # resp.composition.layout.pip.video_fill_mode #=> String, one of "FILL", "COVER", "CONTAIN"
784
798
  # resp.composition.stage_arn #=> String
785
799
  # resp.composition.start_time #=> Time
786
800
  # resp.composition.state #=> String, one of "STARTING", "ACTIVE", "STOPPING", "FAILED", "STOPPED"
@@ -1438,6 +1452,22 @@ module Aws::IVSRealTime
1438
1452
  # layout: {
1439
1453
  # grid: {
1440
1454
  # featured_participant_attribute: "AttributeKey",
1455
+ # grid_gap: 1,
1456
+ # omit_stopped_video: false,
1457
+ # video_aspect_ratio: "AUTO", # accepts AUTO, VIDEO, SQUARE, PORTRAIT
1458
+ # video_fill_mode: "FILL", # accepts FILL, COVER, CONTAIN
1459
+ # },
1460
+ # pip: {
1461
+ # featured_participant_attribute: "AttributeKey",
1462
+ # grid_gap: 1,
1463
+ # omit_stopped_video: false,
1464
+ # pip_behavior: "STATIC", # accepts STATIC, DYNAMIC
1465
+ # pip_height: 1,
1466
+ # pip_offset: 1,
1467
+ # pip_participant_attribute: "AttributeKey",
1468
+ # pip_position: "TOP_LEFT", # accepts TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT
1469
+ # pip_width: 1,
1470
+ # video_fill_mode: "FILL", # accepts FILL, COVER, CONTAIN
1441
1471
  # },
1442
1472
  # },
1443
1473
  # stage_arn: "StageArn", # required
@@ -1464,6 +1494,20 @@ module Aws::IVSRealTime
1464
1494
  # resp.composition.destinations[0].state #=> String, one of "STARTING", "ACTIVE", "STOPPING", "RECONNECTING", "FAILED", "STOPPED"
1465
1495
  # resp.composition.end_time #=> Time
1466
1496
  # resp.composition.layout.grid.featured_participant_attribute #=> String
1497
+ # resp.composition.layout.grid.grid_gap #=> Integer
1498
+ # resp.composition.layout.grid.omit_stopped_video #=> Boolean
1499
+ # resp.composition.layout.grid.video_aspect_ratio #=> String, one of "AUTO", "VIDEO", "SQUARE", "PORTRAIT"
1500
+ # resp.composition.layout.grid.video_fill_mode #=> String, one of "FILL", "COVER", "CONTAIN"
1501
+ # resp.composition.layout.pip.featured_participant_attribute #=> String
1502
+ # resp.composition.layout.pip.grid_gap #=> Integer
1503
+ # resp.composition.layout.pip.omit_stopped_video #=> Boolean
1504
+ # resp.composition.layout.pip.pip_behavior #=> String, one of "STATIC", "DYNAMIC"
1505
+ # resp.composition.layout.pip.pip_height #=> Integer
1506
+ # resp.composition.layout.pip.pip_offset #=> Integer
1507
+ # resp.composition.layout.pip.pip_participant_attribute #=> String
1508
+ # resp.composition.layout.pip.pip_position #=> String, one of "TOP_LEFT", "TOP_RIGHT", "BOTTOM_LEFT", "BOTTOM_RIGHT"
1509
+ # resp.composition.layout.pip.pip_width #=> Integer
1510
+ # resp.composition.layout.pip.video_fill_mode #=> String, one of "FILL", "COVER", "CONTAIN"
1467
1511
  # resp.composition.stage_arn #=> String
1468
1512
  # resp.composition.start_time #=> Time
1469
1513
  # resp.composition.state #=> String, one of "STARTING", "ACTIVE", "STOPPING", "FAILED", "STOPPED"
@@ -1621,7 +1665,7 @@ module Aws::IVSRealTime
1621
1665
  params: params,
1622
1666
  config: config)
1623
1667
  context[:gem_name] = 'aws-sdk-ivsrealtime'
1624
- context[:gem_version] = '1.15.0'
1668
+ context[:gem_version] = '1.16.0'
1625
1669
  Seahorse::Client::Request.new(handlers, context)
1626
1670
  end
1627
1671
 
@@ -75,6 +75,7 @@ module Aws::IVSRealTime
75
75
  GetStorageConfigurationRequest = Shapes::StructureShape.new(name: 'GetStorageConfigurationRequest')
76
76
  GetStorageConfigurationResponse = Shapes::StructureShape.new(name: 'GetStorageConfigurationResponse')
77
77
  GridConfiguration = Shapes::StructureShape.new(name: 'GridConfiguration')
78
+ GridGap = Shapes::IntegerShape.new(name: 'GridGap')
78
79
  Height = Shapes::IntegerShape.new(name: 'Height')
79
80
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
80
81
  LayoutConfiguration = Shapes::StructureShape.new(name: 'LayoutConfiguration')
@@ -101,6 +102,7 @@ module Aws::IVSRealTime
101
102
  MaxStageResults = Shapes::IntegerShape.new(name: 'MaxStageResults')
102
103
  MaxStageSessionResults = Shapes::IntegerShape.new(name: 'MaxStageSessionResults')
103
104
  MaxStorageConfigurationResults = Shapes::IntegerShape.new(name: 'MaxStorageConfigurationResults')
105
+ OmitStoppedVideo = Shapes::BooleanShape.new(name: 'OmitStoppedVideo')
104
106
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
105
107
  Participant = Shapes::StructureShape.new(name: 'Participant')
106
108
  ParticipantAttributes = Shapes::MapShape.new(name: 'ParticipantAttributes')
@@ -122,6 +124,12 @@ module Aws::IVSRealTime
122
124
  ParticipantTokenString = Shapes::StringShape.new(name: 'ParticipantTokenString')
123
125
  ParticipantTokenUserId = Shapes::StringShape.new(name: 'ParticipantTokenUserId')
124
126
  PendingVerification = Shapes::StructureShape.new(name: 'PendingVerification')
127
+ PipBehavior = Shapes::StringShape.new(name: 'PipBehavior')
128
+ PipConfiguration = Shapes::StructureShape.new(name: 'PipConfiguration')
129
+ PipHeight = Shapes::IntegerShape.new(name: 'PipHeight')
130
+ PipOffset = Shapes::IntegerShape.new(name: 'PipOffset')
131
+ PipPosition = Shapes::StringShape.new(name: 'PipPosition')
132
+ PipWidth = Shapes::IntegerShape.new(name: 'PipWidth')
125
133
  Published = Shapes::BooleanShape.new(name: 'Published')
126
134
  RecordingConfiguration = Shapes::StructureShape.new(name: 'RecordingConfiguration')
127
135
  RecordingConfigurationFormat = Shapes::StringShape.new(name: 'RecordingConfigurationFormat')
@@ -165,6 +173,8 @@ module Aws::IVSRealTime
165
173
  UserId = Shapes::StringShape.new(name: 'UserId')
166
174
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
167
175
  Video = Shapes::StructureShape.new(name: 'Video')
176
+ VideoAspectRatio = Shapes::StringShape.new(name: 'VideoAspectRatio')
177
+ VideoFillMode = Shapes::StringShape.new(name: 'VideoFillMode')
168
178
  Width = Shapes::IntegerShape.new(name: 'Width')
169
179
  errorMessage = Shapes::StringShape.new(name: 'errorMessage')
170
180
 
@@ -348,12 +358,17 @@ module Aws::IVSRealTime
348
358
  GetStorageConfigurationResponse.struct_class = Types::GetStorageConfigurationResponse
349
359
 
350
360
  GridConfiguration.add_member(:featured_participant_attribute, Shapes::ShapeRef.new(shape: AttributeKey, location_name: "featuredParticipantAttribute"))
361
+ GridConfiguration.add_member(:grid_gap, Shapes::ShapeRef.new(shape: GridGap, location_name: "gridGap"))
362
+ GridConfiguration.add_member(:omit_stopped_video, Shapes::ShapeRef.new(shape: OmitStoppedVideo, location_name: "omitStoppedVideo"))
363
+ GridConfiguration.add_member(:video_aspect_ratio, Shapes::ShapeRef.new(shape: VideoAspectRatio, location_name: "videoAspectRatio"))
364
+ GridConfiguration.add_member(:video_fill_mode, Shapes::ShapeRef.new(shape: VideoFillMode, location_name: "videoFillMode"))
351
365
  GridConfiguration.struct_class = Types::GridConfiguration
352
366
 
353
367
  InternalServerException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
354
368
  InternalServerException.struct_class = Types::InternalServerException
355
369
 
356
370
  LayoutConfiguration.add_member(:grid, Shapes::ShapeRef.new(shape: GridConfiguration, location_name: "grid"))
371
+ LayoutConfiguration.add_member(:pip, Shapes::ShapeRef.new(shape: PipConfiguration, location_name: "pip"))
357
372
  LayoutConfiguration.struct_class = Types::LayoutConfiguration
358
373
 
359
374
  ListCompositionsRequest.add_member(:filter_by_encoder_configuration_arn, Shapes::ShapeRef.new(shape: EncoderConfigurationArn, location_name: "filterByEncoderConfigurationArn"))
@@ -482,6 +497,18 @@ module Aws::IVSRealTime
482
497
  PendingVerification.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
483
498
  PendingVerification.struct_class = Types::PendingVerification
484
499
 
500
+ PipConfiguration.add_member(:featured_participant_attribute, Shapes::ShapeRef.new(shape: AttributeKey, location_name: "featuredParticipantAttribute"))
501
+ PipConfiguration.add_member(:grid_gap, Shapes::ShapeRef.new(shape: GridGap, location_name: "gridGap"))
502
+ PipConfiguration.add_member(:omit_stopped_video, Shapes::ShapeRef.new(shape: OmitStoppedVideo, location_name: "omitStoppedVideo"))
503
+ PipConfiguration.add_member(:pip_behavior, Shapes::ShapeRef.new(shape: PipBehavior, location_name: "pipBehavior"))
504
+ PipConfiguration.add_member(:pip_height, Shapes::ShapeRef.new(shape: PipHeight, location_name: "pipHeight"))
505
+ PipConfiguration.add_member(:pip_offset, Shapes::ShapeRef.new(shape: PipOffset, location_name: "pipOffset"))
506
+ PipConfiguration.add_member(:pip_participant_attribute, Shapes::ShapeRef.new(shape: AttributeKey, location_name: "pipParticipantAttribute"))
507
+ PipConfiguration.add_member(:pip_position, Shapes::ShapeRef.new(shape: PipPosition, location_name: "pipPosition"))
508
+ PipConfiguration.add_member(:pip_width, Shapes::ShapeRef.new(shape: PipWidth, location_name: "pipWidth"))
509
+ PipConfiguration.add_member(:video_fill_mode, Shapes::ShapeRef.new(shape: VideoFillMode, location_name: "videoFillMode"))
510
+ PipConfiguration.struct_class = Types::PipConfiguration
511
+
485
512
  RecordingConfiguration.add_member(:format, Shapes::ShapeRef.new(shape: RecordingConfigurationFormat, location_name: "format"))
486
513
  RecordingConfiguration.struct_class = Types::RecordingConfiguration
487
514
 
@@ -840,10 +840,34 @@ module Aws::IVSRealTime
840
840
  # ParticipantTokenConfiguration is placed in the featured slot.
841
841
  # @return [String]
842
842
  #
843
+ # @!attribute [rw] grid_gap
844
+ # Specifies the spacing between participant tiles in pixels. Default:
845
+ # `2`.
846
+ # @return [Integer]
847
+ #
848
+ # @!attribute [rw] omit_stopped_video
849
+ # Determines whether to omit participants with stopped video in the
850
+ # composition. Default: `false`.
851
+ # @return [Boolean]
852
+ #
853
+ # @!attribute [rw] video_aspect_ratio
854
+ # Sets the non-featured participant display mode. Default: `VIDEO`.
855
+ # @return [String]
856
+ #
857
+ # @!attribute [rw] video_fill_mode
858
+ # Defines how video fits within the participant tile. When not set,
859
+ # `videoFillMode` defaults to `COVER` fill mode for participants in
860
+ # the grid and to `CONTAIN` fill mode for featured participants.
861
+ # @return [String]
862
+ #
843
863
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GridConfiguration AWS API Documentation
844
864
  #
845
865
  class GridConfiguration < Struct.new(
846
- :featured_participant_attribute)
866
+ :featured_participant_attribute,
867
+ :grid_gap,
868
+ :omit_stopped_video,
869
+ :video_aspect_ratio,
870
+ :video_fill_mode)
847
871
  SENSITIVE = []
848
872
  include Aws::Structure
849
873
  end
@@ -867,10 +891,15 @@ module Aws::IVSRealTime
867
891
  # Configuration related to grid layout. Default: Grid layout.
868
892
  # @return [Types::GridConfiguration]
869
893
  #
894
+ # @!attribute [rw] pip
895
+ # Configuration related to PiP layout.
896
+ # @return [Types::PipConfiguration]
897
+ #
870
898
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/LayoutConfiguration AWS API Documentation
871
899
  #
872
900
  class LayoutConfiguration < Struct.new(
873
- :grid)
901
+ :grid,
902
+ :pip)
874
903
  SENSITIVE = []
875
904
  include Aws::Structure
876
905
  end
@@ -1449,6 +1478,84 @@ module Aws::IVSRealTime
1449
1478
  include Aws::Structure
1450
1479
  end
1451
1480
 
1481
+ # Configuration information specific to Picture-in-Picture (PiP) layout,
1482
+ # for [server-side composition][1].
1483
+ #
1484
+ #
1485
+ #
1486
+ # [1]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/server-side-composition.html
1487
+ #
1488
+ # @!attribute [rw] featured_participant_attribute
1489
+ # This attribute name identifies the featured slot. A participant with
1490
+ # this attribute set to `"true"` (as a string value) in
1491
+ # ParticipantTokenConfiguration is placed in the featured slot.
1492
+ # @return [String]
1493
+ #
1494
+ # @!attribute [rw] grid_gap
1495
+ # Specifies the spacing between participant tiles in pixels. Default:
1496
+ # `0`.
1497
+ # @return [Integer]
1498
+ #
1499
+ # @!attribute [rw] omit_stopped_video
1500
+ # Determines whether to omit participants with stopped video in the
1501
+ # composition. Default: `false`.
1502
+ # @return [Boolean]
1503
+ #
1504
+ # @!attribute [rw] pip_behavior
1505
+ # Defines PiP behavior when all participants have left. Default:
1506
+ # `STATIC`.
1507
+ # @return [String]
1508
+ #
1509
+ # @!attribute [rw] pip_height
1510
+ # Specifies the height of the PiP window in pixels. When this is not
1511
+ # set explicitly, `pipHeight`’s value will be based on the size of the
1512
+ # composition and the aspect ratio of the participant’s video.
1513
+ # @return [Integer]
1514
+ #
1515
+ # @!attribute [rw] pip_offset
1516
+ # Sets the PiP window’s offset position in pixels from the closest
1517
+ # edges determined by `PipPosition`. Default: `0`.
1518
+ # @return [Integer]
1519
+ #
1520
+ # @!attribute [rw] pip_participant_attribute
1521
+ # Identifies the PiP slot. A participant with this attribute set to
1522
+ # `"true"` (as a string value) in ParticipantTokenConfiguration is
1523
+ # placed in the PiP slot.
1524
+ # @return [String]
1525
+ #
1526
+ # @!attribute [rw] pip_position
1527
+ # Determines the corner position of the PiP window. Default:
1528
+ # `BOTTOM_RIGHT`.
1529
+ # @return [String]
1530
+ #
1531
+ # @!attribute [rw] pip_width
1532
+ # Specifies the width of the PiP window in pixels. When this is not
1533
+ # set explicitly, `pipWidth`’s value will be based on the size of the
1534
+ # composition and the aspect ratio of the participant’s video.
1535
+ # @return [Integer]
1536
+ #
1537
+ # @!attribute [rw] video_fill_mode
1538
+ # Defines how video fits within the participant tile. Default:
1539
+ # `COVER`.
1540
+ # @return [String]
1541
+ #
1542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/PipConfiguration AWS API Documentation
1543
+ #
1544
+ class PipConfiguration < Struct.new(
1545
+ :featured_participant_attribute,
1546
+ :grid_gap,
1547
+ :omit_stopped_video,
1548
+ :pip_behavior,
1549
+ :pip_height,
1550
+ :pip_offset,
1551
+ :pip_participant_attribute,
1552
+ :pip_position,
1553
+ :pip_width,
1554
+ :video_fill_mode)
1555
+ SENSITIVE = []
1556
+ include Aws::Structure
1557
+ end
1558
+
1452
1559
  # An object representing a configuration to record a stage stream.
1453
1560
  #
1454
1561
  # @!attribute [rw] format
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivsrealtime/customizations'
52
52
  # @!group service
53
53
  module Aws::IVSRealTime
54
54
 
55
- GEM_VERSION = '1.15.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -368,7 +368,23 @@ module Aws
368
368
  ?idempotency_token: ::String,
369
369
  ?layout: {
370
370
  grid: {
371
- featured_participant_attribute: ::String?
371
+ featured_participant_attribute: ::String?,
372
+ grid_gap: ::Integer?,
373
+ omit_stopped_video: bool?,
374
+ video_aspect_ratio: ("AUTO" | "VIDEO" | "SQUARE" | "PORTRAIT")?,
375
+ video_fill_mode: ("FILL" | "COVER" | "CONTAIN")?
376
+ }?,
377
+ pip: {
378
+ featured_participant_attribute: ::String?,
379
+ grid_gap: ::Integer?,
380
+ omit_stopped_video: bool?,
381
+ pip_behavior: ("STATIC" | "DYNAMIC")?,
382
+ pip_height: ::Integer?,
383
+ pip_offset: ::Integer?,
384
+ pip_participant_attribute: ::String?,
385
+ pip_position: ("TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT")?,
386
+ pip_width: ::Integer?,
387
+ video_fill_mode: ("FILL" | "COVER" | "CONTAIN")?
372
388
  }?
373
389
  },
374
390
  stage_arn: ::String,
data/sig/types.rbs CHANGED
@@ -251,6 +251,10 @@ module Aws::IVSRealTime
251
251
 
252
252
  class GridConfiguration
253
253
  attr_accessor featured_participant_attribute: ::String
254
+ attr_accessor grid_gap: ::Integer
255
+ attr_accessor omit_stopped_video: bool
256
+ attr_accessor video_aspect_ratio: ("AUTO" | "VIDEO" | "SQUARE" | "PORTRAIT")
257
+ attr_accessor video_fill_mode: ("FILL" | "COVER" | "CONTAIN")
254
258
  SENSITIVE: []
255
259
  end
256
260
 
@@ -261,6 +265,7 @@ module Aws::IVSRealTime
261
265
 
262
266
  class LayoutConfiguration
263
267
  attr_accessor grid: Types::GridConfiguration
268
+ attr_accessor pip: Types::PipConfiguration
264
269
  SENSITIVE: []
265
270
  end
266
271
 
@@ -418,6 +423,20 @@ module Aws::IVSRealTime
418
423
  SENSITIVE: []
419
424
  end
420
425
 
426
+ class PipConfiguration
427
+ attr_accessor featured_participant_attribute: ::String
428
+ attr_accessor grid_gap: ::Integer
429
+ attr_accessor omit_stopped_video: bool
430
+ attr_accessor pip_behavior: ("STATIC" | "DYNAMIC")
431
+ attr_accessor pip_height: ::Integer
432
+ attr_accessor pip_offset: ::Integer
433
+ attr_accessor pip_participant_attribute: ::String
434
+ attr_accessor pip_position: ("TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT")
435
+ attr_accessor pip_width: ::Integer
436
+ attr_accessor video_fill_mode: ("FILL" | "COVER" | "CONTAIN")
437
+ SENSITIVE: []
438
+ end
439
+
421
440
  class RecordingConfiguration
422
441
  attr_accessor format: ("HLS")
423
442
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivsrealtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core