@aws-sdk/client-kinesis-video 3.687.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.
- package/dist-types/models/models_0.d.ts +169 -169
- package/dist-types/ts3.4/models/models_0.d.ts +173 -169
- package/package.json +7 -7
|
@@ -7,7 +7,7 @@ import { KinesisVideoServiceException as __BaseException } from "./KinesisVideoS
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -21,7 +21,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
21
21
|
export declare class AccountChannelLimitExceededException extends __BaseException {
|
|
22
22
|
readonly name: "AccountChannelLimitExceededException";
|
|
23
23
|
readonly $fault: "client";
|
|
24
|
-
Message?: string;
|
|
24
|
+
Message?: string | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* @internal
|
|
27
27
|
*/
|
|
@@ -34,7 +34,7 @@ export declare class AccountChannelLimitExceededException extends __BaseExceptio
|
|
|
34
34
|
export declare class AccountStreamLimitExceededException extends __BaseException {
|
|
35
35
|
readonly name: "AccountStreamLimitExceededException";
|
|
36
36
|
readonly $fault: "client";
|
|
37
|
-
Message?: string;
|
|
37
|
+
Message?: string | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
@@ -95,7 +95,7 @@ export interface SingleMasterConfiguration {
|
|
|
95
95
|
* discarded.</p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
MessageTtlSeconds?: number;
|
|
98
|
+
MessageTtlSeconds?: number | undefined;
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
101
|
* <p>A structure that encapsulates a signaling channel's metadata and properties.</p>
|
|
@@ -106,38 +106,38 @@ export interface ChannelInfo {
|
|
|
106
106
|
* <p>The name of the signaling channel.</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
ChannelName?: string;
|
|
109
|
+
ChannelName?: string | undefined;
|
|
110
110
|
/**
|
|
111
111
|
* <p>The Amazon Resource Name (ARN) of the signaling channel.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
ChannelARN?: string;
|
|
114
|
+
ChannelARN?: string | undefined;
|
|
115
115
|
/**
|
|
116
116
|
* <p>The type of the signaling channel.</p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
ChannelType?: ChannelType;
|
|
119
|
+
ChannelType?: ChannelType | undefined;
|
|
120
120
|
/**
|
|
121
121
|
* <p>Current status of the signaling channel.</p>
|
|
122
122
|
* @public
|
|
123
123
|
*/
|
|
124
|
-
ChannelStatus?: Status;
|
|
124
|
+
ChannelStatus?: Status | undefined;
|
|
125
125
|
/**
|
|
126
126
|
* <p>The time at which the signaling channel was created.</p>
|
|
127
127
|
* @public
|
|
128
128
|
*/
|
|
129
|
-
CreationTime?: Date;
|
|
129
|
+
CreationTime?: Date | undefined;
|
|
130
130
|
/**
|
|
131
131
|
* <p>A structure that contains the configuration for the <code>SINGLE_MASTER</code> channel
|
|
132
132
|
* type.</p>
|
|
133
133
|
* @public
|
|
134
134
|
*/
|
|
135
|
-
SingleMasterConfiguration?: SingleMasterConfiguration;
|
|
135
|
+
SingleMasterConfiguration?: SingleMasterConfiguration | undefined;
|
|
136
136
|
/**
|
|
137
137
|
* <p>The current version of the signaling channel.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
Version?: string;
|
|
140
|
+
Version?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
@@ -163,12 +163,12 @@ export interface ChannelNameCondition {
|
|
|
163
163
|
* operator, which finds signaling channels whose names begin with a given prefix.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
ComparisonOperator?: ComparisonOperator;
|
|
166
|
+
ComparisonOperator?: ComparisonOperator | undefined;
|
|
167
167
|
/**
|
|
168
168
|
* <p>A value to compare.</p>
|
|
169
169
|
* @public
|
|
170
170
|
*/
|
|
171
|
-
ComparisonValue?: string;
|
|
171
|
+
ComparisonValue?: string | undefined;
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
174
|
* @public
|
|
@@ -203,7 +203,7 @@ export type ChannelRole = (typeof ChannelRole)[keyof typeof ChannelRole];
|
|
|
203
203
|
export declare class ClientLimitExceededException extends __BaseException {
|
|
204
204
|
readonly name: "ClientLimitExceededException";
|
|
205
205
|
readonly $fault: "client";
|
|
206
|
-
Message?: string;
|
|
206
|
+
Message?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* @internal
|
|
209
209
|
*/
|
|
@@ -251,18 +251,18 @@ export interface CreateSignalingChannelInput {
|
|
|
251
251
|
* <code>SINGLE_MASTER</code> is the only supported channel type. </p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
ChannelType?: ChannelType;
|
|
254
|
+
ChannelType?: ChannelType | undefined;
|
|
255
255
|
/**
|
|
256
256
|
* <p>A structure containing the configuration for the <code>SINGLE_MASTER</code> channel
|
|
257
257
|
* type. </p>
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
|
-
SingleMasterConfiguration?: SingleMasterConfiguration;
|
|
260
|
+
SingleMasterConfiguration?: SingleMasterConfiguration | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* <p>A set of tags (key-value pairs) that you want to associate with this channel.</p>
|
|
263
263
|
* @public
|
|
264
264
|
*/
|
|
265
|
-
Tags?: Tag[];
|
|
265
|
+
Tags?: Tag[] | undefined;
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
268
|
* @public
|
|
@@ -272,7 +272,7 @@ export interface CreateSignalingChannelOutput {
|
|
|
272
272
|
* <p>The Amazon Resource Name (ARN) of the created channel.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
|
-
ChannelARN?: string;
|
|
275
|
+
ChannelARN?: string | undefined;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* <p>The value for this input parameter is invalid.</p>
|
|
@@ -281,7 +281,7 @@ export interface CreateSignalingChannelOutput {
|
|
|
281
281
|
export declare class InvalidArgumentException extends __BaseException {
|
|
282
282
|
readonly name: "InvalidArgumentException";
|
|
283
283
|
readonly $fault: "client";
|
|
284
|
-
Message?: string;
|
|
284
|
+
Message?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* @internal
|
|
287
287
|
*/
|
|
@@ -311,7 +311,7 @@ export declare class InvalidArgumentException extends __BaseException {
|
|
|
311
311
|
export declare class ResourceInUseException extends __BaseException {
|
|
312
312
|
readonly name: "ResourceInUseException";
|
|
313
313
|
readonly $fault: "client";
|
|
314
|
-
Message?: string;
|
|
314
|
+
Message?: string | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* @internal
|
|
317
317
|
*/
|
|
@@ -325,7 +325,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
325
325
|
export declare class TagsPerResourceExceededLimitException extends __BaseException {
|
|
326
326
|
readonly name: "TagsPerResourceExceededLimitException";
|
|
327
327
|
readonly $fault: "client";
|
|
328
|
-
Message?: string;
|
|
328
|
+
Message?: string | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* @internal
|
|
331
331
|
*/
|
|
@@ -343,7 +343,7 @@ export interface CreateStreamInput {
|
|
|
343
343
|
* </note>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
DeviceName?: string;
|
|
346
|
+
DeviceName?: string | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* <p>A name for the stream that you are creating.</p>
|
|
349
349
|
* <p>The stream name is an identifier for the stream, and must be unique for each
|
|
@@ -361,7 +361,7 @@ export interface CreateStreamInput {
|
|
|
361
361
|
* JSON).</p>
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
MediaType?: string;
|
|
364
|
+
MediaType?: string | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* <p>The ID of the Key Management Service (KMS) key that you want Kinesis Video
|
|
367
367
|
* Streams to use to encrypt stream data.</p>
|
|
@@ -370,7 +370,7 @@ export interface CreateStreamInput {
|
|
|
370
370
|
* <p> For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters">DescribeKey</a>. </p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
KmsKeyId?: string;
|
|
373
|
+
KmsKeyId?: string | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream.</p>
|
|
376
376
|
* <p>The default value is 0, indicating that the stream does not persist data.</p>
|
|
@@ -380,13 +380,13 @@ export interface CreateStreamInput {
|
|
|
380
380
|
* buffer when either limit is reached.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
DataRetentionInHours?: number;
|
|
383
|
+
DataRetentionInHours?: number | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>A list of tags to associate with the specified stream. Each tag is a key-value pair
|
|
386
386
|
* (the value is optional).</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
Tags?: Record<string, string
|
|
389
|
+
Tags?: Record<string, string> | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* @public
|
|
@@ -396,7 +396,7 @@ export interface CreateStreamOutput {
|
|
|
396
396
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
StreamARN?: string;
|
|
399
|
+
StreamARN?: string | undefined;
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
* <p>Not implemented.
|
|
@@ -406,7 +406,7 @@ export interface CreateStreamOutput {
|
|
|
406
406
|
export declare class DeviceStreamLimitExceededException extends __BaseException {
|
|
407
407
|
readonly name: "DeviceStreamLimitExceededException";
|
|
408
408
|
readonly $fault: "client";
|
|
409
|
-
Message?: string;
|
|
409
|
+
Message?: string | undefined;
|
|
410
410
|
/**
|
|
411
411
|
* @internal
|
|
412
412
|
*/
|
|
@@ -419,7 +419,7 @@ export declare class DeviceStreamLimitExceededException extends __BaseException
|
|
|
419
419
|
export declare class InvalidDeviceException extends __BaseException {
|
|
420
420
|
readonly name: "InvalidDeviceException";
|
|
421
421
|
readonly $fault: "client";
|
|
422
|
-
Message?: string;
|
|
422
|
+
Message?: string | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* @internal
|
|
425
425
|
*/
|
|
@@ -433,12 +433,12 @@ export interface DeleteEdgeConfigurationInput {
|
|
|
433
433
|
* <p>The name of the stream from which to delete the edge configuration. Specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
StreamName?: string;
|
|
436
|
+
StreamName?: string | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The Amazon Resource Name (ARN) of the stream. Specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
StreamARN?: string;
|
|
441
|
+
StreamARN?: string | undefined;
|
|
442
442
|
}
|
|
443
443
|
/**
|
|
444
444
|
* @public
|
|
@@ -452,7 +452,7 @@ export interface DeleteEdgeConfigurationOutput {
|
|
|
452
452
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
453
453
|
readonly name: "ResourceNotFoundException";
|
|
454
454
|
readonly $fault: "client";
|
|
455
|
-
Message?: string;
|
|
455
|
+
Message?: string | undefined;
|
|
456
456
|
/**
|
|
457
457
|
* @internal
|
|
458
458
|
*/
|
|
@@ -466,7 +466,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
466
466
|
export declare class StreamEdgeConfigurationNotFoundException extends __BaseException {
|
|
467
467
|
readonly name: "StreamEdgeConfigurationNotFoundException";
|
|
468
468
|
readonly $fault: "client";
|
|
469
|
-
Message?: string;
|
|
469
|
+
Message?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* @internal
|
|
472
472
|
*/
|
|
@@ -488,7 +488,7 @@ export interface DeleteSignalingChannelInput {
|
|
|
488
488
|
* <code>ListSignalingChannels</code> API operations.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
CurrentVersion?: string;
|
|
491
|
+
CurrentVersion?: string | undefined;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
494
|
* @public
|
|
@@ -504,7 +504,7 @@ export interface DeleteSignalingChannelOutput {
|
|
|
504
504
|
export declare class VersionMismatchException extends __BaseException {
|
|
505
505
|
readonly name: "VersionMismatchException";
|
|
506
506
|
readonly $fault: "client";
|
|
507
|
-
Message?: string;
|
|
507
|
+
Message?: string | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* @internal
|
|
510
510
|
*/
|
|
@@ -527,7 +527,7 @@ export interface DeleteStreamInput {
|
|
|
527
527
|
* stream.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
CurrentVersion?: string;
|
|
530
|
+
CurrentVersion?: string | undefined;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* @public
|
|
@@ -541,7 +541,7 @@ export interface DeleteStreamOutput {
|
|
|
541
541
|
export declare class NotAuthorizedException extends __BaseException {
|
|
542
542
|
readonly name: "NotAuthorizedException";
|
|
543
543
|
readonly $fault: "client";
|
|
544
|
-
Message?: string;
|
|
544
|
+
Message?: string | undefined;
|
|
545
545
|
/**
|
|
546
546
|
* @internal
|
|
547
547
|
*/
|
|
@@ -571,12 +571,12 @@ export interface LocalSizeConfig {
|
|
|
571
571
|
* <p>The overall maximum size of the media that you want to store for a stream on the Edge Agent. </p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
MaxLocalMediaSizeInMB?: number;
|
|
574
|
+
MaxLocalMediaSizeInMB?: number | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>The strategy to perform when a stream’s <code>MaxLocalMediaSizeInMB</code> limit is reached.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
StrategyOnFullSize?: StrategyOnFullSize;
|
|
579
|
+
StrategyOnFullSize?: StrategyOnFullSize | undefined;
|
|
580
580
|
}
|
|
581
581
|
/**
|
|
582
582
|
* <p>The configuration details required to delete the connection of the stream from the Edge Agent.</p>
|
|
@@ -588,12 +588,12 @@ export interface DeletionConfig {
|
|
|
588
588
|
* time is 720 hours, which translates to 30 days.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
EdgeRetentionInHours?: number;
|
|
591
|
+
EdgeRetentionInHours?: number | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>The value of the local size required in order to delete the edge configuration.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
LocalSizeConfig?: LocalSizeConfig;
|
|
596
|
+
LocalSizeConfig?: LocalSizeConfig | undefined;
|
|
597
597
|
/**
|
|
598
598
|
* <p>The <code>boolean</code> value used to indicate whether or not you want to mark the media for deletion, once it has been uploaded to
|
|
599
599
|
* the Kinesis Video Stream cloud. The media files can be deleted if any of the deletion configuration values are
|
|
@@ -604,7 +604,7 @@ export interface DeletionConfig {
|
|
|
604
604
|
* that the media files are not being deleted before they are initially uploaded to the Amazon Web Services cloud.</p>
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
DeleteAfterUpload?: boolean;
|
|
607
|
+
DeleteAfterUpload?: boolean | undefined;
|
|
608
608
|
}
|
|
609
609
|
/**
|
|
610
610
|
* @public
|
|
@@ -616,12 +616,12 @@ export interface DescribeEdgeConfigurationInput {
|
|
|
616
616
|
* </p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
StreamName?: string;
|
|
619
|
+
StreamName?: string | undefined;
|
|
620
620
|
/**
|
|
621
621
|
* <p>The Amazon Resource Name (ARN) of the stream. Specify either the <code>StreamName</code>or the <code>StreamARN</code>.</p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
StreamARN?: string;
|
|
624
|
+
StreamARN?: string | undefined;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
627
|
* @public
|
|
@@ -645,22 +645,22 @@ export interface LastRecorderStatus {
|
|
|
645
645
|
* <p>A description of a recorder job’s latest status.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
JobStatusDetails?: string;
|
|
648
|
+
JobStatusDetails?: string | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>The timestamp at which the recorder job was last executed and media stored to local disk.</p>
|
|
651
651
|
* @public
|
|
652
652
|
*/
|
|
653
|
-
LastCollectedTime?: Date;
|
|
653
|
+
LastCollectedTime?: Date | undefined;
|
|
654
654
|
/**
|
|
655
655
|
* <p>The timestamp at which the recorder status was last updated.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
LastUpdatedTime?: Date;
|
|
658
|
+
LastUpdatedTime?: Date | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>The status of the latest recorder job.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
RecorderStatus?: RecorderStatus;
|
|
663
|
+
RecorderStatus?: RecorderStatus | undefined;
|
|
664
664
|
}
|
|
665
665
|
/**
|
|
666
666
|
* @public
|
|
@@ -684,22 +684,22 @@ export interface LastUploaderStatus {
|
|
|
684
684
|
* <p>A description of an uploader job’s latest status.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
JobStatusDetails?: string;
|
|
687
|
+
JobStatusDetails?: string | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>The timestamp at which the uploader job was last executed and media collected to the cloud.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
LastCollectedTime?: Date;
|
|
692
|
+
LastCollectedTime?: Date | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The timestamp at which the uploader status was last updated.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
LastUpdatedTime?: Date;
|
|
697
|
+
LastUpdatedTime?: Date | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The status of the latest uploader job.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
UploaderStatus?: UploaderStatus;
|
|
702
|
+
UploaderStatus?: UploaderStatus | undefined;
|
|
703
703
|
}
|
|
704
704
|
/**
|
|
705
705
|
* <p>An object that contains the latest status details for an edge agent's recorder and uploader jobs. Use this information to determine the current health of an edge agent.</p>
|
|
@@ -710,12 +710,12 @@ export interface EdgeAgentStatus {
|
|
|
710
710
|
* <p>The latest status of a stream’s edge recording job.</p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
LastRecorderStatus?: LastRecorderStatus;
|
|
713
|
+
LastRecorderStatus?: LastRecorderStatus | undefined;
|
|
714
714
|
/**
|
|
715
715
|
* <p>The latest status of a stream’s edge to cloud uploader job.</p>
|
|
716
716
|
* @public
|
|
717
717
|
*/
|
|
718
|
-
LastUploaderStatus?: LastUploaderStatus;
|
|
718
|
+
LastUploaderStatus?: LastUploaderStatus | undefined;
|
|
719
719
|
}
|
|
720
720
|
/**
|
|
721
721
|
* @public
|
|
@@ -801,7 +801,7 @@ export interface RecorderConfig {
|
|
|
801
801
|
* then the Edge Agent will always be set to recording mode.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
ScheduleConfig?: ScheduleConfig;
|
|
804
|
+
ScheduleConfig?: ScheduleConfig | undefined;
|
|
805
805
|
}
|
|
806
806
|
/**
|
|
807
807
|
* <p>The configuration that consists of the <code>ScheduleExpression</code>
|
|
@@ -844,13 +844,13 @@ export interface EdgeConfig {
|
|
|
844
844
|
* schedule upload jobs for the recorded media files from the Edge Agent to a Kinesis Video Stream.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
UploaderConfig?: UploaderConfig;
|
|
847
|
+
UploaderConfig?: UploaderConfig | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>The deletion configuration is made up of the retention time (<code>EdgeRetentionInHours</code>) and local size configuration
|
|
850
850
|
* (<code>LocalSizeConfig</code>) details that are used to make the deletion.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
DeletionConfig?: DeletionConfig;
|
|
853
|
+
DeletionConfig?: DeletionConfig | undefined;
|
|
854
854
|
}
|
|
855
855
|
/**
|
|
856
856
|
* @public
|
|
@@ -877,44 +877,44 @@ export interface DescribeEdgeConfigurationOutput {
|
|
|
877
877
|
* <p>The name of the stream from which the edge configuration was updated.</p>
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
StreamName?: string;
|
|
880
|
+
StreamName?: string | undefined;
|
|
881
881
|
/**
|
|
882
882
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
883
883
|
* @public
|
|
884
884
|
*/
|
|
885
|
-
StreamARN?: string;
|
|
885
|
+
StreamARN?: string | undefined;
|
|
886
886
|
/**
|
|
887
887
|
* <p>The timestamp at which a stream’s edge configuration was first created.</p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
CreationTime?: Date;
|
|
890
|
+
CreationTime?: Date | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>The timestamp at which a stream’s edge configuration was last updated.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
LastUpdatedTime?: Date;
|
|
895
|
+
LastUpdatedTime?: Date | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>The latest status of the edge configuration update.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
SyncStatus?: SyncStatus;
|
|
900
|
+
SyncStatus?: SyncStatus | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>A description of the generated failure status.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
FailedStatusDetails?: string;
|
|
905
|
+
FailedStatusDetails?: string | undefined;
|
|
906
906
|
/**
|
|
907
907
|
* <p>A description of the stream's edge configuration that will be used to sync
|
|
908
908
|
* with the Edge Agent IoT Greengrass component. The Edge Agent component will run
|
|
909
909
|
* on an IoT Hub Device setup at your premise.</p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
EdgeConfig?: EdgeConfig;
|
|
912
|
+
EdgeConfig?: EdgeConfig | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>An object that contains the latest status details for an edge agent's recorder and uploader jobs. Use this information to determine the current health of an edge agent.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
EdgeAgentStatus?: EdgeAgentStatus;
|
|
917
|
+
EdgeAgentStatus?: EdgeAgentStatus | undefined;
|
|
918
918
|
}
|
|
919
919
|
/**
|
|
920
920
|
* @public
|
|
@@ -924,12 +924,12 @@ export interface DescribeImageGenerationConfigurationInput {
|
|
|
924
924
|
* <p>The name of the stream from which to retrieve the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>. </p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
StreamName?: string;
|
|
927
|
+
StreamName?: string | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* <p>The Amazon Resource Name (ARN) of the Kinesis video stream from which to retrieve the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
StreamARN?: string;
|
|
932
|
+
StreamARN?: string | undefined;
|
|
933
933
|
}
|
|
934
934
|
/**
|
|
935
935
|
* <p>The structure that contains the information required to deliver images to a customer.</p>
|
|
@@ -1021,14 +1021,14 @@ export interface ImageGenerationConfiguration {
|
|
|
1021
1021
|
* key will be set to 80.</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
FormatConfig?: Partial<Record<FormatConfigKey, string
|
|
1024
|
+
FormatConfig?: Partial<Record<FormatConfigKey, string>> | undefined;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* <p>The width of the output image that is used in conjunction with the <code>HeightPixels</code> parameter. When both <code>WidthPixels</code> and
|
|
1027
1027
|
* <code>HeightPixels</code> parameters are provided, the image will be stretched to fit the specified aspect ratio. If only the <code>WidthPixels</code> parameter is
|
|
1028
1028
|
* provided, its original aspect ratio will be used to calculate the <code>HeightPixels</code> ratio. If neither parameter is provided, the original image size will be returned.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
WidthPixels?: number;
|
|
1031
|
+
WidthPixels?: number | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>The height of the output image that is used in conjunction with the <code>WidthPixels</code> parameter. When both
|
|
1034
1034
|
* <code>HeightPixels</code> and <code>WidthPixels</code> parameters are provided, the image will be stretched to fit the specified aspect ratio.
|
|
@@ -1036,7 +1036,7 @@ export interface ImageGenerationConfiguration {
|
|
|
1036
1036
|
* If neither parameter is provided, the original image size will be returned.</p>
|
|
1037
1037
|
* @public
|
|
1038
1038
|
*/
|
|
1039
|
-
HeightPixels?: number;
|
|
1039
|
+
HeightPixels?: number | undefined;
|
|
1040
1040
|
}
|
|
1041
1041
|
/**
|
|
1042
1042
|
* @public
|
|
@@ -1046,7 +1046,7 @@ export interface DescribeImageGenerationConfigurationOutput {
|
|
|
1046
1046
|
* <p>The structure that contains the information required for the Kinesis video stream (KVS) images delivery. If this structure is null, the configuration will be deleted from the stream.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
ImageGenerationConfiguration?: ImageGenerationConfiguration;
|
|
1049
|
+
ImageGenerationConfiguration?: ImageGenerationConfiguration | undefined;
|
|
1050
1050
|
}
|
|
1051
1051
|
/**
|
|
1052
1052
|
* @public
|
|
@@ -1056,22 +1056,22 @@ export interface DescribeMappedResourceConfigurationInput {
|
|
|
1056
1056
|
* <p>The name of the stream.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
StreamName?: string;
|
|
1059
|
+
StreamName?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
StreamARN?: string;
|
|
1064
|
+
StreamARN?: string | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>The maximum number of results to return in the response.</p>
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
MaxResults?: number;
|
|
1069
|
+
MaxResults?: number | undefined;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* <p>The token to provide in your next request, to get another batch of results.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
NextToken?: string;
|
|
1074
|
+
NextToken?: string | undefined;
|
|
1075
1075
|
}
|
|
1076
1076
|
/**
|
|
1077
1077
|
* <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
|
|
@@ -1082,12 +1082,12 @@ export interface MappedResourceConfigurationListItem {
|
|
|
1082
1082
|
* <p>The type of the associated resource for the kinesis video stream.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
Type?: string;
|
|
1085
|
+
Type?: string | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, associated with the stream.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
ARN?: string;
|
|
1090
|
+
ARN?: string | undefined;
|
|
1091
1091
|
}
|
|
1092
1092
|
/**
|
|
1093
1093
|
* @public
|
|
@@ -1097,12 +1097,12 @@ export interface DescribeMappedResourceConfigurationOutput {
|
|
|
1097
1097
|
* <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
|
|
1098
1098
|
* @public
|
|
1099
1099
|
*/
|
|
1100
|
-
MappedResourceConfigurationList?: MappedResourceConfigurationListItem[];
|
|
1100
|
+
MappedResourceConfigurationList?: MappedResourceConfigurationListItem[] | undefined;
|
|
1101
1101
|
/**
|
|
1102
1102
|
* <p>The token that was used in the <code>NextToken</code>request to fetch the next set of results. </p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
NextToken?: string;
|
|
1105
|
+
NextToken?: string | undefined;
|
|
1106
1106
|
}
|
|
1107
1107
|
/**
|
|
1108
1108
|
* @public
|
|
@@ -1112,12 +1112,12 @@ export interface DescribeMediaStorageConfigurationInput {
|
|
|
1112
1112
|
* <p>The name of the channel.</p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
ChannelName?: string;
|
|
1115
|
+
ChannelName?: string | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* <p>The Amazon Resource Name (ARN) of the channel.</p>
|
|
1118
1118
|
* @public
|
|
1119
1119
|
*/
|
|
1120
|
-
ChannelARN?: string;
|
|
1120
|
+
ChannelARN?: string | undefined;
|
|
1121
1121
|
}
|
|
1122
1122
|
/**
|
|
1123
1123
|
* @public
|
|
@@ -1152,7 +1152,7 @@ export interface MediaStorageConfiguration {
|
|
|
1152
1152
|
* <p>The Amazon Resource Name (ARN) of the stream. </p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
StreamARN?: string;
|
|
1155
|
+
StreamARN?: string | undefined;
|
|
1156
1156
|
/**
|
|
1157
1157
|
* <p>The status of the media storage configuration.</p>
|
|
1158
1158
|
* @public
|
|
@@ -1167,7 +1167,7 @@ export interface DescribeMediaStorageConfigurationOutput {
|
|
|
1167
1167
|
* <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
MediaStorageConfiguration?: MediaStorageConfiguration;
|
|
1170
|
+
MediaStorageConfiguration?: MediaStorageConfiguration | undefined;
|
|
1171
1171
|
}
|
|
1172
1172
|
/**
|
|
1173
1173
|
* @public
|
|
@@ -1177,12 +1177,12 @@ export interface DescribeNotificationConfigurationInput {
|
|
|
1177
1177
|
* <p>The name of the stream from which to retrieve the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
StreamName?: string;
|
|
1180
|
+
StreamName?: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to retrieve the notification configuration. You must specify either the <code>StreamName</code> or the StreamARN.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
StreamARN?: string;
|
|
1185
|
+
StreamARN?: string | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>The structure that contains the information required to deliver a notification to a customer.</p>
|
|
@@ -1219,7 +1219,7 @@ export interface DescribeNotificationConfigurationOutput {
|
|
|
1219
1219
|
* <p>The structure that contains the information required for notifications. If the structure is null, the configuration will be deleted from the stream.</p>
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
1222
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
1223
1223
|
}
|
|
1224
1224
|
/**
|
|
1225
1225
|
* @public
|
|
@@ -1229,12 +1229,12 @@ export interface DescribeSignalingChannelInput {
|
|
|
1229
1229
|
* <p>The name of the signaling channel that you want to describe.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
ChannelName?: string;
|
|
1232
|
+
ChannelName?: string | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>The ARN of the signaling channel that you want to describe.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
ChannelARN?: string;
|
|
1237
|
+
ChannelARN?: string | undefined;
|
|
1238
1238
|
}
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @public
|
|
@@ -1245,7 +1245,7 @@ export interface DescribeSignalingChannelOutput {
|
|
|
1245
1245
|
* properties.</p>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
ChannelInfo?: ChannelInfo;
|
|
1248
|
+
ChannelInfo?: ChannelInfo | undefined;
|
|
1249
1249
|
}
|
|
1250
1250
|
/**
|
|
1251
1251
|
* @public
|
|
@@ -1255,12 +1255,12 @@ export interface DescribeStreamInput {
|
|
|
1255
1255
|
* <p>The name of the stream.</p>
|
|
1256
1256
|
* @public
|
|
1257
1257
|
*/
|
|
1258
|
-
StreamName?: string;
|
|
1258
|
+
StreamName?: string | undefined;
|
|
1259
1259
|
/**
|
|
1260
1260
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
StreamARN?: string;
|
|
1263
|
+
StreamARN?: string | undefined;
|
|
1264
1264
|
}
|
|
1265
1265
|
/**
|
|
1266
1266
|
* <p>An object describing a Kinesis video stream.</p>
|
|
@@ -1271,48 +1271,48 @@ export interface StreamInfo {
|
|
|
1271
1271
|
* <p>The name of the device that is associated with the stream.</p>
|
|
1272
1272
|
* @public
|
|
1273
1273
|
*/
|
|
1274
|
-
DeviceName?: string;
|
|
1274
|
+
DeviceName?: string | undefined;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* <p>The name of the stream.</p>
|
|
1277
1277
|
* @public
|
|
1278
1278
|
*/
|
|
1279
|
-
StreamName?: string;
|
|
1279
|
+
StreamName?: string | undefined;
|
|
1280
1280
|
/**
|
|
1281
1281
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
StreamARN?: string;
|
|
1284
|
+
StreamARN?: string | undefined;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* <p>The <code>MediaType</code> of the stream. </p>
|
|
1287
1287
|
* @public
|
|
1288
1288
|
*/
|
|
1289
|
-
MediaType?: string;
|
|
1289
|
+
MediaType?: string | undefined;
|
|
1290
1290
|
/**
|
|
1291
1291
|
* <p>The ID of the Key Management Service (KMS) key that Kinesis Video Streams
|
|
1292
1292
|
* uses to encrypt data on the stream.</p>
|
|
1293
1293
|
* @public
|
|
1294
1294
|
*/
|
|
1295
|
-
KmsKeyId?: string;
|
|
1295
|
+
KmsKeyId?: string | undefined;
|
|
1296
1296
|
/**
|
|
1297
1297
|
* <p>The version of the stream.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
Version?: string;
|
|
1300
|
+
Version?: string | undefined;
|
|
1301
1301
|
/**
|
|
1302
1302
|
* <p>The status of the stream.</p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
Status?: Status;
|
|
1305
|
+
Status?: Status | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* <p>A time stamp that indicates when the stream was created.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
CreationTime?: Date;
|
|
1310
|
+
CreationTime?: Date | undefined;
|
|
1311
1311
|
/**
|
|
1312
1312
|
* <p>How long the stream retains data, in hours.</p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
DataRetentionInHours?: number;
|
|
1315
|
+
DataRetentionInHours?: number | undefined;
|
|
1316
1316
|
}
|
|
1317
1317
|
/**
|
|
1318
1318
|
* @public
|
|
@@ -1322,7 +1322,7 @@ export interface DescribeStreamOutput {
|
|
|
1322
1322
|
* <p>An object that describes the stream.</p>
|
|
1323
1323
|
* @public
|
|
1324
1324
|
*/
|
|
1325
|
-
StreamInfo?: StreamInfo;
|
|
1325
|
+
StreamInfo?: StreamInfo | undefined;
|
|
1326
1326
|
}
|
|
1327
1327
|
/**
|
|
1328
1328
|
* @public
|
|
@@ -1333,14 +1333,14 @@ export interface GetDataEndpointInput {
|
|
|
1333
1333
|
* either this parameter or a <code>StreamARN</code> in the request.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
StreamName?: string;
|
|
1336
|
+
StreamName?: string | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The Amazon Resource Name (ARN) of the stream that you want to get the endpoint for.
|
|
1339
1339
|
* You must specify either this parameter or a <code>StreamName</code> in the request.
|
|
1340
1340
|
* </p>
|
|
1341
1341
|
* @public
|
|
1342
1342
|
*/
|
|
1343
|
-
StreamARN?: string;
|
|
1343
|
+
StreamARN?: string | undefined;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>The name of the API action for which to get an endpoint.</p>
|
|
1346
1346
|
* @public
|
|
@@ -1356,7 +1356,7 @@ export interface GetDataEndpointOutput {
|
|
|
1356
1356
|
* this endpoint in your application.</p>
|
|
1357
1357
|
* @public
|
|
1358
1358
|
*/
|
|
1359
|
-
DataEndpoint?: string;
|
|
1359
|
+
DataEndpoint?: string | undefined;
|
|
1360
1360
|
}
|
|
1361
1361
|
/**
|
|
1362
1362
|
* <p>An object that contains the endpoint configuration for the <code>SINGLE_MASTER</code>
|
|
@@ -1371,7 +1371,7 @@ export interface SingleMasterChannelEndpointConfiguration {
|
|
|
1371
1371
|
* an <code>HTTPS</code> endpoint.</p>
|
|
1372
1372
|
* @public
|
|
1373
1373
|
*/
|
|
1374
|
-
Protocols?: ChannelProtocol[];
|
|
1374
|
+
Protocols?: ChannelProtocol[] | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* <p>This property is used to determine messaging permissions in this
|
|
1377
1377
|
* <code>SINGLE_MASTER</code> signaling channel. If <code>MASTER</code> is specified,
|
|
@@ -1381,7 +1381,7 @@ export interface SingleMasterChannelEndpointConfiguration {
|
|
|
1381
1381
|
* another <code>MASTER</code> client on this signaling channel. </p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
Role?: ChannelRole;
|
|
1384
|
+
Role?: ChannelRole | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
/**
|
|
1387
1387
|
* @public
|
|
@@ -1398,7 +1398,7 @@ export interface GetSignalingChannelEndpointInput {
|
|
|
1398
1398
|
* channel type.</p>
|
|
1399
1399
|
* @public
|
|
1400
1400
|
*/
|
|
1401
|
-
SingleMasterChannelEndpointConfiguration?: SingleMasterChannelEndpointConfiguration;
|
|
1401
|
+
SingleMasterChannelEndpointConfiguration?: SingleMasterChannelEndpointConfiguration | undefined;
|
|
1402
1402
|
}
|
|
1403
1403
|
/**
|
|
1404
1404
|
* <p>An object that describes the endpoint of the signaling channel returned by the
|
|
@@ -1412,13 +1412,13 @@ export interface ResourceEndpointListItem {
|
|
|
1412
1412
|
* <code>GetSignalingChannelEndpoint</code> API.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
Protocol?: ChannelProtocol;
|
|
1415
|
+
Protocol?: ChannelProtocol | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The endpoint of the signaling channel returned by the
|
|
1418
1418
|
* <code>GetSignalingChannelEndpoint</code> API.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
ResourceEndpoint?: string;
|
|
1421
|
+
ResourceEndpoint?: string | undefined;
|
|
1422
1422
|
}
|
|
1423
1423
|
/**
|
|
1424
1424
|
* @public
|
|
@@ -1428,7 +1428,7 @@ export interface GetSignalingChannelEndpointOutput {
|
|
|
1428
1428
|
* <p>A list of endpoints for the specified signaling channel.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
ResourceEndpointList?: ResourceEndpointListItem[];
|
|
1431
|
+
ResourceEndpointList?: ResourceEndpointListItem[] | undefined;
|
|
1432
1432
|
}
|
|
1433
1433
|
/**
|
|
1434
1434
|
* <p>The format of the <code>StreamARN</code> is invalid.</p>
|
|
@@ -1437,7 +1437,7 @@ export interface GetSignalingChannelEndpointOutput {
|
|
|
1437
1437
|
export declare class InvalidResourceFormatException extends __BaseException {
|
|
1438
1438
|
readonly name: "InvalidResourceFormatException";
|
|
1439
1439
|
readonly $fault: "client";
|
|
1440
|
-
Message?: string;
|
|
1440
|
+
Message?: string | undefined;
|
|
1441
1441
|
/**
|
|
1442
1442
|
* @internal
|
|
1443
1443
|
*/
|
|
@@ -1456,13 +1456,13 @@ export interface ListEdgeAgentConfigurationsInput {
|
|
|
1456
1456
|
* <p>The maximum number of edge configurations to return in the response. The default is 5.</p>
|
|
1457
1457
|
* @public
|
|
1458
1458
|
*/
|
|
1459
|
-
MaxResults?: number;
|
|
1459
|
+
MaxResults?: number | undefined;
|
|
1460
1460
|
/**
|
|
1461
1461
|
* <p>If you specify this parameter, when the result of a <code>ListEdgeAgentConfigurations</code> operation is truncated, the call returns the <code>NextToken</code> in the response. To get another batch of edge configurations, provide this token in your next request.
|
|
1462
1462
|
* </p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
NextToken?: string;
|
|
1465
|
+
NextToken?: string | undefined;
|
|
1466
1466
|
}
|
|
1467
1467
|
/**
|
|
1468
1468
|
* <p>A description of a single stream's edge configuration.</p>
|
|
@@ -1473,39 +1473,39 @@ export interface ListEdgeAgentConfigurationsEdgeConfig {
|
|
|
1473
1473
|
* <p>The name of the stream.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
StreamName?: string;
|
|
1476
|
+
StreamName?: string | undefined;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
1479
1479
|
* @public
|
|
1480
1480
|
*/
|
|
1481
|
-
StreamARN?: string;
|
|
1481
|
+
StreamARN?: string | undefined;
|
|
1482
1482
|
/**
|
|
1483
1483
|
* <p>The timestamp when the stream first created the edge config.</p>
|
|
1484
1484
|
* @public
|
|
1485
1485
|
*/
|
|
1486
|
-
CreationTime?: Date;
|
|
1486
|
+
CreationTime?: Date | undefined;
|
|
1487
1487
|
/**
|
|
1488
1488
|
* <p>The timestamp when the stream last updated the edge config.</p>
|
|
1489
1489
|
* @public
|
|
1490
1490
|
*/
|
|
1491
|
-
LastUpdatedTime?: Date;
|
|
1491
|
+
LastUpdatedTime?: Date | undefined;
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>The current sync status of the stream's edge configuration.</p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
SyncStatus?: SyncStatus;
|
|
1496
|
+
SyncStatus?: SyncStatus | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* <p>A description of the generated failure status.</p>
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
FailedStatusDetails?: string;
|
|
1501
|
+
FailedStatusDetails?: string | undefined;
|
|
1502
1502
|
/**
|
|
1503
1503
|
* <p>A description of the stream's edge configuration that will be used to sync
|
|
1504
1504
|
* with the Edge Agent IoT Greengrass component. The Edge Agent component will run
|
|
1505
1505
|
* on an IoT Hub Device setup at your premise.</p>
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
EdgeConfig?: EdgeConfig;
|
|
1508
|
+
EdgeConfig?: EdgeConfig | undefined;
|
|
1509
1509
|
}
|
|
1510
1510
|
/**
|
|
1511
1511
|
* @public
|
|
@@ -1515,12 +1515,12 @@ export interface ListEdgeAgentConfigurationsOutput {
|
|
|
1515
1515
|
* <p>A description of a single stream's edge configuration.</p>
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
|
-
EdgeConfigs?: ListEdgeAgentConfigurationsEdgeConfig[];
|
|
1518
|
+
EdgeConfigs?: ListEdgeAgentConfigurationsEdgeConfig[] | undefined;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* <p>If the response is truncated, the call returns this element with a given token. To get the next batch of edge configurations, use this token in your next request.</p>
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
NextToken?: string;
|
|
1523
|
+
NextToken?: string | undefined;
|
|
1524
1524
|
}
|
|
1525
1525
|
/**
|
|
1526
1526
|
* @public
|
|
@@ -1530,19 +1530,19 @@ export interface ListSignalingChannelsInput {
|
|
|
1530
1530
|
* <p>The maximum number of channels to return in the response. The default is 500.</p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
MaxResults?: number;
|
|
1533
|
+
MaxResults?: number | undefined;
|
|
1534
1534
|
/**
|
|
1535
1535
|
* <p>If you specify this parameter, when the result of a <code>ListSignalingChannels</code>
|
|
1536
1536
|
* operation is truncated, the call returns the <code>NextToken</code> in the response. To
|
|
1537
1537
|
* get another batch of channels, provide this token in your next request.</p>
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
|
-
NextToken?: string;
|
|
1540
|
+
NextToken?: string | undefined;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* <p>Optional: Returns only the channels that satisfy a specific condition.</p>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
ChannelNameCondition?: ChannelNameCondition;
|
|
1545
|
+
ChannelNameCondition?: ChannelNameCondition | undefined;
|
|
1546
1546
|
}
|
|
1547
1547
|
/**
|
|
1548
1548
|
* @public
|
|
@@ -1552,13 +1552,13 @@ export interface ListSignalingChannelsOutput {
|
|
|
1552
1552
|
* <p>An array of <code>ChannelInfo</code> objects.</p>
|
|
1553
1553
|
* @public
|
|
1554
1554
|
*/
|
|
1555
|
-
ChannelInfoList?: ChannelInfo[];
|
|
1555
|
+
ChannelInfoList?: ChannelInfo[] | undefined;
|
|
1556
1556
|
/**
|
|
1557
1557
|
* <p>If the response is truncated, the call returns this element with a token. To get the
|
|
1558
1558
|
* next batch of streams, use this token in your next request.</p>
|
|
1559
1559
|
* @public
|
|
1560
1560
|
*/
|
|
1561
|
-
NextToken?: string;
|
|
1561
|
+
NextToken?: string | undefined;
|
|
1562
1562
|
}
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>Specifies the condition that streams must satisfy to be returned when you list
|
|
@@ -1573,12 +1573,12 @@ export interface StreamNameCondition {
|
|
|
1573
1573
|
* operator, which finds streams whose names start with a given prefix.</p>
|
|
1574
1574
|
* @public
|
|
1575
1575
|
*/
|
|
1576
|
-
ComparisonOperator?: ComparisonOperator;
|
|
1576
|
+
ComparisonOperator?: ComparisonOperator | undefined;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* <p>A value to compare.</p>
|
|
1579
1579
|
* @public
|
|
1580
1580
|
*/
|
|
1581
|
-
ComparisonValue?: string;
|
|
1581
|
+
ComparisonValue?: string | undefined;
|
|
1582
1582
|
}
|
|
1583
1583
|
/**
|
|
1584
1584
|
* @public
|
|
@@ -1589,20 +1589,20 @@ export interface ListStreamsInput {
|
|
|
1589
1589
|
* 10,000.</p>
|
|
1590
1590
|
* @public
|
|
1591
1591
|
*/
|
|
1592
|
-
MaxResults?: number;
|
|
1592
|
+
MaxResults?: number | undefined;
|
|
1593
1593
|
/**
|
|
1594
1594
|
* <p>If you specify this parameter, when the result of a <code>ListStreams</code>
|
|
1595
1595
|
* operation is truncated, the call returns the <code>NextToken</code> in the response. To
|
|
1596
1596
|
* get another batch of streams, provide this token in your next request.</p>
|
|
1597
1597
|
* @public
|
|
1598
1598
|
*/
|
|
1599
|
-
NextToken?: string;
|
|
1599
|
+
NextToken?: string | undefined;
|
|
1600
1600
|
/**
|
|
1601
1601
|
* <p>Optional: Returns only streams that satisfy a specific condition. Currently, you
|
|
1602
1602
|
* can specify only the prefix of a stream name as a condition. </p>
|
|
1603
1603
|
* @public
|
|
1604
1604
|
*/
|
|
1605
|
-
StreamNameCondition?: StreamNameCondition;
|
|
1605
|
+
StreamNameCondition?: StreamNameCondition | undefined;
|
|
1606
1606
|
}
|
|
1607
1607
|
/**
|
|
1608
1608
|
* @public
|
|
@@ -1612,13 +1612,13 @@ export interface ListStreamsOutput {
|
|
|
1612
1612
|
* <p>An array of <code>StreamInfo</code> objects.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
StreamInfoList?: StreamInfo[];
|
|
1615
|
+
StreamInfoList?: StreamInfo[] | undefined;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* <p>If the response is truncated, the call returns this element with a token. To get
|
|
1618
1618
|
* the next batch of streams, use this token in your next request. </p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
NextToken?: string;
|
|
1621
|
+
NextToken?: string | undefined;
|
|
1622
1622
|
}
|
|
1623
1623
|
/**
|
|
1624
1624
|
* @public
|
|
@@ -1630,7 +1630,7 @@ export interface ListTagsForResourceInput {
|
|
|
1630
1630
|
* fetch the next batch of tags. </p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
NextToken?: string;
|
|
1633
|
+
NextToken?: string | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* <p>The Amazon Resource Name (ARN) of the signaling channel for which you want to list
|
|
1636
1636
|
* tags.</p>
|
|
@@ -1648,12 +1648,12 @@ export interface ListTagsForResourceOutput {
|
|
|
1648
1648
|
* fetch the next set of tags. </p>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
NextToken?: string;
|
|
1651
|
+
NextToken?: string | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* <p>A map of tag keys and values associated with the specified signaling channel.</p>
|
|
1654
1654
|
* @public
|
|
1655
1655
|
*/
|
|
1656
|
-
Tags?: Record<string, string
|
|
1656
|
+
Tags?: Record<string, string> | undefined;
|
|
1657
1657
|
}
|
|
1658
1658
|
/**
|
|
1659
1659
|
* @public
|
|
@@ -1665,18 +1665,18 @@ export interface ListTagsForStreamInput {
|
|
|
1665
1665
|
* fetch the next batch of tags.</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
NextToken?: string;
|
|
1668
|
+
NextToken?: string | undefined;
|
|
1669
1669
|
/**
|
|
1670
1670
|
* <p>The Amazon Resource Name (ARN) of the stream that you want to list tags
|
|
1671
1671
|
* for.</p>
|
|
1672
1672
|
* @public
|
|
1673
1673
|
*/
|
|
1674
|
-
StreamARN?: string;
|
|
1674
|
+
StreamARN?: string | undefined;
|
|
1675
1675
|
/**
|
|
1676
1676
|
* <p>The name of the stream that you want to list tags for.</p>
|
|
1677
1677
|
* @public
|
|
1678
1678
|
*/
|
|
1679
|
-
StreamName?: string;
|
|
1679
|
+
StreamName?: string | undefined;
|
|
1680
1680
|
}
|
|
1681
1681
|
/**
|
|
1682
1682
|
* @public
|
|
@@ -1688,12 +1688,12 @@ export interface ListTagsForStreamOutput {
|
|
|
1688
1688
|
* the next set of tags.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
NextToken?: string;
|
|
1691
|
+
NextToken?: string | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* <p>A map of tag keys and values associated with the specified stream.</p>
|
|
1694
1694
|
* @public
|
|
1695
1695
|
*/
|
|
1696
|
-
Tags?: Record<string, string
|
|
1696
|
+
Tags?: Record<string, string> | undefined;
|
|
1697
1697
|
}
|
|
1698
1698
|
/**
|
|
1699
1699
|
* <p>The Stream data retention in hours is equal to zero.</p>
|
|
@@ -1702,7 +1702,7 @@ export interface ListTagsForStreamOutput {
|
|
|
1702
1702
|
export declare class NoDataRetentionException extends __BaseException {
|
|
1703
1703
|
readonly name: "NoDataRetentionException";
|
|
1704
1704
|
readonly $fault: "client";
|
|
1705
|
-
Message?: string;
|
|
1705
|
+
Message?: string | undefined;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* @internal
|
|
1708
1708
|
*/
|
|
@@ -1717,13 +1717,13 @@ export interface StartEdgeConfigurationUpdateInput {
|
|
|
1717
1717
|
* or the <code>StreamARN</code>.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
StreamName?: string;
|
|
1720
|
+
StreamName?: string | undefined;
|
|
1721
1721
|
/**
|
|
1722
1722
|
* <p> The Amazon Resource Name (ARN) of the stream. Specify either the
|
|
1723
1723
|
* <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
1724
1724
|
* @public
|
|
1725
1725
|
*/
|
|
1726
|
-
StreamARN?: string;
|
|
1726
|
+
StreamARN?: string | undefined;
|
|
1727
1727
|
/**
|
|
1728
1728
|
* <p>The edge configuration details required to invoke the update process.</p>
|
|
1729
1729
|
* @public
|
|
@@ -1738,41 +1738,41 @@ export interface StartEdgeConfigurationUpdateOutput {
|
|
|
1738
1738
|
* <p>The name of the stream from which the edge configuration was updated.</p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
StreamName?: string;
|
|
1741
|
+
StreamName?: string | undefined;
|
|
1742
1742
|
/**
|
|
1743
1743
|
* <p>The Amazon Resource Name (ARN) of the stream.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
StreamARN?: string;
|
|
1746
|
+
StreamARN?: string | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>The timestamp at which a stream’s edge configuration was first created.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
CreationTime?: Date;
|
|
1751
|
+
CreationTime?: Date | undefined;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* <p>The timestamp at which a stream’s edge configuration was last updated.</p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
LastUpdatedTime?: Date;
|
|
1756
|
+
LastUpdatedTime?: Date | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p> The current sync status of the stream's edge configuration. When you invoke this API, the sync
|
|
1759
1759
|
* status will be set to the <code>SYNCING</code> state. Use the <code>DescribeEdgeConfiguration</code> API
|
|
1760
1760
|
* to get the latest status of the edge configuration.</p>
|
|
1761
1761
|
* @public
|
|
1762
1762
|
*/
|
|
1763
|
-
SyncStatus?: SyncStatus;
|
|
1763
|
+
SyncStatus?: SyncStatus | undefined;
|
|
1764
1764
|
/**
|
|
1765
1765
|
* <p>A description of the generated failure status.</p>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
FailedStatusDetails?: string;
|
|
1768
|
+
FailedStatusDetails?: string | undefined;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>A description of the stream's edge configuration that will be used to sync
|
|
1771
1771
|
* with the Edge Agent IoT Greengrass component. The Edge Agent component will run
|
|
1772
1772
|
* on an IoT Hub Device setup at your premise.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
EdgeConfig?: EdgeConfig;
|
|
1775
|
+
EdgeConfig?: EdgeConfig | undefined;
|
|
1776
1776
|
}
|
|
1777
1777
|
/**
|
|
1778
1778
|
* @public
|
|
@@ -1805,12 +1805,12 @@ export interface TagStreamInput {
|
|
|
1805
1805
|
* to.</p>
|
|
1806
1806
|
* @public
|
|
1807
1807
|
*/
|
|
1808
|
-
StreamARN?: string;
|
|
1808
|
+
StreamARN?: string | undefined;
|
|
1809
1809
|
/**
|
|
1810
1810
|
* <p>The name of the stream that you want to add the tag or tags to.</p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
StreamName?: string;
|
|
1813
|
+
StreamName?: string | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>A list of tags to associate with the specified stream. Each tag is a key-value pair
|
|
1816
1816
|
* (the value is optional).</p>
|
|
@@ -1853,12 +1853,12 @@ export interface UntagStreamInput {
|
|
|
1853
1853
|
* from.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
StreamARN?: string;
|
|
1856
|
+
StreamARN?: string | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>The name of the stream that you want to remove tags from.</p>
|
|
1859
1859
|
* @public
|
|
1860
1860
|
*/
|
|
1861
|
-
StreamName?: string;
|
|
1861
|
+
StreamName?: string | undefined;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* <p>A list of the keys of the tags that you want to remove.</p>
|
|
1864
1864
|
* @public
|
|
@@ -1890,13 +1890,13 @@ export interface UpdateDataRetentionInput {
|
|
|
1890
1890
|
* <p>The name of the stream whose retention period you want to change.</p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
StreamName?: string;
|
|
1893
|
+
StreamName?: string | undefined;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* <p>The Amazon Resource Name (ARN) of the stream whose retention period you want to
|
|
1896
1896
|
* change.</p>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
StreamARN?: string;
|
|
1899
|
+
StreamARN?: string | undefined;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* <p>The version of the stream whose retention period you want to change. To get the
|
|
1902
1902
|
* version, call either the <code>DescribeStream</code> or the <code>ListStreams</code>
|
|
@@ -1929,18 +1929,18 @@ export interface UpdateImageGenerationConfigurationInput {
|
|
|
1929
1929
|
* <p>The name of the stream from which to update the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
StreamName?: string;
|
|
1932
|
+
StreamName?: string | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the image generation configuration. You must specify either the <code>StreamName</code>
|
|
1935
1935
|
* or the <code>StreamARN</code>.</p>
|
|
1936
1936
|
* @public
|
|
1937
1937
|
*/
|
|
1938
|
-
StreamARN?: string;
|
|
1938
|
+
StreamARN?: string | undefined;
|
|
1939
1939
|
/**
|
|
1940
1940
|
* <p>The structure that contains the information required for the KVS images delivery. If the structure is null, the configuration will be deleted from the stream.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
ImageGenerationConfiguration?: ImageGenerationConfiguration;
|
|
1943
|
+
ImageGenerationConfiguration?: ImageGenerationConfiguration | undefined;
|
|
1944
1944
|
}
|
|
1945
1945
|
/**
|
|
1946
1946
|
* @public
|
|
@@ -1975,17 +1975,17 @@ export interface UpdateNotificationConfigurationInput {
|
|
|
1975
1975
|
* <p>The name of the stream from which to update the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
StreamName?: string;
|
|
1978
|
+
StreamName?: string | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
StreamARN?: string;
|
|
1983
|
+
StreamARN?: string | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* <p>The structure containing the information required for notifications. If the structure is null, the configuration will be deleted from the stream.</p>
|
|
1986
1986
|
* @public
|
|
1987
1987
|
*/
|
|
1988
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
1988
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
1989
1989
|
}
|
|
1990
1990
|
/**
|
|
1991
1991
|
* @public
|
|
@@ -2012,7 +2012,7 @@ export interface UpdateSignalingChannelInput {
|
|
|
2012
2012
|
* the signaling channel that you want to update. </p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
SingleMasterConfiguration?: SingleMasterConfiguration;
|
|
2015
|
+
SingleMasterConfiguration?: SingleMasterConfiguration | undefined;
|
|
2016
2016
|
}
|
|
2017
2017
|
/**
|
|
2018
2018
|
* @public
|
|
@@ -2029,12 +2029,12 @@ export interface UpdateStreamInput {
|
|
|
2029
2029
|
* account and region.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
StreamName?: string;
|
|
2032
|
+
StreamName?: string | undefined;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* <p>The ARN of the stream whose metadata you want to update.</p>
|
|
2035
2035
|
* @public
|
|
2036
2036
|
*/
|
|
2037
|
-
StreamARN?: string;
|
|
2037
|
+
StreamARN?: string | undefined;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* <p>The version of the stream whose metadata you want to update.</p>
|
|
2040
2040
|
* @public
|
|
@@ -2048,7 +2048,7 @@ export interface UpdateStreamInput {
|
|
|
2048
2048
|
* </note>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
DeviceName?: string;
|
|
2051
|
+
DeviceName?: string | undefined;
|
|
2052
2052
|
/**
|
|
2053
2053
|
* <p>The stream's media type. Use <code>MediaType</code> to specify the type of content
|
|
2054
2054
|
* that the stream contains to the consumers of the stream. For more information about
|
|
@@ -2060,7 +2060,7 @@ export interface UpdateStreamInput {
|
|
|
2060
2060
|
* <code>MediaType</code>.</p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
MediaType?: string;
|
|
2063
|
+
MediaType?: string | undefined;
|
|
2064
2064
|
}
|
|
2065
2065
|
/**
|
|
2066
2066
|
* @public
|