aws-sdk-ivsrealtime 1.32.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivsrealtime/client.rb +2 -2
- data/lib/aws-sdk-ivsrealtime/types.rb +58 -16
- data/lib/aws-sdk-ivsrealtime.rb +1 -1
- data/sig/types.rbs +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4d89542aa59133c405553a1a687136ccd02908d69406b5c27e7d94928caa05e
|
4
|
+
data.tar.gz: 404ab3cd87215d69d4c6a8917988f7ef6f448d36facf9fdf24dbbfd25a910b62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc737bc0200c968cd6d68c2b8fc274e86d617271ac0effe03171118a6ade3802ec108f9468ed0cba262543f6ada806db3b04ce788d7a4d505b69aa4b0f02cf55
|
7
|
+
data.tar.gz: 1598d65560a3824ea51cc08b54a501ac856e191490574d90e066736af8c3c9e246e3682bcd1a6319b2637e2d48f208d9f38604312f877fb3bbe39d1687aecbeb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.33.0 (2024-10-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds new Stage Health EventErrorCodes applicable to RTMP(S) broadcasts. Bug Fix: Enforces that EncoderConfiguration Video height and width must be even-number values.
|
8
|
+
|
4
9
|
1.32.0 (2024-09-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.33.0
|
@@ -1554,7 +1554,7 @@ module Aws::IVSRealTime
|
|
1554
1554
|
# resp.events[0].participant_id #=> String
|
1555
1555
|
# resp.events[0].event_time #=> Time
|
1556
1556
|
# resp.events[0].remote_participant_id #=> String
|
1557
|
-
# resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY"
|
1557
|
+
# resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY", "B_FRAME_PRESENT", "INVALID_INPUT", "INTERNAL_SERVER_EXCEPTION"
|
1558
1558
|
# resp.next_token #=> String
|
1559
1559
|
#
|
1560
1560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListParticipantEvents AWS API Documentation
|
@@ -2205,7 +2205,7 @@ module Aws::IVSRealTime
|
|
2205
2205
|
tracer: tracer
|
2206
2206
|
)
|
2207
2207
|
context[:gem_name] = 'aws-sdk-ivsrealtime'
|
2208
|
-
context[:gem_version] = '1.
|
2208
|
+
context[:gem_version] = '1.33.0'
|
2209
2209
|
Seahorse::Client::Request.new(handlers, context)
|
2210
2210
|
end
|
2211
2211
|
|
@@ -794,19 +794,59 @@ module Aws::IVSRealTime
|
|
794
794
|
# @!attribute [rw] error_code
|
795
795
|
# If the event is an error event, the error code is provided to give
|
796
796
|
# insight into the specific error that occurred. If the event is not
|
797
|
-
# an error event, this field is null.
|
798
|
-
# indicates that the participant tried to take an action that the
|
799
|
-
# participant’s token is not allowed to do. For more information about
|
800
|
-
# participant capabilities, see the `capabilities` field in
|
801
|
-
# CreateParticipantToken. `QUOTA_EXCEEDED` indicates that the number
|
802
|
-
# of participants who want to publish/subscribe to a stage exceeds the
|
803
|
-
# quota; for more information, see [Service Quotas][1].
|
804
|
-
# `PUBLISHER_NOT_FOUND` indicates that the participant tried to
|
805
|
-
# subscribe to a publisher that doesn’t exist.
|
797
|
+
# an error event, this field is null.
|
806
798
|
#
|
799
|
+
# * `B_FRAME_PRESENT` — The participant's stream includes B-frames.
|
800
|
+
# For details, see [ IVS RTMP Publishing][1].
|
807
801
|
#
|
802
|
+
# * `BITRATE_EXCEEDED` — The participant exceeded the maximum
|
803
|
+
# supported bitrate. For details, see [ Service Quotas][2].
|
808
804
|
#
|
809
|
-
#
|
805
|
+
# * `INSUFFICIENT_CAPABILITIES` — The participant tried to take an
|
806
|
+
# action that the participant’s token is not allowed to do. For
|
807
|
+
# details on participant capabilities, see the `capabilities` field
|
808
|
+
# in CreateParticipantToken.
|
809
|
+
#
|
810
|
+
# * `INTERNAL_SERVER_EXCEPTION` — The participant failed to publish to
|
811
|
+
# the stage due to an internal server error.
|
812
|
+
#
|
813
|
+
# * `INVALID_AUDIO_CODEC` — The participant is using an invalid audio
|
814
|
+
# codec. For details, see [ Stream Ingest][3].
|
815
|
+
#
|
816
|
+
# * `INVALID_INPUT` — The participant is using an invalid input
|
817
|
+
# stream.
|
818
|
+
#
|
819
|
+
# * `INVALID_PROTOCOL` — The participant's IngestConfiguration
|
820
|
+
# resource is configured for RTMPS but they tried streaming with
|
821
|
+
# RTMP. For details, see [ IVS RTMP Publishing][1].
|
822
|
+
#
|
823
|
+
# * `INVALID_STREAM_KEY` — The participant is using an invalid stream
|
824
|
+
# key. For details, see [ IVS RTMP Publishing][1].
|
825
|
+
#
|
826
|
+
# * `INVALID_VIDEO_CODEC` — The participant is using an invalid video
|
827
|
+
# codec. For details, see [ Stream Ingest][3].
|
828
|
+
#
|
829
|
+
# * `PUBLISHER_NOT_FOUND` — The participant tried to subscribe to a
|
830
|
+
# publisher that doesn’t exist.
|
831
|
+
#
|
832
|
+
# * `QUOTA_EXCEEDED` — The number of participants who want to
|
833
|
+
# publish/subscribe to a stage exceeds the quota. For details, see [
|
834
|
+
# Service Quotas][2].
|
835
|
+
#
|
836
|
+
# * `RESOLUTION_EXCEEDED` — The participant exceeded the maximum
|
837
|
+
# supported resolution. For details, see [ Service Quotas][2].
|
838
|
+
#
|
839
|
+
# * `REUSE_OF_STREAM_KEY` — The participant tried to use a stream key
|
840
|
+
# that is associated with another active stage session.
|
841
|
+
#
|
842
|
+
# * `STREAM_DURATION_EXCEEDED` — The participant exceeded the maximum
|
843
|
+
# allowed stream duration. For details, see [ Service Quotas][2].
|
844
|
+
#
|
845
|
+
#
|
846
|
+
#
|
847
|
+
# [1]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-rtmp-publishing.html
|
848
|
+
# [2]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html
|
849
|
+
# [3]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-stream-ingest.html
|
810
850
|
# @return [String]
|
811
851
|
#
|
812
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/Event AWS API Documentation
|
@@ -2710,15 +2750,17 @@ module Aws::IVSRealTime
|
|
2710
2750
|
# Settings for video.
|
2711
2751
|
#
|
2712
2752
|
# @!attribute [rw] width
|
2713
|
-
# Video-resolution width.
|
2714
|
-
# `width` times `height`, such that the
|
2715
|
-
# 2073600 (1920x1080 or 1080x1920). Default:
|
2753
|
+
# Video-resolution width. This must be an even number. Note that the
|
2754
|
+
# maximum value is determined by `width` times `height`, such that the
|
2755
|
+
# maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
|
2756
|
+
# 1280.
|
2716
2757
|
# @return [Integer]
|
2717
2758
|
#
|
2718
2759
|
# @!attribute [rw] height
|
2719
|
-
# Video-resolution height.
|
2720
|
-
# by `width` times `height`, such that the
|
2721
|
-
# 2073600 (1920x1080 or 1080x1920). Default:
|
2760
|
+
# Video-resolution height. This must be an even number. Note that the
|
2761
|
+
# maximum value is determined by `width` times `height`, such that the
|
2762
|
+
# maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
|
2763
|
+
# 720.
|
2722
2764
|
# @return [Integer]
|
2723
2765
|
#
|
2724
2766
|
# @!attribute [rw] framerate
|
data/lib/aws-sdk-ivsrealtime.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -222,7 +222,7 @@ module Aws::IVSRealTime
|
|
222
222
|
attr_accessor participant_id: ::String
|
223
223
|
attr_accessor event_time: ::Time
|
224
224
|
attr_accessor remote_participant_id: ::String
|
225
|
-
attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY")
|
225
|
+
attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY" | "B_FRAME_PRESENT" | "INVALID_INPUT" | "INTERNAL_SERVER_EXCEPTION")
|
226
226
|
SENSITIVE: []
|
227
227
|
end
|
228
228
|
|
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.
|
4
|
+
version: 1.33.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-
|
11
|
+
date: 2024-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|