@aws-sdk/client-kinesis-video-media 3.686.0 → 3.691.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.
@@ -9,7 +9,7 @@ import { KinesisVideoMediaServiceException as __BaseException } from "./KinesisV
9
9
  export declare class ClientLimitExceededException extends __BaseException {
10
10
  readonly name: "ClientLimitExceededException";
11
11
  readonly $fault: "client";
12
- Message?: string;
12
+ Message?: string | undefined;
13
13
  /**
14
14
  * @internal
15
15
  */
@@ -23,7 +23,7 @@ export declare class ClientLimitExceededException extends __BaseException {
23
23
  export declare class ConnectionLimitExceededException extends __BaseException {
24
24
  readonly name: "ConnectionLimitExceededException";
25
25
  readonly $fault: "client";
26
- Message?: string;
26
+ Message?: string | undefined;
27
27
  /**
28
28
  * @internal
29
29
  */
@@ -104,21 +104,21 @@ export interface StartSelector {
104
104
  * start returning the fragments. </p>
105
105
  * @public
106
106
  */
107
- AfterFragmentNumber?: string;
107
+ AfterFragmentNumber?: string | undefined;
108
108
  /**
109
109
  * <p>A timestamp value. This value is required if you choose the PRODUCER_TIMESTAMP or the
110
110
  * SERVER_TIMESTAMP as the <code>startSelectorType</code>. The <code>GetMedia</code> API then
111
111
  * starts with the chunk containing the fragment that has the specified timestamp.</p>
112
112
  * @public
113
113
  */
114
- StartTimestamp?: Date;
114
+ StartTimestamp?: Date | undefined;
115
115
  /**
116
116
  * <p>Continuation token that Kinesis Video Streams returned in the previous
117
117
  * <code>GetMedia</code> response. The <code>GetMedia</code> API then starts with the chunk
118
118
  * identified by the continuation token.</p>
119
119
  * @public
120
120
  */
121
- ContinuationToken?: string;
121
+ ContinuationToken?: string | undefined;
122
122
  }
123
123
  /**
124
124
  * @public
@@ -130,13 +130,13 @@ export interface GetMediaInput {
130
130
  * <code>streamARN</code>.</p>
131
131
  * @public
132
132
  */
133
- StreamName?: string;
133
+ StreamName?: string | undefined;
134
134
  /**
135
135
  * <p>The ARN of the stream from where you want to get the media content. If you don't
136
136
  * specify the <code>streamARN</code>, you must specify the <code>streamName</code>.</p>
137
137
  * @public
138
138
  */
139
- StreamARN?: string;
139
+ StreamARN?: string | undefined;
140
140
  /**
141
141
  * <p>Identifies the starting chunk to get from the specified stream. </p>
142
142
  * @public
@@ -151,7 +151,7 @@ export interface GetMediaOutput {
151
151
  * <p>The content type of the requested media.</p>
152
152
  * @public
153
153
  */
154
- ContentType?: string;
154
+ ContentType?: string | undefined;
155
155
  /**
156
156
  * <p> The payload Kinesis Video Streams returns is a sequence of chunks from the specified
157
157
  * stream. For information about the chunks, see . The
@@ -223,7 +223,7 @@ export interface GetMediaOutput {
223
223
  * </ul>
224
224
  * @public
225
225
  */
226
- Payload?: StreamingBlobTypes;
226
+ Payload?: StreamingBlobTypes | undefined;
227
227
  }
228
228
  /**
229
229
  * <p>The value for this input parameter is invalid.</p>
@@ -232,7 +232,7 @@ export interface GetMediaOutput {
232
232
  export declare class InvalidArgumentException extends __BaseException {
233
233
  readonly name: "InvalidArgumentException";
234
234
  readonly $fault: "client";
235
- Message?: string;
235
+ Message?: string | undefined;
236
236
  /**
237
237
  * @internal
238
238
  */
@@ -248,7 +248,7 @@ export declare class InvalidArgumentException extends __BaseException {
248
248
  export declare class InvalidEndpointException extends __BaseException {
249
249
  readonly name: "InvalidEndpointException";
250
250
  readonly $fault: "client";
251
- Message?: string;
251
+ Message?: string | undefined;
252
252
  /**
253
253
  * @internal
254
254
  */
@@ -262,7 +262,7 @@ export declare class InvalidEndpointException extends __BaseException {
262
262
  export declare class NotAuthorizedException extends __BaseException {
263
263
  readonly name: "NotAuthorizedException";
264
264
  readonly $fault: "client";
265
- Message?: string;
265
+ Message?: string | undefined;
266
266
  /**
267
267
  * @internal
268
268
  */
@@ -275,7 +275,7 @@ export declare class NotAuthorizedException extends __BaseException {
275
275
  export declare class ResourceNotFoundException extends __BaseException {
276
276
  readonly name: "ResourceNotFoundException";
277
277
  readonly $fault: "client";
278
- Message?: string;
278
+ Message?: string | undefined;
279
279
  /**
280
280
  * @internal
281
281
  */
@@ -4,7 +4,7 @@ import { KinesisVideoMediaServiceException as __BaseException } from "./KinesisV
4
4
  export declare class ClientLimitExceededException extends __BaseException {
5
5
  readonly name: "ClientLimitExceededException";
6
6
  readonly $fault: "client";
7
- Message?: string;
7
+ Message?: string | undefined;
8
8
  constructor(
9
9
  opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
10
10
  );
@@ -12,7 +12,7 @@ export declare class ClientLimitExceededException extends __BaseException {
12
12
  export declare class ConnectionLimitExceededException extends __BaseException {
13
13
  readonly name: "ConnectionLimitExceededException";
14
14
  readonly $fault: "client";
15
- Message?: string;
15
+ Message?: string | undefined;
16
16
  constructor(
17
17
  opts: __ExceptionOptionType<
18
18
  ConnectionLimitExceededException,
@@ -32,23 +32,23 @@ export type StartSelectorType =
32
32
  (typeof StartSelectorType)[keyof typeof StartSelectorType];
33
33
  export interface StartSelector {
34
34
  StartSelectorType: StartSelectorType | undefined;
35
- AfterFragmentNumber?: string;
36
- StartTimestamp?: Date;
37
- ContinuationToken?: string;
35
+ AfterFragmentNumber?: string | undefined;
36
+ StartTimestamp?: Date | undefined;
37
+ ContinuationToken?: string | undefined;
38
38
  }
39
39
  export interface GetMediaInput {
40
- StreamName?: string;
41
- StreamARN?: string;
40
+ StreamName?: string | undefined;
41
+ StreamARN?: string | undefined;
42
42
  StartSelector: StartSelector | undefined;
43
43
  }
44
44
  export interface GetMediaOutput {
45
- ContentType?: string;
46
- Payload?: StreamingBlobTypes;
45
+ ContentType?: string | undefined;
46
+ Payload?: StreamingBlobTypes | undefined;
47
47
  }
48
48
  export declare class InvalidArgumentException extends __BaseException {
49
49
  readonly name: "InvalidArgumentException";
50
50
  readonly $fault: "client";
51
- Message?: string;
51
+ Message?: string | undefined;
52
52
  constructor(
53
53
  opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
54
54
  );
@@ -56,7 +56,7 @@ export declare class InvalidArgumentException extends __BaseException {
56
56
  export declare class InvalidEndpointException extends __BaseException {
57
57
  readonly name: "InvalidEndpointException";
58
58
  readonly $fault: "client";
59
- Message?: string;
59
+ Message?: string | undefined;
60
60
  constructor(
61
61
  opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
62
62
  );
@@ -64,7 +64,7 @@ export declare class InvalidEndpointException extends __BaseException {
64
64
  export declare class NotAuthorizedException extends __BaseException {
65
65
  readonly name: "NotAuthorizedException";
66
66
  readonly $fault: "client";
67
- Message?: string;
67
+ Message?: string | undefined;
68
68
  constructor(
69
69
  opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
70
70
  );
@@ -72,7 +72,7 @@ export declare class NotAuthorizedException extends __BaseException {
72
72
  export declare class ResourceNotFoundException extends __BaseException {
73
73
  readonly name: "ResourceNotFoundException";
74
74
  readonly $fault: "client";
75
- Message?: string;
75
+ Message?: string | undefined;
76
76
  constructor(
77
77
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
78
78
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-media",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Media Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.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-kinesis-video-media",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",