@aws-sdk/client-ivs-realtime 3.936.0 → 3.940.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.
- package/dist-cjs/index.js +78 -0
- package/dist-es/models/enums.js +67 -0
- package/dist-es/models/models_0.js +1 -67
- package/dist-types/models/enums.d.ts +155 -0
- package/dist-types/models/models_0.d.ts +1 -156
- package/dist-types/ts3.4/models/enums.d.ts +88 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -88
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -2632,6 +2632,14 @@ const IngestProtocol = {
|
|
|
2632
2632
|
RTMP: "RTMP",
|
|
2633
2633
|
RTMPS: "RTMPS",
|
|
2634
2634
|
};
|
|
2635
|
+
const IngestConfigurationState = {
|
|
2636
|
+
ACTIVE: "ACTIVE",
|
|
2637
|
+
INACTIVE: "INACTIVE",
|
|
2638
|
+
};
|
|
2639
|
+
const ParticipantTokenCapability = {
|
|
2640
|
+
PUBLISH: "PUBLISH",
|
|
2641
|
+
SUBSCRIBE: "SUBSCRIBE",
|
|
2642
|
+
};
|
|
2635
2643
|
const ParticipantRecordingMediaType = {
|
|
2636
2644
|
AUDIO_ONLY: "AUDIO_ONLY",
|
|
2637
2645
|
AUDIO_VIDEO: "AUDIO_VIDEO",
|
|
@@ -2645,6 +2653,17 @@ const ThumbnailStorageType = {
|
|
|
2645
2653
|
LATEST: "LATEST",
|
|
2646
2654
|
SEQUENTIAL: "SEQUENTIAL",
|
|
2647
2655
|
};
|
|
2656
|
+
const RecordingConfigurationFormat = {
|
|
2657
|
+
HLS: "HLS",
|
|
2658
|
+
};
|
|
2659
|
+
const DestinationState = {
|
|
2660
|
+
ACTIVE: "ACTIVE",
|
|
2661
|
+
FAILED: "FAILED",
|
|
2662
|
+
RECONNECTING: "RECONNECTING",
|
|
2663
|
+
STARTING: "STARTING",
|
|
2664
|
+
STOPPED: "STOPPED",
|
|
2665
|
+
STOPPING: "STOPPING",
|
|
2666
|
+
};
|
|
2648
2667
|
const VideoAspectRatio = {
|
|
2649
2668
|
AUTO: "AUTO",
|
|
2650
2669
|
PORTRAIT: "PORTRAIT",
|
|
@@ -2666,12 +2685,40 @@ const PipPosition = {
|
|
|
2666
2685
|
TOP_LEFT: "TOP_LEFT",
|
|
2667
2686
|
TOP_RIGHT: "TOP_RIGHT",
|
|
2668
2687
|
};
|
|
2688
|
+
const CompositionState = {
|
|
2689
|
+
ACTIVE: "ACTIVE",
|
|
2690
|
+
FAILED: "FAILED",
|
|
2691
|
+
STARTING: "STARTING",
|
|
2692
|
+
STOPPED: "STOPPED",
|
|
2693
|
+
STOPPING: "STOPPING",
|
|
2694
|
+
};
|
|
2669
2695
|
const ParticipantProtocol = {
|
|
2670
2696
|
RTMP: "RTMP",
|
|
2671
2697
|
RTMPS: "RTMPS",
|
|
2672
2698
|
UNKNOWN: "UNKNOWN",
|
|
2673
2699
|
WHIP: "WHIP",
|
|
2674
2700
|
};
|
|
2701
|
+
const ParticipantRecordingState = {
|
|
2702
|
+
ACTIVE: "ACTIVE",
|
|
2703
|
+
DISABLED: "DISABLED",
|
|
2704
|
+
FAILED: "FAILED",
|
|
2705
|
+
STARTING: "STARTING",
|
|
2706
|
+
STOPPED: "STOPPED",
|
|
2707
|
+
STOPPING: "STOPPING",
|
|
2708
|
+
};
|
|
2709
|
+
const ReplicationState = {
|
|
2710
|
+
ACTIVE: "ACTIVE",
|
|
2711
|
+
STOPPED: "STOPPED",
|
|
2712
|
+
};
|
|
2713
|
+
const ReplicationType = {
|
|
2714
|
+
NONE: "NONE",
|
|
2715
|
+
REPLICA: "REPLICA",
|
|
2716
|
+
SOURCE: "SOURCE",
|
|
2717
|
+
};
|
|
2718
|
+
const ParticipantState = {
|
|
2719
|
+
CONNECTED: "CONNECTED",
|
|
2720
|
+
DISCONNECTED: "DISCONNECTED",
|
|
2721
|
+
};
|
|
2675
2722
|
const EventErrorCode = {
|
|
2676
2723
|
BITRATE_EXCEEDED: "BITRATE_EXCEEDED",
|
|
2677
2724
|
B_FRAME_PRESENT: "B_FRAME_PRESENT",
|
|
@@ -2688,6 +2735,26 @@ const EventErrorCode = {
|
|
|
2688
2735
|
REUSE_OF_STREAM_KEY: "REUSE_OF_STREAM_KEY",
|
|
2689
2736
|
STREAM_DURATION_EXCEEDED: "STREAM_DURATION_EXCEEDED",
|
|
2690
2737
|
};
|
|
2738
|
+
const EventName = {
|
|
2739
|
+
JOINED: "JOINED",
|
|
2740
|
+
JOIN_ERROR: "JOIN_ERROR",
|
|
2741
|
+
LEFT: "LEFT",
|
|
2742
|
+
PUBLISH_ERROR: "PUBLISH_ERROR",
|
|
2743
|
+
PUBLISH_STARTED: "PUBLISH_STARTED",
|
|
2744
|
+
PUBLISH_STOPPED: "PUBLISH_STOPPED",
|
|
2745
|
+
REPLICATION_STARTED: "REPLICATION_STARTED",
|
|
2746
|
+
REPLICATION_STOPPED: "REPLICATION_STOPPED",
|
|
2747
|
+
SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR",
|
|
2748
|
+
SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED",
|
|
2749
|
+
SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED",
|
|
2750
|
+
};
|
|
2751
|
+
const ParticipantRecordingFilterByRecordingState = {
|
|
2752
|
+
ACTIVE: "ACTIVE",
|
|
2753
|
+
FAILED: "FAILED",
|
|
2754
|
+
STARTING: "STARTING",
|
|
2755
|
+
STOPPED: "STOPPED",
|
|
2756
|
+
STOPPING: "STOPPING",
|
|
2757
|
+
};
|
|
2691
2758
|
|
|
2692
2759
|
Object.defineProperty(exports, "$Command", {
|
|
2693
2760
|
enumerable: true,
|
|
@@ -2698,6 +2765,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2698
2765
|
get: function () { return smithyClient.Client; }
|
|
2699
2766
|
});
|
|
2700
2767
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2768
|
+
exports.CompositionState = CompositionState;
|
|
2701
2769
|
exports.ConflictException = ConflictException$1;
|
|
2702
2770
|
exports.CreateEncoderConfigurationCommand = CreateEncoderConfigurationCommand;
|
|
2703
2771
|
exports.CreateIngestConfigurationCommand = CreateIngestConfigurationCommand;
|
|
@@ -2709,8 +2777,10 @@ exports.DeleteIngestConfigurationCommand = DeleteIngestConfigurationCommand;
|
|
|
2709
2777
|
exports.DeletePublicKeyCommand = DeletePublicKeyCommand;
|
|
2710
2778
|
exports.DeleteStageCommand = DeleteStageCommand;
|
|
2711
2779
|
exports.DeleteStorageConfigurationCommand = DeleteStorageConfigurationCommand;
|
|
2780
|
+
exports.DestinationState = DestinationState;
|
|
2712
2781
|
exports.DisconnectParticipantCommand = DisconnectParticipantCommand;
|
|
2713
2782
|
exports.EventErrorCode = EventErrorCode;
|
|
2783
|
+
exports.EventName = EventName;
|
|
2714
2784
|
exports.GetCompositionCommand = GetCompositionCommand;
|
|
2715
2785
|
exports.GetEncoderConfigurationCommand = GetEncoderConfigurationCommand;
|
|
2716
2786
|
exports.GetIngestConfigurationCommand = GetIngestConfigurationCommand;
|
|
@@ -2723,6 +2793,7 @@ exports.IVSRealTime = IVSRealTime;
|
|
|
2723
2793
|
exports.IVSRealTimeClient = IVSRealTimeClient;
|
|
2724
2794
|
exports.IVSRealTimeServiceException = IVSRealTimeServiceException$1;
|
|
2725
2795
|
exports.ImportPublicKeyCommand = ImportPublicKeyCommand;
|
|
2796
|
+
exports.IngestConfigurationState = IngestConfigurationState;
|
|
2726
2797
|
exports.IngestProtocol = IngestProtocol;
|
|
2727
2798
|
exports.InternalServerException = InternalServerException$1;
|
|
2728
2799
|
exports.ListCompositionsCommand = ListCompositionsCommand;
|
|
@@ -2737,10 +2808,17 @@ exports.ListStagesCommand = ListStagesCommand;
|
|
|
2737
2808
|
exports.ListStorageConfigurationsCommand = ListStorageConfigurationsCommand;
|
|
2738
2809
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2739
2810
|
exports.ParticipantProtocol = ParticipantProtocol;
|
|
2811
|
+
exports.ParticipantRecordingFilterByRecordingState = ParticipantRecordingFilterByRecordingState;
|
|
2740
2812
|
exports.ParticipantRecordingMediaType = ParticipantRecordingMediaType;
|
|
2813
|
+
exports.ParticipantRecordingState = ParticipantRecordingState;
|
|
2814
|
+
exports.ParticipantState = ParticipantState;
|
|
2815
|
+
exports.ParticipantTokenCapability = ParticipantTokenCapability;
|
|
2741
2816
|
exports.PendingVerification = PendingVerification$1;
|
|
2742
2817
|
exports.PipBehavior = PipBehavior;
|
|
2743
2818
|
exports.PipPosition = PipPosition;
|
|
2819
|
+
exports.RecordingConfigurationFormat = RecordingConfigurationFormat;
|
|
2820
|
+
exports.ReplicationState = ReplicationState;
|
|
2821
|
+
exports.ReplicationType = ReplicationType;
|
|
2744
2822
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2745
2823
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2746
2824
|
exports.StartCompositionCommand = StartCompositionCommand;
|
package/dist-es/models/enums.js
CHANGED
|
@@ -2,6 +2,14 @@ export const IngestProtocol = {
|
|
|
2
2
|
RTMP: "RTMP",
|
|
3
3
|
RTMPS: "RTMPS",
|
|
4
4
|
};
|
|
5
|
+
export const IngestConfigurationState = {
|
|
6
|
+
ACTIVE: "ACTIVE",
|
|
7
|
+
INACTIVE: "INACTIVE",
|
|
8
|
+
};
|
|
9
|
+
export const ParticipantTokenCapability = {
|
|
10
|
+
PUBLISH: "PUBLISH",
|
|
11
|
+
SUBSCRIBE: "SUBSCRIBE",
|
|
12
|
+
};
|
|
5
13
|
export const ParticipantRecordingMediaType = {
|
|
6
14
|
AUDIO_ONLY: "AUDIO_ONLY",
|
|
7
15
|
AUDIO_VIDEO: "AUDIO_VIDEO",
|
|
@@ -15,6 +23,17 @@ export const ThumbnailStorageType = {
|
|
|
15
23
|
LATEST: "LATEST",
|
|
16
24
|
SEQUENTIAL: "SEQUENTIAL",
|
|
17
25
|
};
|
|
26
|
+
export const RecordingConfigurationFormat = {
|
|
27
|
+
HLS: "HLS",
|
|
28
|
+
};
|
|
29
|
+
export const DestinationState = {
|
|
30
|
+
ACTIVE: "ACTIVE",
|
|
31
|
+
FAILED: "FAILED",
|
|
32
|
+
RECONNECTING: "RECONNECTING",
|
|
33
|
+
STARTING: "STARTING",
|
|
34
|
+
STOPPED: "STOPPED",
|
|
35
|
+
STOPPING: "STOPPING",
|
|
36
|
+
};
|
|
18
37
|
export const VideoAspectRatio = {
|
|
19
38
|
AUTO: "AUTO",
|
|
20
39
|
PORTRAIT: "PORTRAIT",
|
|
@@ -36,12 +55,40 @@ export const PipPosition = {
|
|
|
36
55
|
TOP_LEFT: "TOP_LEFT",
|
|
37
56
|
TOP_RIGHT: "TOP_RIGHT",
|
|
38
57
|
};
|
|
58
|
+
export const CompositionState = {
|
|
59
|
+
ACTIVE: "ACTIVE",
|
|
60
|
+
FAILED: "FAILED",
|
|
61
|
+
STARTING: "STARTING",
|
|
62
|
+
STOPPED: "STOPPED",
|
|
63
|
+
STOPPING: "STOPPING",
|
|
64
|
+
};
|
|
39
65
|
export const ParticipantProtocol = {
|
|
40
66
|
RTMP: "RTMP",
|
|
41
67
|
RTMPS: "RTMPS",
|
|
42
68
|
UNKNOWN: "UNKNOWN",
|
|
43
69
|
WHIP: "WHIP",
|
|
44
70
|
};
|
|
71
|
+
export const ParticipantRecordingState = {
|
|
72
|
+
ACTIVE: "ACTIVE",
|
|
73
|
+
DISABLED: "DISABLED",
|
|
74
|
+
FAILED: "FAILED",
|
|
75
|
+
STARTING: "STARTING",
|
|
76
|
+
STOPPED: "STOPPED",
|
|
77
|
+
STOPPING: "STOPPING",
|
|
78
|
+
};
|
|
79
|
+
export const ReplicationState = {
|
|
80
|
+
ACTIVE: "ACTIVE",
|
|
81
|
+
STOPPED: "STOPPED",
|
|
82
|
+
};
|
|
83
|
+
export const ReplicationType = {
|
|
84
|
+
NONE: "NONE",
|
|
85
|
+
REPLICA: "REPLICA",
|
|
86
|
+
SOURCE: "SOURCE",
|
|
87
|
+
};
|
|
88
|
+
export const ParticipantState = {
|
|
89
|
+
CONNECTED: "CONNECTED",
|
|
90
|
+
DISCONNECTED: "DISCONNECTED",
|
|
91
|
+
};
|
|
45
92
|
export const EventErrorCode = {
|
|
46
93
|
BITRATE_EXCEEDED: "BITRATE_EXCEEDED",
|
|
47
94
|
B_FRAME_PRESENT: "B_FRAME_PRESENT",
|
|
@@ -58,3 +105,23 @@ export const EventErrorCode = {
|
|
|
58
105
|
REUSE_OF_STREAM_KEY: "REUSE_OF_STREAM_KEY",
|
|
59
106
|
STREAM_DURATION_EXCEEDED: "STREAM_DURATION_EXCEEDED",
|
|
60
107
|
};
|
|
108
|
+
export const EventName = {
|
|
109
|
+
JOINED: "JOINED",
|
|
110
|
+
JOIN_ERROR: "JOIN_ERROR",
|
|
111
|
+
LEFT: "LEFT",
|
|
112
|
+
PUBLISH_ERROR: "PUBLISH_ERROR",
|
|
113
|
+
PUBLISH_STARTED: "PUBLISH_STARTED",
|
|
114
|
+
PUBLISH_STOPPED: "PUBLISH_STOPPED",
|
|
115
|
+
REPLICATION_STARTED: "REPLICATION_STARTED",
|
|
116
|
+
REPLICATION_STOPPED: "REPLICATION_STOPPED",
|
|
117
|
+
SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR",
|
|
118
|
+
SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED",
|
|
119
|
+
SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED",
|
|
120
|
+
};
|
|
121
|
+
export const ParticipantRecordingFilterByRecordingState = {
|
|
122
|
+
ACTIVE: "ACTIVE",
|
|
123
|
+
FAILED: "FAILED",
|
|
124
|
+
STARTING: "STARTING",
|
|
125
|
+
STOPPED: "STOPPED",
|
|
126
|
+
STOPPING: "STOPPING",
|
|
127
|
+
};
|
|
@@ -1,67 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
ACTIVE: "ACTIVE",
|
|
3
|
-
INACTIVE: "INACTIVE",
|
|
4
|
-
};
|
|
5
|
-
export const ParticipantTokenCapability = {
|
|
6
|
-
PUBLISH: "PUBLISH",
|
|
7
|
-
SUBSCRIBE: "SUBSCRIBE",
|
|
8
|
-
};
|
|
9
|
-
export const RecordingConfigurationFormat = {
|
|
10
|
-
HLS: "HLS",
|
|
11
|
-
};
|
|
12
|
-
export const DestinationState = {
|
|
13
|
-
ACTIVE: "ACTIVE",
|
|
14
|
-
FAILED: "FAILED",
|
|
15
|
-
RECONNECTING: "RECONNECTING",
|
|
16
|
-
STARTING: "STARTING",
|
|
17
|
-
STOPPED: "STOPPED",
|
|
18
|
-
STOPPING: "STOPPING",
|
|
19
|
-
};
|
|
20
|
-
export const CompositionState = {
|
|
21
|
-
ACTIVE: "ACTIVE",
|
|
22
|
-
FAILED: "FAILED",
|
|
23
|
-
STARTING: "STARTING",
|
|
24
|
-
STOPPED: "STOPPED",
|
|
25
|
-
STOPPING: "STOPPING",
|
|
26
|
-
};
|
|
27
|
-
export const ParticipantRecordingState = {
|
|
28
|
-
ACTIVE: "ACTIVE",
|
|
29
|
-
DISABLED: "DISABLED",
|
|
30
|
-
FAILED: "FAILED",
|
|
31
|
-
STARTING: "STARTING",
|
|
32
|
-
STOPPED: "STOPPED",
|
|
33
|
-
STOPPING: "STOPPING",
|
|
34
|
-
};
|
|
35
|
-
export const ReplicationState = {
|
|
36
|
-
ACTIVE: "ACTIVE",
|
|
37
|
-
STOPPED: "STOPPED",
|
|
38
|
-
};
|
|
39
|
-
export const ReplicationType = {
|
|
40
|
-
NONE: "NONE",
|
|
41
|
-
REPLICA: "REPLICA",
|
|
42
|
-
SOURCE: "SOURCE",
|
|
43
|
-
};
|
|
44
|
-
export const ParticipantState = {
|
|
45
|
-
CONNECTED: "CONNECTED",
|
|
46
|
-
DISCONNECTED: "DISCONNECTED",
|
|
47
|
-
};
|
|
48
|
-
export const EventName = {
|
|
49
|
-
JOINED: "JOINED",
|
|
50
|
-
JOIN_ERROR: "JOIN_ERROR",
|
|
51
|
-
LEFT: "LEFT",
|
|
52
|
-
PUBLISH_ERROR: "PUBLISH_ERROR",
|
|
53
|
-
PUBLISH_STARTED: "PUBLISH_STARTED",
|
|
54
|
-
PUBLISH_STOPPED: "PUBLISH_STOPPED",
|
|
55
|
-
REPLICATION_STARTED: "REPLICATION_STARTED",
|
|
56
|
-
REPLICATION_STOPPED: "REPLICATION_STOPPED",
|
|
57
|
-
SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR",
|
|
58
|
-
SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED",
|
|
59
|
-
SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED",
|
|
60
|
-
};
|
|
61
|
-
export const ParticipantRecordingFilterByRecordingState = {
|
|
62
|
-
ACTIVE: "ACTIVE",
|
|
63
|
-
FAILED: "FAILED",
|
|
64
|
-
STARTING: "STARTING",
|
|
65
|
-
STOPPED: "STOPPED",
|
|
66
|
-
STOPPING: "STOPPING",
|
|
67
|
-
};
|
|
1
|
+
export {};
|
|
@@ -10,6 +10,30 @@ export declare const IngestProtocol: {
|
|
|
10
10
|
* @public
|
|
11
11
|
*/
|
|
12
12
|
export type IngestProtocol = (typeof IngestProtocol)[keyof typeof IngestProtocol];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const IngestConfigurationState: {
|
|
18
|
+
readonly ACTIVE: "ACTIVE";
|
|
19
|
+
readonly INACTIVE: "INACTIVE";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type IngestConfigurationState = (typeof IngestConfigurationState)[keyof typeof IngestConfigurationState];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const ParticipantTokenCapability: {
|
|
30
|
+
readonly PUBLISH: "PUBLISH";
|
|
31
|
+
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type ParticipantTokenCapability = (typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
13
37
|
/**
|
|
14
38
|
* @public
|
|
15
39
|
* @enum
|
|
@@ -47,6 +71,33 @@ export declare const ThumbnailStorageType: {
|
|
|
47
71
|
* @public
|
|
48
72
|
*/
|
|
49
73
|
export type ThumbnailStorageType = (typeof ThumbnailStorageType)[keyof typeof ThumbnailStorageType];
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const RecordingConfigurationFormat: {
|
|
79
|
+
readonly HLS: "HLS";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export type RecordingConfigurationFormat = (typeof RecordingConfigurationFormat)[keyof typeof RecordingConfigurationFormat];
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* @enum
|
|
88
|
+
*/
|
|
89
|
+
export declare const DestinationState: {
|
|
90
|
+
readonly ACTIVE: "ACTIVE";
|
|
91
|
+
readonly FAILED: "FAILED";
|
|
92
|
+
readonly RECONNECTING: "RECONNECTING";
|
|
93
|
+
readonly STARTING: "STARTING";
|
|
94
|
+
readonly STOPPED: "STOPPED";
|
|
95
|
+
readonly STOPPING: "STOPPING";
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export type DestinationState = (typeof DestinationState)[keyof typeof DestinationState];
|
|
50
101
|
/**
|
|
51
102
|
* @public
|
|
52
103
|
* @enum
|
|
@@ -100,6 +151,21 @@ export declare const PipPosition: {
|
|
|
100
151
|
* @public
|
|
101
152
|
*/
|
|
102
153
|
export type PipPosition = (typeof PipPosition)[keyof typeof PipPosition];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const CompositionState: {
|
|
159
|
+
readonly ACTIVE: "ACTIVE";
|
|
160
|
+
readonly FAILED: "FAILED";
|
|
161
|
+
readonly STARTING: "STARTING";
|
|
162
|
+
readonly STOPPED: "STOPPED";
|
|
163
|
+
readonly STOPPING: "STOPPING";
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
export type CompositionState = (typeof CompositionState)[keyof typeof CompositionState];
|
|
103
169
|
/**
|
|
104
170
|
* @public
|
|
105
171
|
* @enum
|
|
@@ -114,6 +180,59 @@ export declare const ParticipantProtocol: {
|
|
|
114
180
|
* @public
|
|
115
181
|
*/
|
|
116
182
|
export type ParticipantProtocol = (typeof ParticipantProtocol)[keyof typeof ParticipantProtocol];
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* @enum
|
|
186
|
+
*/
|
|
187
|
+
export declare const ParticipantRecordingState: {
|
|
188
|
+
readonly ACTIVE: "ACTIVE";
|
|
189
|
+
readonly DISABLED: "DISABLED";
|
|
190
|
+
readonly FAILED: "FAILED";
|
|
191
|
+
readonly STARTING: "STARTING";
|
|
192
|
+
readonly STOPPED: "STOPPED";
|
|
193
|
+
readonly STOPPING: "STOPPING";
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
export type ParticipantRecordingState = (typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
* @enum
|
|
202
|
+
*/
|
|
203
|
+
export declare const ReplicationState: {
|
|
204
|
+
readonly ACTIVE: "ACTIVE";
|
|
205
|
+
readonly STOPPED: "STOPPED";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type ReplicationState = (typeof ReplicationState)[keyof typeof ReplicationState];
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
* @enum
|
|
214
|
+
*/
|
|
215
|
+
export declare const ReplicationType: {
|
|
216
|
+
readonly NONE: "NONE";
|
|
217
|
+
readonly REPLICA: "REPLICA";
|
|
218
|
+
readonly SOURCE: "SOURCE";
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
export type ReplicationType = (typeof ReplicationType)[keyof typeof ReplicationType];
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
* @enum
|
|
227
|
+
*/
|
|
228
|
+
export declare const ParticipantState: {
|
|
229
|
+
readonly CONNECTED: "CONNECTED";
|
|
230
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
export type ParticipantState = (typeof ParticipantState)[keyof typeof ParticipantState];
|
|
117
236
|
/**
|
|
118
237
|
* @public
|
|
119
238
|
* @enum
|
|
@@ -138,3 +257,39 @@ export declare const EventErrorCode: {
|
|
|
138
257
|
* @public
|
|
139
258
|
*/
|
|
140
259
|
export type EventErrorCode = (typeof EventErrorCode)[keyof typeof EventErrorCode];
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
* @enum
|
|
263
|
+
*/
|
|
264
|
+
export declare const EventName: {
|
|
265
|
+
readonly JOINED: "JOINED";
|
|
266
|
+
readonly JOIN_ERROR: "JOIN_ERROR";
|
|
267
|
+
readonly LEFT: "LEFT";
|
|
268
|
+
readonly PUBLISH_ERROR: "PUBLISH_ERROR";
|
|
269
|
+
readonly PUBLISH_STARTED: "PUBLISH_STARTED";
|
|
270
|
+
readonly PUBLISH_STOPPED: "PUBLISH_STOPPED";
|
|
271
|
+
readonly REPLICATION_STARTED: "REPLICATION_STARTED";
|
|
272
|
+
readonly REPLICATION_STOPPED: "REPLICATION_STOPPED";
|
|
273
|
+
readonly SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR";
|
|
274
|
+
readonly SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED";
|
|
275
|
+
readonly SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED";
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
export type EventName = (typeof EventName)[keyof typeof EventName];
|
|
281
|
+
/**
|
|
282
|
+
* @public
|
|
283
|
+
* @enum
|
|
284
|
+
*/
|
|
285
|
+
export declare const ParticipantRecordingFilterByRecordingState: {
|
|
286
|
+
readonly ACTIVE: "ACTIVE";
|
|
287
|
+
readonly FAILED: "FAILED";
|
|
288
|
+
readonly STARTING: "STARTING";
|
|
289
|
+
readonly STOPPED: "STOPPED";
|
|
290
|
+
readonly STOPPING: "STOPPING";
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export type ParticipantRecordingFilterByRecordingState = (typeof ParticipantRecordingFilterByRecordingState)[keyof typeof ParticipantRecordingFilterByRecordingState];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventErrorCode, IngestProtocol, ParticipantProtocol, ParticipantRecordingMediaType, PipBehavior, PipPosition, ThumbnailRecordingMode, ThumbnailStorageType, VideoAspectRatio, VideoFillMode } from "./enums";
|
|
1
|
+
import { CompositionState, DestinationState, EventErrorCode, EventName, IngestConfigurationState, IngestProtocol, ParticipantProtocol, ParticipantRecordingFilterByRecordingState, ParticipantRecordingMediaType, ParticipantRecordingState, ParticipantState, ParticipantTokenCapability, PipBehavior, PipPosition, RecordingConfigurationFormat, ReplicationState, ReplicationType, ThumbnailRecordingMode, ThumbnailStorageType, VideoAspectRatio, VideoFillMode } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Settings for video.</p>
|
|
4
4
|
* @public
|
|
@@ -143,18 +143,6 @@ export interface CreateIngestConfigurationRequest {
|
|
|
143
143
|
*/
|
|
144
144
|
tags?: Record<string, string> | undefined;
|
|
145
145
|
}
|
|
146
|
-
/**
|
|
147
|
-
* @public
|
|
148
|
-
* @enum
|
|
149
|
-
*/
|
|
150
|
-
export declare const IngestConfigurationState: {
|
|
151
|
-
readonly ACTIVE: "ACTIVE";
|
|
152
|
-
readonly INACTIVE: "INACTIVE";
|
|
153
|
-
};
|
|
154
|
-
/**
|
|
155
|
-
* @public
|
|
156
|
-
*/
|
|
157
|
-
export type IngestConfigurationState = (typeof IngestConfigurationState)[keyof typeof IngestConfigurationState];
|
|
158
146
|
/**
|
|
159
147
|
* <p>Object specifying an ingest configuration.</p>
|
|
160
148
|
* @public
|
|
@@ -236,18 +224,6 @@ export interface CreateIngestConfigurationResponse {
|
|
|
236
224
|
*/
|
|
237
225
|
ingestConfiguration?: IngestConfiguration | undefined;
|
|
238
226
|
}
|
|
239
|
-
/**
|
|
240
|
-
* @public
|
|
241
|
-
* @enum
|
|
242
|
-
*/
|
|
243
|
-
export declare const ParticipantTokenCapability: {
|
|
244
|
-
readonly PUBLISH: "PUBLISH";
|
|
245
|
-
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
246
|
-
};
|
|
247
|
-
/**
|
|
248
|
-
* @public
|
|
249
|
-
*/
|
|
250
|
-
export type ParticipantTokenCapability = (typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
251
227
|
/**
|
|
252
228
|
* @public
|
|
253
229
|
*/
|
|
@@ -796,17 +772,6 @@ export interface ChannelDestinationConfiguration {
|
|
|
796
772
|
*/
|
|
797
773
|
encoderConfigurationArn?: string | undefined;
|
|
798
774
|
}
|
|
799
|
-
/**
|
|
800
|
-
* @public
|
|
801
|
-
* @enum
|
|
802
|
-
*/
|
|
803
|
-
export declare const RecordingConfigurationFormat: {
|
|
804
|
-
readonly HLS: "HLS";
|
|
805
|
-
};
|
|
806
|
-
/**
|
|
807
|
-
* @public
|
|
808
|
-
*/
|
|
809
|
-
export type RecordingConfigurationFormat = (typeof RecordingConfigurationFormat)[keyof typeof RecordingConfigurationFormat];
|
|
810
775
|
/**
|
|
811
776
|
* <p>An object representing a configuration of HLS recordings for server-side composition.</p>
|
|
812
777
|
* @public
|
|
@@ -934,22 +899,6 @@ export interface DestinationDetail {
|
|
|
934
899
|
*/
|
|
935
900
|
s3?: S3Detail | undefined;
|
|
936
901
|
}
|
|
937
|
-
/**
|
|
938
|
-
* @public
|
|
939
|
-
* @enum
|
|
940
|
-
*/
|
|
941
|
-
export declare const DestinationState: {
|
|
942
|
-
readonly ACTIVE: "ACTIVE";
|
|
943
|
-
readonly FAILED: "FAILED";
|
|
944
|
-
readonly RECONNECTING: "RECONNECTING";
|
|
945
|
-
readonly STARTING: "STARTING";
|
|
946
|
-
readonly STOPPED: "STOPPED";
|
|
947
|
-
readonly STOPPING: "STOPPING";
|
|
948
|
-
};
|
|
949
|
-
/**
|
|
950
|
-
* @public
|
|
951
|
-
*/
|
|
952
|
-
export type DestinationState = (typeof DestinationState)[keyof typeof DestinationState];
|
|
953
902
|
/**
|
|
954
903
|
* <p>Object specifying the status of a Destination.</p>
|
|
955
904
|
* @public
|
|
@@ -1131,21 +1080,6 @@ export interface LayoutConfiguration {
|
|
|
1131
1080
|
*/
|
|
1132
1081
|
pip?: PipConfiguration | undefined;
|
|
1133
1082
|
}
|
|
1134
|
-
/**
|
|
1135
|
-
* @public
|
|
1136
|
-
* @enum
|
|
1137
|
-
*/
|
|
1138
|
-
export declare const CompositionState: {
|
|
1139
|
-
readonly ACTIVE: "ACTIVE";
|
|
1140
|
-
readonly FAILED: "FAILED";
|
|
1141
|
-
readonly STARTING: "STARTING";
|
|
1142
|
-
readonly STOPPED: "STOPPED";
|
|
1143
|
-
readonly STOPPING: "STOPPING";
|
|
1144
|
-
};
|
|
1145
|
-
/**
|
|
1146
|
-
* @public
|
|
1147
|
-
*/
|
|
1148
|
-
export type CompositionState = (typeof CompositionState)[keyof typeof CompositionState];
|
|
1149
1083
|
/**
|
|
1150
1084
|
* <p>Object specifying a Composition resource.</p>
|
|
1151
1085
|
* @public
|
|
@@ -1270,59 +1204,6 @@ export interface GetParticipantRequest {
|
|
|
1270
1204
|
*/
|
|
1271
1205
|
participantId: string | undefined;
|
|
1272
1206
|
}
|
|
1273
|
-
/**
|
|
1274
|
-
* @public
|
|
1275
|
-
* @enum
|
|
1276
|
-
*/
|
|
1277
|
-
export declare const ParticipantRecordingState: {
|
|
1278
|
-
readonly ACTIVE: "ACTIVE";
|
|
1279
|
-
readonly DISABLED: "DISABLED";
|
|
1280
|
-
readonly FAILED: "FAILED";
|
|
1281
|
-
readonly STARTING: "STARTING";
|
|
1282
|
-
readonly STOPPED: "STOPPED";
|
|
1283
|
-
readonly STOPPING: "STOPPING";
|
|
1284
|
-
};
|
|
1285
|
-
/**
|
|
1286
|
-
* @public
|
|
1287
|
-
*/
|
|
1288
|
-
export type ParticipantRecordingState = (typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
|
|
1289
|
-
/**
|
|
1290
|
-
* @public
|
|
1291
|
-
* @enum
|
|
1292
|
-
*/
|
|
1293
|
-
export declare const ReplicationState: {
|
|
1294
|
-
readonly ACTIVE: "ACTIVE";
|
|
1295
|
-
readonly STOPPED: "STOPPED";
|
|
1296
|
-
};
|
|
1297
|
-
/**
|
|
1298
|
-
* @public
|
|
1299
|
-
*/
|
|
1300
|
-
export type ReplicationState = (typeof ReplicationState)[keyof typeof ReplicationState];
|
|
1301
|
-
/**
|
|
1302
|
-
* @public
|
|
1303
|
-
* @enum
|
|
1304
|
-
*/
|
|
1305
|
-
export declare const ReplicationType: {
|
|
1306
|
-
readonly NONE: "NONE";
|
|
1307
|
-
readonly REPLICA: "REPLICA";
|
|
1308
|
-
readonly SOURCE: "SOURCE";
|
|
1309
|
-
};
|
|
1310
|
-
/**
|
|
1311
|
-
* @public
|
|
1312
|
-
*/
|
|
1313
|
-
export type ReplicationType = (typeof ReplicationType)[keyof typeof ReplicationType];
|
|
1314
|
-
/**
|
|
1315
|
-
* @public
|
|
1316
|
-
* @enum
|
|
1317
|
-
*/
|
|
1318
|
-
export declare const ParticipantState: {
|
|
1319
|
-
readonly CONNECTED: "CONNECTED";
|
|
1320
|
-
readonly DISCONNECTED: "DISCONNECTED";
|
|
1321
|
-
};
|
|
1322
|
-
/**
|
|
1323
|
-
* @public
|
|
1324
|
-
*/
|
|
1325
|
-
export type ParticipantState = (typeof ParticipantState)[keyof typeof ParticipantState];
|
|
1326
1207
|
/**
|
|
1327
1208
|
* <p>Object describing a participant that has joined a stage.</p>
|
|
1328
1209
|
* @public
|
|
@@ -1928,27 +1809,6 @@ export interface ListParticipantEventsRequest {
|
|
|
1928
1809
|
*/
|
|
1929
1810
|
maxResults?: number | undefined;
|
|
1930
1811
|
}
|
|
1931
|
-
/**
|
|
1932
|
-
* @public
|
|
1933
|
-
* @enum
|
|
1934
|
-
*/
|
|
1935
|
-
export declare const EventName: {
|
|
1936
|
-
readonly JOINED: "JOINED";
|
|
1937
|
-
readonly JOIN_ERROR: "JOIN_ERROR";
|
|
1938
|
-
readonly LEFT: "LEFT";
|
|
1939
|
-
readonly PUBLISH_ERROR: "PUBLISH_ERROR";
|
|
1940
|
-
readonly PUBLISH_STARTED: "PUBLISH_STARTED";
|
|
1941
|
-
readonly PUBLISH_STOPPED: "PUBLISH_STOPPED";
|
|
1942
|
-
readonly REPLICATION_STARTED: "REPLICATION_STARTED";
|
|
1943
|
-
readonly REPLICATION_STOPPED: "REPLICATION_STOPPED";
|
|
1944
|
-
readonly SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR";
|
|
1945
|
-
readonly SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED";
|
|
1946
|
-
readonly SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED";
|
|
1947
|
-
};
|
|
1948
|
-
/**
|
|
1949
|
-
* @public
|
|
1950
|
-
*/
|
|
1951
|
-
export type EventName = (typeof EventName)[keyof typeof EventName];
|
|
1952
1812
|
/**
|
|
1953
1813
|
* <p>An occurrence during a stage session.</p>
|
|
1954
1814
|
* @public
|
|
@@ -2182,21 +2042,6 @@ export interface ListParticipantReplicasResponse {
|
|
|
2182
2042
|
*/
|
|
2183
2043
|
nextToken?: string | undefined;
|
|
2184
2044
|
}
|
|
2185
|
-
/**
|
|
2186
|
-
* @public
|
|
2187
|
-
* @enum
|
|
2188
|
-
*/
|
|
2189
|
-
export declare const ParticipantRecordingFilterByRecordingState: {
|
|
2190
|
-
readonly ACTIVE: "ACTIVE";
|
|
2191
|
-
readonly FAILED: "FAILED";
|
|
2192
|
-
readonly STARTING: "STARTING";
|
|
2193
|
-
readonly STOPPED: "STOPPED";
|
|
2194
|
-
readonly STOPPING: "STOPPING";
|
|
2195
|
-
};
|
|
2196
|
-
/**
|
|
2197
|
-
* @public
|
|
2198
|
-
*/
|
|
2199
|
-
export type ParticipantRecordingFilterByRecordingState = (typeof ParticipantRecordingFilterByRecordingState)[keyof typeof ParticipantRecordingFilterByRecordingState];
|
|
2200
2045
|
/**
|
|
2201
2046
|
* @public
|
|
2202
2047
|
*/
|
|
@@ -4,6 +4,18 @@ export declare const IngestProtocol: {
|
|
|
4
4
|
};
|
|
5
5
|
export type IngestProtocol =
|
|
6
6
|
(typeof IngestProtocol)[keyof typeof IngestProtocol];
|
|
7
|
+
export declare const IngestConfigurationState: {
|
|
8
|
+
readonly ACTIVE: "ACTIVE";
|
|
9
|
+
readonly INACTIVE: "INACTIVE";
|
|
10
|
+
};
|
|
11
|
+
export type IngestConfigurationState =
|
|
12
|
+
(typeof IngestConfigurationState)[keyof typeof IngestConfigurationState];
|
|
13
|
+
export declare const ParticipantTokenCapability: {
|
|
14
|
+
readonly PUBLISH: "PUBLISH";
|
|
15
|
+
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
16
|
+
};
|
|
17
|
+
export type ParticipantTokenCapability =
|
|
18
|
+
(typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
7
19
|
export declare const ParticipantRecordingMediaType: {
|
|
8
20
|
readonly AUDIO_ONLY: "AUDIO_ONLY";
|
|
9
21
|
readonly AUDIO_VIDEO: "AUDIO_VIDEO";
|
|
@@ -23,6 +35,21 @@ export declare const ThumbnailStorageType: {
|
|
|
23
35
|
};
|
|
24
36
|
export type ThumbnailStorageType =
|
|
25
37
|
(typeof ThumbnailStorageType)[keyof typeof ThumbnailStorageType];
|
|
38
|
+
export declare const RecordingConfigurationFormat: {
|
|
39
|
+
readonly HLS: "HLS";
|
|
40
|
+
};
|
|
41
|
+
export type RecordingConfigurationFormat =
|
|
42
|
+
(typeof RecordingConfigurationFormat)[keyof typeof RecordingConfigurationFormat];
|
|
43
|
+
export declare const DestinationState: {
|
|
44
|
+
readonly ACTIVE: "ACTIVE";
|
|
45
|
+
readonly FAILED: "FAILED";
|
|
46
|
+
readonly RECONNECTING: "RECONNECTING";
|
|
47
|
+
readonly STARTING: "STARTING";
|
|
48
|
+
readonly STOPPED: "STOPPED";
|
|
49
|
+
readonly STOPPING: "STOPPING";
|
|
50
|
+
};
|
|
51
|
+
export type DestinationState =
|
|
52
|
+
(typeof DestinationState)[keyof typeof DestinationState];
|
|
26
53
|
export declare const VideoAspectRatio: {
|
|
27
54
|
readonly AUTO: "AUTO";
|
|
28
55
|
readonly PORTRAIT: "PORTRAIT";
|
|
@@ -49,6 +76,15 @@ export declare const PipPosition: {
|
|
|
49
76
|
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
50
77
|
};
|
|
51
78
|
export type PipPosition = (typeof PipPosition)[keyof typeof PipPosition];
|
|
79
|
+
export declare const CompositionState: {
|
|
80
|
+
readonly ACTIVE: "ACTIVE";
|
|
81
|
+
readonly FAILED: "FAILED";
|
|
82
|
+
readonly STARTING: "STARTING";
|
|
83
|
+
readonly STOPPED: "STOPPED";
|
|
84
|
+
readonly STOPPING: "STOPPING";
|
|
85
|
+
};
|
|
86
|
+
export type CompositionState =
|
|
87
|
+
(typeof CompositionState)[keyof typeof CompositionState];
|
|
52
88
|
export declare const ParticipantProtocol: {
|
|
53
89
|
readonly RTMP: "RTMP";
|
|
54
90
|
readonly RTMPS: "RTMPS";
|
|
@@ -57,6 +93,35 @@ export declare const ParticipantProtocol: {
|
|
|
57
93
|
};
|
|
58
94
|
export type ParticipantProtocol =
|
|
59
95
|
(typeof ParticipantProtocol)[keyof typeof ParticipantProtocol];
|
|
96
|
+
export declare const ParticipantRecordingState: {
|
|
97
|
+
readonly ACTIVE: "ACTIVE";
|
|
98
|
+
readonly DISABLED: "DISABLED";
|
|
99
|
+
readonly FAILED: "FAILED";
|
|
100
|
+
readonly STARTING: "STARTING";
|
|
101
|
+
readonly STOPPED: "STOPPED";
|
|
102
|
+
readonly STOPPING: "STOPPING";
|
|
103
|
+
};
|
|
104
|
+
export type ParticipantRecordingState =
|
|
105
|
+
(typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
|
|
106
|
+
export declare const ReplicationState: {
|
|
107
|
+
readonly ACTIVE: "ACTIVE";
|
|
108
|
+
readonly STOPPED: "STOPPED";
|
|
109
|
+
};
|
|
110
|
+
export type ReplicationState =
|
|
111
|
+
(typeof ReplicationState)[keyof typeof ReplicationState];
|
|
112
|
+
export declare const ReplicationType: {
|
|
113
|
+
readonly NONE: "NONE";
|
|
114
|
+
readonly REPLICA: "REPLICA";
|
|
115
|
+
readonly SOURCE: "SOURCE";
|
|
116
|
+
};
|
|
117
|
+
export type ReplicationType =
|
|
118
|
+
(typeof ReplicationType)[keyof typeof ReplicationType];
|
|
119
|
+
export declare const ParticipantState: {
|
|
120
|
+
readonly CONNECTED: "CONNECTED";
|
|
121
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
122
|
+
};
|
|
123
|
+
export type ParticipantState =
|
|
124
|
+
(typeof ParticipantState)[keyof typeof ParticipantState];
|
|
60
125
|
export declare const EventErrorCode: {
|
|
61
126
|
readonly BITRATE_EXCEEDED: "BITRATE_EXCEEDED";
|
|
62
127
|
readonly B_FRAME_PRESENT: "B_FRAME_PRESENT";
|
|
@@ -75,3 +140,26 @@ export declare const EventErrorCode: {
|
|
|
75
140
|
};
|
|
76
141
|
export type EventErrorCode =
|
|
77
142
|
(typeof EventErrorCode)[keyof typeof EventErrorCode];
|
|
143
|
+
export declare const EventName: {
|
|
144
|
+
readonly JOINED: "JOINED";
|
|
145
|
+
readonly JOIN_ERROR: "JOIN_ERROR";
|
|
146
|
+
readonly LEFT: "LEFT";
|
|
147
|
+
readonly PUBLISH_ERROR: "PUBLISH_ERROR";
|
|
148
|
+
readonly PUBLISH_STARTED: "PUBLISH_STARTED";
|
|
149
|
+
readonly PUBLISH_STOPPED: "PUBLISH_STOPPED";
|
|
150
|
+
readonly REPLICATION_STARTED: "REPLICATION_STARTED";
|
|
151
|
+
readonly REPLICATION_STOPPED: "REPLICATION_STOPPED";
|
|
152
|
+
readonly SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR";
|
|
153
|
+
readonly SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED";
|
|
154
|
+
readonly SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED";
|
|
155
|
+
};
|
|
156
|
+
export type EventName = (typeof EventName)[keyof typeof EventName];
|
|
157
|
+
export declare const ParticipantRecordingFilterByRecordingState: {
|
|
158
|
+
readonly ACTIVE: "ACTIVE";
|
|
159
|
+
readonly FAILED: "FAILED";
|
|
160
|
+
readonly STARTING: "STARTING";
|
|
161
|
+
readonly STOPPED: "STOPPED";
|
|
162
|
+
readonly STOPPING: "STOPPING";
|
|
163
|
+
};
|
|
164
|
+
export type ParticipantRecordingFilterByRecordingState =
|
|
165
|
+
(typeof ParticipantRecordingFilterByRecordingState)[keyof typeof ParticipantRecordingFilterByRecordingState];
|
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CompositionState,
|
|
3
|
+
DestinationState,
|
|
2
4
|
EventErrorCode,
|
|
5
|
+
EventName,
|
|
6
|
+
IngestConfigurationState,
|
|
3
7
|
IngestProtocol,
|
|
4
8
|
ParticipantProtocol,
|
|
9
|
+
ParticipantRecordingFilterByRecordingState,
|
|
5
10
|
ParticipantRecordingMediaType,
|
|
11
|
+
ParticipantRecordingState,
|
|
12
|
+
ParticipantState,
|
|
13
|
+
ParticipantTokenCapability,
|
|
6
14
|
PipBehavior,
|
|
7
15
|
PipPosition,
|
|
16
|
+
RecordingConfigurationFormat,
|
|
17
|
+
ReplicationState,
|
|
18
|
+
ReplicationType,
|
|
8
19
|
ThumbnailRecordingMode,
|
|
9
20
|
ThumbnailStorageType,
|
|
10
21
|
VideoAspectRatio,
|
|
@@ -39,12 +50,6 @@ export interface CreateIngestConfigurationRequest {
|
|
|
39
50
|
insecureIngest?: boolean | undefined;
|
|
40
51
|
tags?: Record<string, string> | undefined;
|
|
41
52
|
}
|
|
42
|
-
export declare const IngestConfigurationState: {
|
|
43
|
-
readonly ACTIVE: "ACTIVE";
|
|
44
|
-
readonly INACTIVE: "INACTIVE";
|
|
45
|
-
};
|
|
46
|
-
export type IngestConfigurationState =
|
|
47
|
-
(typeof IngestConfigurationState)[keyof typeof IngestConfigurationState];
|
|
48
53
|
export interface IngestConfiguration {
|
|
49
54
|
name?: string | undefined;
|
|
50
55
|
arn: string | undefined;
|
|
@@ -60,12 +65,6 @@ export interface IngestConfiguration {
|
|
|
60
65
|
export interface CreateIngestConfigurationResponse {
|
|
61
66
|
ingestConfiguration?: IngestConfiguration | undefined;
|
|
62
67
|
}
|
|
63
|
-
export declare const ParticipantTokenCapability: {
|
|
64
|
-
readonly PUBLISH: "PUBLISH";
|
|
65
|
-
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
66
|
-
};
|
|
67
|
-
export type ParticipantTokenCapability =
|
|
68
|
-
(typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
69
68
|
export interface CreateParticipantTokenRequest {
|
|
70
69
|
stageArn: string | undefined;
|
|
71
70
|
duration?: number | undefined;
|
|
@@ -186,11 +185,6 @@ export interface ChannelDestinationConfiguration {
|
|
|
186
185
|
channelArn: string | undefined;
|
|
187
186
|
encoderConfigurationArn?: string | undefined;
|
|
188
187
|
}
|
|
189
|
-
export declare const RecordingConfigurationFormat: {
|
|
190
|
-
readonly HLS: "HLS";
|
|
191
|
-
};
|
|
192
|
-
export type RecordingConfigurationFormat =
|
|
193
|
-
(typeof RecordingConfigurationFormat)[keyof typeof RecordingConfigurationFormat];
|
|
194
188
|
export interface CompositionRecordingHlsConfiguration {
|
|
195
189
|
targetSegmentDurationSeconds?: number | undefined;
|
|
196
190
|
}
|
|
@@ -219,16 +213,6 @@ export interface S3Detail {
|
|
|
219
213
|
export interface DestinationDetail {
|
|
220
214
|
s3?: S3Detail | undefined;
|
|
221
215
|
}
|
|
222
|
-
export declare const DestinationState: {
|
|
223
|
-
readonly ACTIVE: "ACTIVE";
|
|
224
|
-
readonly FAILED: "FAILED";
|
|
225
|
-
readonly RECONNECTING: "RECONNECTING";
|
|
226
|
-
readonly STARTING: "STARTING";
|
|
227
|
-
readonly STOPPED: "STOPPED";
|
|
228
|
-
readonly STOPPING: "STOPPING";
|
|
229
|
-
};
|
|
230
|
-
export type DestinationState =
|
|
231
|
-
(typeof DestinationState)[keyof typeof DestinationState];
|
|
232
216
|
export interface Destination {
|
|
233
217
|
id: string | undefined;
|
|
234
218
|
state: DestinationState | undefined;
|
|
@@ -262,15 +246,6 @@ export interface LayoutConfiguration {
|
|
|
262
246
|
grid?: GridConfiguration | undefined;
|
|
263
247
|
pip?: PipConfiguration | undefined;
|
|
264
248
|
}
|
|
265
|
-
export declare const CompositionState: {
|
|
266
|
-
readonly ACTIVE: "ACTIVE";
|
|
267
|
-
readonly FAILED: "FAILED";
|
|
268
|
-
readonly STARTING: "STARTING";
|
|
269
|
-
readonly STOPPED: "STOPPED";
|
|
270
|
-
readonly STOPPING: "STOPPING";
|
|
271
|
-
};
|
|
272
|
-
export type CompositionState =
|
|
273
|
-
(typeof CompositionState)[keyof typeof CompositionState];
|
|
274
249
|
export interface Composition {
|
|
275
250
|
arn: string | undefined;
|
|
276
251
|
stageArn: string | undefined;
|
|
@@ -301,35 +276,6 @@ export interface GetParticipantRequest {
|
|
|
301
276
|
sessionId: string | undefined;
|
|
302
277
|
participantId: string | undefined;
|
|
303
278
|
}
|
|
304
|
-
export declare const ParticipantRecordingState: {
|
|
305
|
-
readonly ACTIVE: "ACTIVE";
|
|
306
|
-
readonly DISABLED: "DISABLED";
|
|
307
|
-
readonly FAILED: "FAILED";
|
|
308
|
-
readonly STARTING: "STARTING";
|
|
309
|
-
readonly STOPPED: "STOPPED";
|
|
310
|
-
readonly STOPPING: "STOPPING";
|
|
311
|
-
};
|
|
312
|
-
export type ParticipantRecordingState =
|
|
313
|
-
(typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
|
|
314
|
-
export declare const ReplicationState: {
|
|
315
|
-
readonly ACTIVE: "ACTIVE";
|
|
316
|
-
readonly STOPPED: "STOPPED";
|
|
317
|
-
};
|
|
318
|
-
export type ReplicationState =
|
|
319
|
-
(typeof ReplicationState)[keyof typeof ReplicationState];
|
|
320
|
-
export declare const ReplicationType: {
|
|
321
|
-
readonly NONE: "NONE";
|
|
322
|
-
readonly REPLICA: "REPLICA";
|
|
323
|
-
readonly SOURCE: "SOURCE";
|
|
324
|
-
};
|
|
325
|
-
export type ReplicationType =
|
|
326
|
-
(typeof ReplicationType)[keyof typeof ReplicationType];
|
|
327
|
-
export declare const ParticipantState: {
|
|
328
|
-
readonly CONNECTED: "CONNECTED";
|
|
329
|
-
readonly DISCONNECTED: "DISCONNECTED";
|
|
330
|
-
};
|
|
331
|
-
export type ParticipantState =
|
|
332
|
-
(typeof ParticipantState)[keyof typeof ParticipantState];
|
|
333
279
|
export interface Participant {
|
|
334
280
|
participantId?: string | undefined;
|
|
335
281
|
userId?: string | undefined;
|
|
@@ -464,20 +410,6 @@ export interface ListParticipantEventsRequest {
|
|
|
464
410
|
nextToken?: string | undefined;
|
|
465
411
|
maxResults?: number | undefined;
|
|
466
412
|
}
|
|
467
|
-
export declare const EventName: {
|
|
468
|
-
readonly JOINED: "JOINED";
|
|
469
|
-
readonly JOIN_ERROR: "JOIN_ERROR";
|
|
470
|
-
readonly LEFT: "LEFT";
|
|
471
|
-
readonly PUBLISH_ERROR: "PUBLISH_ERROR";
|
|
472
|
-
readonly PUBLISH_STARTED: "PUBLISH_STARTED";
|
|
473
|
-
readonly PUBLISH_STOPPED: "PUBLISH_STOPPED";
|
|
474
|
-
readonly REPLICATION_STARTED: "REPLICATION_STARTED";
|
|
475
|
-
readonly REPLICATION_STOPPED: "REPLICATION_STOPPED";
|
|
476
|
-
readonly SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR";
|
|
477
|
-
readonly SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED";
|
|
478
|
-
readonly SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED";
|
|
479
|
-
};
|
|
480
|
-
export type EventName = (typeof EventName)[keyof typeof EventName];
|
|
481
413
|
export interface Event {
|
|
482
414
|
name?: EventName | undefined;
|
|
483
415
|
participantId?: string | undefined;
|
|
@@ -510,15 +442,6 @@ export interface ListParticipantReplicasResponse {
|
|
|
510
442
|
replicas: ParticipantReplica[] | undefined;
|
|
511
443
|
nextToken?: string | undefined;
|
|
512
444
|
}
|
|
513
|
-
export declare const ParticipantRecordingFilterByRecordingState: {
|
|
514
|
-
readonly ACTIVE: "ACTIVE";
|
|
515
|
-
readonly FAILED: "FAILED";
|
|
516
|
-
readonly STARTING: "STARTING";
|
|
517
|
-
readonly STOPPED: "STOPPED";
|
|
518
|
-
readonly STOPPING: "STOPPING";
|
|
519
|
-
};
|
|
520
|
-
export type ParticipantRecordingFilterByRecordingState =
|
|
521
|
-
(typeof ParticipantRecordingFilterByRecordingState)[keyof typeof ParticipantRecordingFilterByRecordingState];
|
|
522
445
|
export interface ListParticipantsRequest {
|
|
523
446
|
stageArn: string | undefined;
|
|
524
447
|
sessionId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs-realtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.940.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|