@aws-sdk/client-ivs 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 CHANGED
@@ -1865,6 +1865,14 @@ const paginateListStreamSessions = core.createPaginator(IvsClient, ListStreamSes
1865
1865
 
1866
1866
  const paginateListStreams = core.createPaginator(IvsClient, ListStreamsCommand, "nextToken", "nextToken", "maxResults");
1867
1867
 
1868
+ const ContainerFormat = {
1869
+ FragmentedMP4: "FRAGMENTED_MP4",
1870
+ TS: "TS",
1871
+ };
1872
+ const ChannelLatencyMode = {
1873
+ LowLatency: "LOW",
1874
+ NormalLatency: "NORMAL",
1875
+ };
1868
1876
  const MultitrackMaximumResolution = {
1869
1877
  FULL_HD: "FULL_HD",
1870
1878
  HD: "HD",
@@ -1890,12 +1898,39 @@ const RenditionConfigurationRendition = {
1890
1898
  LOWEST_RESOLUTION: "LOWEST_RESOLUTION",
1891
1899
  SD: "SD",
1892
1900
  };
1901
+ const RenditionConfigurationRenditionSelection = {
1902
+ ALL: "ALL",
1903
+ CUSTOM: "CUSTOM",
1904
+ NONE: "NONE",
1905
+ };
1906
+ const RecordingMode = {
1907
+ Disabled: "DISABLED",
1908
+ Interval: "INTERVAL",
1909
+ };
1893
1910
  const ThumbnailConfigurationResolution = {
1894
1911
  FULL_HD: "FULL_HD",
1895
1912
  HD: "HD",
1896
1913
  LOWEST_RESOLUTION: "LOWEST_RESOLUTION",
1897
1914
  SD: "SD",
1898
1915
  };
1916
+ const ThumbnailConfigurationStorage = {
1917
+ LATEST: "LATEST",
1918
+ SEQUENTIAL: "SEQUENTIAL",
1919
+ };
1920
+ const RecordingConfigurationState = {
1921
+ Active: "ACTIVE",
1922
+ CreateFailed: "CREATE_FAILED",
1923
+ Creating: "CREATING",
1924
+ };
1925
+ const StreamHealth = {
1926
+ Starving: "STARVING",
1927
+ StreamHealthy: "HEALTHY",
1928
+ Unknown: "UNKNOWN",
1929
+ };
1930
+ const StreamState = {
1931
+ StreamLive: "LIVE",
1932
+ StreamOffline: "OFFLINE",
1933
+ };
1899
1934
 
1900
1935
  Object.defineProperty(exports, "$Command", {
1901
1936
  enumerable: true,
@@ -1909,9 +1944,11 @@ exports.AccessDeniedException = AccessDeniedException$1;
1909
1944
  exports.BatchGetChannelCommand = BatchGetChannelCommand;
1910
1945
  exports.BatchGetStreamKeyCommand = BatchGetStreamKeyCommand;
1911
1946
  exports.BatchStartViewerSessionRevocationCommand = BatchStartViewerSessionRevocationCommand;
1947
+ exports.ChannelLatencyMode = ChannelLatencyMode;
1912
1948
  exports.ChannelNotBroadcasting = ChannelNotBroadcasting$1;
1913
1949
  exports.ChannelType = ChannelType;
1914
1950
  exports.ConflictException = ConflictException$1;
1951
+ exports.ContainerFormat = ContainerFormat;
1915
1952
  exports.CreateChannelCommand = CreateChannelCommand;
1916
1953
  exports.CreatePlaybackRestrictionPolicyCommand = CreatePlaybackRestrictionPolicyCommand;
1917
1954
  exports.CreateRecordingConfigurationCommand = CreateRecordingConfigurationCommand;
@@ -1945,15 +1982,21 @@ exports.MultitrackMaximumResolution = MultitrackMaximumResolution;
1945
1982
  exports.MultitrackPolicy = MultitrackPolicy;
1946
1983
  exports.PendingVerification = PendingVerification$1;
1947
1984
  exports.PutMetadataCommand = PutMetadataCommand;
1985
+ exports.RecordingConfigurationState = RecordingConfigurationState;
1986
+ exports.RecordingMode = RecordingMode;
1948
1987
  exports.RenditionConfigurationRendition = RenditionConfigurationRendition;
1988
+ exports.RenditionConfigurationRenditionSelection = RenditionConfigurationRenditionSelection;
1949
1989
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1950
1990
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1951
1991
  exports.StartViewerSessionRevocationCommand = StartViewerSessionRevocationCommand;
1952
1992
  exports.StopStreamCommand = StopStreamCommand;
1993
+ exports.StreamHealth = StreamHealth;
1994
+ exports.StreamState = StreamState;
1953
1995
  exports.StreamUnavailable = StreamUnavailable$1;
1954
1996
  exports.TagResourceCommand = TagResourceCommand;
1955
1997
  exports.ThrottlingException = ThrottlingException$1;
1956
1998
  exports.ThumbnailConfigurationResolution = ThumbnailConfigurationResolution;
1999
+ exports.ThumbnailConfigurationStorage = ThumbnailConfigurationStorage;
1957
2000
  exports.TranscodePreset = TranscodePreset;
1958
2001
  exports.UntagResourceCommand = UntagResourceCommand;
1959
2002
  exports.UpdateChannelCommand = UpdateChannelCommand;
@@ -1,3 +1,11 @@
1
+ export const ContainerFormat = {
2
+ FragmentedMP4: "FRAGMENTED_MP4",
3
+ TS: "TS",
4
+ };
5
+ export const ChannelLatencyMode = {
6
+ LowLatency: "LOW",
7
+ NormalLatency: "NORMAL",
8
+ };
1
9
  export const MultitrackMaximumResolution = {
2
10
  FULL_HD: "FULL_HD",
3
11
  HD: "HD",
@@ -23,9 +31,36 @@ export const RenditionConfigurationRendition = {
23
31
  LOWEST_RESOLUTION: "LOWEST_RESOLUTION",
24
32
  SD: "SD",
25
33
  };
34
+ export const RenditionConfigurationRenditionSelection = {
35
+ ALL: "ALL",
36
+ CUSTOM: "CUSTOM",
37
+ NONE: "NONE",
38
+ };
39
+ export const RecordingMode = {
40
+ Disabled: "DISABLED",
41
+ Interval: "INTERVAL",
42
+ };
26
43
  export const ThumbnailConfigurationResolution = {
27
44
  FULL_HD: "FULL_HD",
28
45
  HD: "HD",
29
46
  LOWEST_RESOLUTION: "LOWEST_RESOLUTION",
30
47
  SD: "SD",
31
48
  };
49
+ export const ThumbnailConfigurationStorage = {
50
+ LATEST: "LATEST",
51
+ SEQUENTIAL: "SEQUENTIAL",
52
+ };
53
+ export const RecordingConfigurationState = {
54
+ Active: "ACTIVE",
55
+ CreateFailed: "CREATE_FAILED",
56
+ Creating: "CREATING",
57
+ };
58
+ export const StreamHealth = {
59
+ Starving: "STARVING",
60
+ StreamHealthy: "HEALTHY",
61
+ Unknown: "UNKNOWN",
62
+ };
63
+ export const StreamState = {
64
+ StreamLive: "LIVE",
65
+ StreamOffline: "OFFLINE",
66
+ };
@@ -1,35 +1 @@
1
- export const ContainerFormat = {
2
- FragmentedMP4: "FRAGMENTED_MP4",
3
- TS: "TS",
4
- };
5
- export const ChannelLatencyMode = {
6
- LowLatency: "LOW",
7
- NormalLatency: "NORMAL",
8
- };
9
- export const RenditionConfigurationRenditionSelection = {
10
- ALL: "ALL",
11
- CUSTOM: "CUSTOM",
12
- NONE: "NONE",
13
- };
14
- export const RecordingMode = {
15
- Disabled: "DISABLED",
16
- Interval: "INTERVAL",
17
- };
18
- export const ThumbnailConfigurationStorage = {
19
- LATEST: "LATEST",
20
- SEQUENTIAL: "SEQUENTIAL",
21
- };
22
- export const RecordingConfigurationState = {
23
- Active: "ACTIVE",
24
- CreateFailed: "CREATE_FAILED",
25
- Creating: "CREATING",
26
- };
27
- export const StreamHealth = {
28
- Starving: "STARVING",
29
- StreamHealthy: "HEALTHY",
30
- Unknown: "UNKNOWN",
31
- };
32
- export const StreamState = {
33
- StreamLive: "LIVE",
34
- StreamOffline: "OFFLINE",
35
- };
1
+ export {};
@@ -1,3 +1,27 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ContainerFormat: {
6
+ readonly FragmentedMP4: "FRAGMENTED_MP4";
7
+ readonly TS: "TS";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ContainerFormat = (typeof ContainerFormat)[keyof typeof ContainerFormat];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ChannelLatencyMode: {
18
+ readonly LowLatency: "LOW";
19
+ readonly NormalLatency: "NORMAL";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type ChannelLatencyMode = (typeof ChannelLatencyMode)[keyof typeof ChannelLatencyMode];
1
25
  /**
2
26
  * @public
3
27
  * @enum
@@ -63,6 +87,31 @@ export declare const RenditionConfigurationRendition: {
63
87
  * @public
64
88
  */
65
89
  export type RenditionConfigurationRendition = (typeof RenditionConfigurationRendition)[keyof typeof RenditionConfigurationRendition];
90
+ /**
91
+ * @public
92
+ * @enum
93
+ */
94
+ export declare const RenditionConfigurationRenditionSelection: {
95
+ readonly ALL: "ALL";
96
+ readonly CUSTOM: "CUSTOM";
97
+ readonly NONE: "NONE";
98
+ };
99
+ /**
100
+ * @public
101
+ */
102
+ export type RenditionConfigurationRenditionSelection = (typeof RenditionConfigurationRenditionSelection)[keyof typeof RenditionConfigurationRenditionSelection];
103
+ /**
104
+ * @public
105
+ * @enum
106
+ */
107
+ export declare const RecordingMode: {
108
+ readonly Disabled: "DISABLED";
109
+ readonly Interval: "INTERVAL";
110
+ };
111
+ /**
112
+ * @public
113
+ */
114
+ export type RecordingMode = (typeof RecordingMode)[keyof typeof RecordingMode];
66
115
  /**
67
116
  * @public
68
117
  * @enum
@@ -77,3 +126,53 @@ export declare const ThumbnailConfigurationResolution: {
77
126
  * @public
78
127
  */
79
128
  export type ThumbnailConfigurationResolution = (typeof ThumbnailConfigurationResolution)[keyof typeof ThumbnailConfigurationResolution];
129
+ /**
130
+ * @public
131
+ * @enum
132
+ */
133
+ export declare const ThumbnailConfigurationStorage: {
134
+ readonly LATEST: "LATEST";
135
+ readonly SEQUENTIAL: "SEQUENTIAL";
136
+ };
137
+ /**
138
+ * @public
139
+ */
140
+ export type ThumbnailConfigurationStorage = (typeof ThumbnailConfigurationStorage)[keyof typeof ThumbnailConfigurationStorage];
141
+ /**
142
+ * @public
143
+ * @enum
144
+ */
145
+ export declare const RecordingConfigurationState: {
146
+ readonly Active: "ACTIVE";
147
+ readonly CreateFailed: "CREATE_FAILED";
148
+ readonly Creating: "CREATING";
149
+ };
150
+ /**
151
+ * @public
152
+ */
153
+ export type RecordingConfigurationState = (typeof RecordingConfigurationState)[keyof typeof RecordingConfigurationState];
154
+ /**
155
+ * @public
156
+ * @enum
157
+ */
158
+ export declare const StreamHealth: {
159
+ readonly Starving: "STARVING";
160
+ readonly StreamHealthy: "HEALTHY";
161
+ readonly Unknown: "UNKNOWN";
162
+ };
163
+ /**
164
+ * @public
165
+ */
166
+ export type StreamHealth = (typeof StreamHealth)[keyof typeof StreamHealth];
167
+ /**
168
+ * @public
169
+ * @enum
170
+ */
171
+ export declare const StreamState: {
172
+ readonly StreamLive: "LIVE";
173
+ readonly StreamOffline: "OFFLINE";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type StreamState = (typeof StreamState)[keyof typeof StreamState];
@@ -1,4 +1,4 @@
1
- import { ChannelType, MultitrackMaximumResolution, MultitrackPolicy, RenditionConfigurationRendition, ThumbnailConfigurationResolution, TranscodePreset } from "./enums";
1
+ import { ChannelLatencyMode, ChannelType, ContainerFormat, MultitrackMaximumResolution, MultitrackPolicy, RecordingConfigurationState, RecordingMode, RenditionConfigurationRendition, RenditionConfigurationRenditionSelection, StreamHealth, StreamState, ThumbnailConfigurationResolution, ThumbnailConfigurationStorage, TranscodePreset } from "./enums";
2
2
  /**
3
3
  * @public
4
4
  */
@@ -9,30 +9,6 @@ export interface BatchGetChannelRequest {
9
9
  */
10
10
  arns: string[] | undefined;
11
11
  }
12
- /**
13
- * @public
14
- * @enum
15
- */
16
- export declare const ContainerFormat: {
17
- readonly FragmentedMP4: "FRAGMENTED_MP4";
18
- readonly TS: "TS";
19
- };
20
- /**
21
- * @public
22
- */
23
- export type ContainerFormat = (typeof ContainerFormat)[keyof typeof ContainerFormat];
24
- /**
25
- * @public
26
- * @enum
27
- */
28
- export declare const ChannelLatencyMode: {
29
- readonly LowLatency: "LOW";
30
- readonly NormalLatency: "NORMAL";
31
- };
32
- /**
33
- * @public
34
- */
35
- export type ChannelLatencyMode = (typeof ChannelLatencyMode)[keyof typeof ChannelLatencyMode];
36
12
  /**
37
13
  * <p>A complex type that specifies multitrack input configuration.</p>
38
14
  * @public
@@ -530,19 +506,6 @@ export interface DestinationConfiguration {
530
506
  */
531
507
  s3?: S3DestinationConfiguration | undefined;
532
508
  }
533
- /**
534
- * @public
535
- * @enum
536
- */
537
- export declare const RenditionConfigurationRenditionSelection: {
538
- readonly ALL: "ALL";
539
- readonly CUSTOM: "CUSTOM";
540
- readonly NONE: "NONE";
541
- };
542
- /**
543
- * @public
544
- */
545
- export type RenditionConfigurationRenditionSelection = (typeof RenditionConfigurationRenditionSelection)[keyof typeof RenditionConfigurationRenditionSelection];
546
509
  /**
547
510
  * <p>Object that describes which renditions should be recorded for a stream.</p>
548
511
  * @public
@@ -566,30 +529,6 @@ export interface RenditionConfiguration {
566
529
  */
567
530
  renditions?: RenditionConfigurationRendition[] | undefined;
568
531
  }
569
- /**
570
- * @public
571
- * @enum
572
- */
573
- export declare const RecordingMode: {
574
- readonly Disabled: "DISABLED";
575
- readonly Interval: "INTERVAL";
576
- };
577
- /**
578
- * @public
579
- */
580
- export type RecordingMode = (typeof RecordingMode)[keyof typeof RecordingMode];
581
- /**
582
- * @public
583
- * @enum
584
- */
585
- export declare const ThumbnailConfigurationStorage: {
586
- readonly LATEST: "LATEST";
587
- readonly SEQUENTIAL: "SEQUENTIAL";
588
- };
589
- /**
590
- * @public
591
- */
592
- export type ThumbnailConfigurationStorage = (typeof ThumbnailConfigurationStorage)[keyof typeof ThumbnailConfigurationStorage];
593
532
  /**
594
533
  * <p>An object representing a configuration of thumbnails for recorded video.</p>
595
534
  * @public
@@ -673,19 +612,6 @@ export interface CreateRecordingConfigurationRequest {
673
612
  */
674
613
  renditionConfiguration?: RenditionConfiguration | undefined;
675
614
  }
676
- /**
677
- * @public
678
- * @enum
679
- */
680
- export declare const RecordingConfigurationState: {
681
- readonly Active: "ACTIVE";
682
- readonly CreateFailed: "CREATE_FAILED";
683
- readonly Creating: "CREATING";
684
- };
685
- /**
686
- * @public
687
- */
688
- export type RecordingConfigurationState = (typeof RecordingConfigurationState)[keyof typeof RecordingConfigurationState];
689
615
  /**
690
616
  * <p>An object representing a configuration to record a channel stream.</p>
691
617
  * @public
@@ -946,31 +872,6 @@ export interface GetStreamRequest {
946
872
  */
947
873
  channelArn: string | undefined;
948
874
  }
949
- /**
950
- * @public
951
- * @enum
952
- */
953
- export declare const StreamHealth: {
954
- readonly Starving: "STARVING";
955
- readonly StreamHealthy: "HEALTHY";
956
- readonly Unknown: "UNKNOWN";
957
- };
958
- /**
959
- * @public
960
- */
961
- export type StreamHealth = (typeof StreamHealth)[keyof typeof StreamHealth];
962
- /**
963
- * @public
964
- * @enum
965
- */
966
- export declare const StreamState: {
967
- readonly StreamLive: "LIVE";
968
- readonly StreamOffline: "OFFLINE";
969
- };
970
- /**
971
- * @public
972
- */
973
- export type StreamState = (typeof StreamState)[keyof typeof StreamState];
974
875
  /**
975
876
  * <p>Specifies a live video stream that has been ingested and distributed.</p>
976
877
  * @public
@@ -1,3 +1,15 @@
1
+ export declare const ContainerFormat: {
2
+ readonly FragmentedMP4: "FRAGMENTED_MP4";
3
+ readonly TS: "TS";
4
+ };
5
+ export type ContainerFormat =
6
+ (typeof ContainerFormat)[keyof typeof ContainerFormat];
7
+ export declare const ChannelLatencyMode: {
8
+ readonly LowLatency: "LOW";
9
+ readonly NormalLatency: "NORMAL";
10
+ };
11
+ export type ChannelLatencyMode =
12
+ (typeof ChannelLatencyMode)[keyof typeof ChannelLatencyMode];
1
13
  export declare const MultitrackMaximumResolution: {
2
14
  readonly FULL_HD: "FULL_HD";
3
15
  readonly HD: "HD";
@@ -32,6 +44,18 @@ export declare const RenditionConfigurationRendition: {
32
44
  };
33
45
  export type RenditionConfigurationRendition =
34
46
  (typeof RenditionConfigurationRendition)[keyof typeof RenditionConfigurationRendition];
47
+ export declare const RenditionConfigurationRenditionSelection: {
48
+ readonly ALL: "ALL";
49
+ readonly CUSTOM: "CUSTOM";
50
+ readonly NONE: "NONE";
51
+ };
52
+ export type RenditionConfigurationRenditionSelection =
53
+ (typeof RenditionConfigurationRenditionSelection)[keyof typeof RenditionConfigurationRenditionSelection];
54
+ export declare const RecordingMode: {
55
+ readonly Disabled: "DISABLED";
56
+ readonly Interval: "INTERVAL";
57
+ };
58
+ export type RecordingMode = (typeof RecordingMode)[keyof typeof RecordingMode];
35
59
  export declare const ThumbnailConfigurationResolution: {
36
60
  readonly FULL_HD: "FULL_HD";
37
61
  readonly HD: "HD";
@@ -40,3 +64,27 @@ export declare const ThumbnailConfigurationResolution: {
40
64
  };
41
65
  export type ThumbnailConfigurationResolution =
42
66
  (typeof ThumbnailConfigurationResolution)[keyof typeof ThumbnailConfigurationResolution];
67
+ export declare const ThumbnailConfigurationStorage: {
68
+ readonly LATEST: "LATEST";
69
+ readonly SEQUENTIAL: "SEQUENTIAL";
70
+ };
71
+ export type ThumbnailConfigurationStorage =
72
+ (typeof ThumbnailConfigurationStorage)[keyof typeof ThumbnailConfigurationStorage];
73
+ export declare const RecordingConfigurationState: {
74
+ readonly Active: "ACTIVE";
75
+ readonly CreateFailed: "CREATE_FAILED";
76
+ readonly Creating: "CREATING";
77
+ };
78
+ export type RecordingConfigurationState =
79
+ (typeof RecordingConfigurationState)[keyof typeof RecordingConfigurationState];
80
+ export declare const StreamHealth: {
81
+ readonly Starving: "STARVING";
82
+ readonly StreamHealthy: "HEALTHY";
83
+ readonly Unknown: "UNKNOWN";
84
+ };
85
+ export type StreamHealth = (typeof StreamHealth)[keyof typeof StreamHealth];
86
+ export declare const StreamState: {
87
+ readonly StreamLive: "LIVE";
88
+ readonly StreamOffline: "OFFLINE";
89
+ };
90
+ export type StreamState = (typeof StreamState)[keyof typeof StreamState];
@@ -1,26 +1,22 @@
1
1
  import {
2
+ ChannelLatencyMode,
2
3
  ChannelType,
4
+ ContainerFormat,
3
5
  MultitrackMaximumResolution,
4
6
  MultitrackPolicy,
7
+ RecordingConfigurationState,
8
+ RecordingMode,
5
9
  RenditionConfigurationRendition,
10
+ RenditionConfigurationRenditionSelection,
11
+ StreamHealth,
12
+ StreamState,
6
13
  ThumbnailConfigurationResolution,
14
+ ThumbnailConfigurationStorage,
7
15
  TranscodePreset,
8
16
  } from "./enums";
9
17
  export interface BatchGetChannelRequest {
10
18
  arns: string[] | undefined;
11
19
  }
12
- export declare const ContainerFormat: {
13
- readonly FragmentedMP4: "FRAGMENTED_MP4";
14
- readonly TS: "TS";
15
- };
16
- export type ContainerFormat =
17
- (typeof ContainerFormat)[keyof typeof ContainerFormat];
18
- export declare const ChannelLatencyMode: {
19
- readonly LowLatency: "LOW";
20
- readonly NormalLatency: "NORMAL";
21
- };
22
- export type ChannelLatencyMode =
23
- (typeof ChannelLatencyMode)[keyof typeof ChannelLatencyMode];
24
20
  export interface MultitrackInputConfiguration {
25
21
  enabled?: boolean | undefined;
26
22
  policy?: MultitrackPolicy | undefined;
@@ -127,28 +123,10 @@ export interface S3DestinationConfiguration {
127
123
  export interface DestinationConfiguration {
128
124
  s3?: S3DestinationConfiguration | undefined;
129
125
  }
130
- export declare const RenditionConfigurationRenditionSelection: {
131
- readonly ALL: "ALL";
132
- readonly CUSTOM: "CUSTOM";
133
- readonly NONE: "NONE";
134
- };
135
- export type RenditionConfigurationRenditionSelection =
136
- (typeof RenditionConfigurationRenditionSelection)[keyof typeof RenditionConfigurationRenditionSelection];
137
126
  export interface RenditionConfiguration {
138
127
  renditionSelection?: RenditionConfigurationRenditionSelection | undefined;
139
128
  renditions?: RenditionConfigurationRendition[] | undefined;
140
129
  }
141
- export declare const RecordingMode: {
142
- readonly Disabled: "DISABLED";
143
- readonly Interval: "INTERVAL";
144
- };
145
- export type RecordingMode = (typeof RecordingMode)[keyof typeof RecordingMode];
146
- export declare const ThumbnailConfigurationStorage: {
147
- readonly LATEST: "LATEST";
148
- readonly SEQUENTIAL: "SEQUENTIAL";
149
- };
150
- export type ThumbnailConfigurationStorage =
151
- (typeof ThumbnailConfigurationStorage)[keyof typeof ThumbnailConfigurationStorage];
152
130
  export interface ThumbnailConfiguration {
153
131
  recordingMode?: RecordingMode | undefined;
154
132
  targetIntervalSeconds?: number | undefined;
@@ -163,13 +141,6 @@ export interface CreateRecordingConfigurationRequest {
163
141
  recordingReconnectWindowSeconds?: number | undefined;
164
142
  renditionConfiguration?: RenditionConfiguration | undefined;
165
143
  }
166
- export declare const RecordingConfigurationState: {
167
- readonly Active: "ACTIVE";
168
- readonly CreateFailed: "CREATE_FAILED";
169
- readonly Creating: "CREATING";
170
- };
171
- export type RecordingConfigurationState =
172
- (typeof RecordingConfigurationState)[keyof typeof RecordingConfigurationState];
173
144
  export interface RecordingConfiguration {
174
145
  arn: string | undefined;
175
146
  name?: string | undefined;
@@ -239,17 +210,6 @@ export interface GetRecordingConfigurationResponse {
239
210
  export interface GetStreamRequest {
240
211
  channelArn: string | undefined;
241
212
  }
242
- export declare const StreamHealth: {
243
- readonly Starving: "STARVING";
244
- readonly StreamHealthy: "HEALTHY";
245
- readonly Unknown: "UNKNOWN";
246
- };
247
- export type StreamHealth = (typeof StreamHealth)[keyof typeof StreamHealth];
248
- export declare const StreamState: {
249
- readonly StreamLive: "LIVE";
250
- readonly StreamOffline: "OFFLINE";
251
- };
252
- export type StreamState = (typeof StreamState)[keyof typeof StreamState];
253
213
  export interface _Stream {
254
214
  channelArn?: string | undefined;
255
215
  streamId?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivs",
3
3
  "description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
4
- "version": "3.936.0",
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",
@@ -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.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
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.936.0",
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.936.0",
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",