@aws-sdk/client-medialive 3.975.0 → 3.978.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 +227 -165
- package/dist-es/MediaLive.js +95 -1
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +13 -6
- package/dist-types/MediaLive.d.ts +295 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +10 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +5 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +5 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +5 -0
- package/dist-types/commands/StartChannelCommand.d.ts +5 -0
- package/dist-types/commands/StopChannelCommand.d.ts +5 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +5 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +10 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +8 -1
- package/dist-types/models/models_1.d.ts +21 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/MediaLive.d.ts +366 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +5 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +17 -17
package/dist-es/MediaLive.js
CHANGED
|
@@ -123,6 +123,51 @@ import { UpdateNodeStateCommand, } from "./commands/UpdateNodeStateCommand";
|
|
|
123
123
|
import { UpdateReservationCommand, } from "./commands/UpdateReservationCommand";
|
|
124
124
|
import { UpdateSdiSourceCommand, } from "./commands/UpdateSdiSourceCommand";
|
|
125
125
|
import { MediaLiveClient } from "./MediaLiveClient";
|
|
126
|
+
import { paginateDescribeSchedule } from "./pagination/DescribeSchedulePaginator";
|
|
127
|
+
import { paginateListAlerts } from "./pagination/ListAlertsPaginator";
|
|
128
|
+
import { paginateListChannelPlacementGroups } from "./pagination/ListChannelPlacementGroupsPaginator";
|
|
129
|
+
import { paginateListChannels } from "./pagination/ListChannelsPaginator";
|
|
130
|
+
import { paginateListCloudWatchAlarmTemplateGroups } from "./pagination/ListCloudWatchAlarmTemplateGroupsPaginator";
|
|
131
|
+
import { paginateListCloudWatchAlarmTemplates } from "./pagination/ListCloudWatchAlarmTemplatesPaginator";
|
|
132
|
+
import { paginateListClusterAlerts } from "./pagination/ListClusterAlertsPaginator";
|
|
133
|
+
import { paginateListClusters } from "./pagination/ListClustersPaginator";
|
|
134
|
+
import { paginateListEventBridgeRuleTemplateGroups } from "./pagination/ListEventBridgeRuleTemplateGroupsPaginator";
|
|
135
|
+
import { paginateListEventBridgeRuleTemplates } from "./pagination/ListEventBridgeRuleTemplatesPaginator";
|
|
136
|
+
import { paginateListInputDevices } from "./pagination/ListInputDevicesPaginator";
|
|
137
|
+
import { paginateListInputDeviceTransfers } from "./pagination/ListInputDeviceTransfersPaginator";
|
|
138
|
+
import { paginateListInputSecurityGroups } from "./pagination/ListInputSecurityGroupsPaginator";
|
|
139
|
+
import { paginateListInputs } from "./pagination/ListInputsPaginator";
|
|
140
|
+
import { paginateListMultiplexAlerts } from "./pagination/ListMultiplexAlertsPaginator";
|
|
141
|
+
import { paginateListMultiplexes } from "./pagination/ListMultiplexesPaginator";
|
|
142
|
+
import { paginateListMultiplexPrograms } from "./pagination/ListMultiplexProgramsPaginator";
|
|
143
|
+
import { paginateListNetworks } from "./pagination/ListNetworksPaginator";
|
|
144
|
+
import { paginateListNodes } from "./pagination/ListNodesPaginator";
|
|
145
|
+
import { paginateListOfferings } from "./pagination/ListOfferingsPaginator";
|
|
146
|
+
import { paginateListReservations } from "./pagination/ListReservationsPaginator";
|
|
147
|
+
import { paginateListSdiSources } from "./pagination/ListSdiSourcesPaginator";
|
|
148
|
+
import { paginateListSignalMaps } from "./pagination/ListSignalMapsPaginator";
|
|
149
|
+
import { waitUntilChannelCreated } from "./waiters/waitForChannelCreated";
|
|
150
|
+
import { waitUntilChannelDeleted } from "./waiters/waitForChannelDeleted";
|
|
151
|
+
import { waitUntilChannelPlacementGroupAssigned } from "./waiters/waitForChannelPlacementGroupAssigned";
|
|
152
|
+
import { waitUntilChannelPlacementGroupDeleted } from "./waiters/waitForChannelPlacementGroupDeleted";
|
|
153
|
+
import { waitUntilChannelPlacementGroupUnassigned } from "./waiters/waitForChannelPlacementGroupUnassigned";
|
|
154
|
+
import { waitUntilChannelRunning } from "./waiters/waitForChannelRunning";
|
|
155
|
+
import { waitUntilChannelStopped } from "./waiters/waitForChannelStopped";
|
|
156
|
+
import { waitUntilClusterCreated } from "./waiters/waitForClusterCreated";
|
|
157
|
+
import { waitUntilClusterDeleted } from "./waiters/waitForClusterDeleted";
|
|
158
|
+
import { waitUntilInputAttached } from "./waiters/waitForInputAttached";
|
|
159
|
+
import { waitUntilInputDeleted } from "./waiters/waitForInputDeleted";
|
|
160
|
+
import { waitUntilInputDetached } from "./waiters/waitForInputDetached";
|
|
161
|
+
import { waitUntilMultiplexCreated } from "./waiters/waitForMultiplexCreated";
|
|
162
|
+
import { waitUntilMultiplexDeleted } from "./waiters/waitForMultiplexDeleted";
|
|
163
|
+
import { waitUntilMultiplexRunning } from "./waiters/waitForMultiplexRunning";
|
|
164
|
+
import { waitUntilMultiplexStopped } from "./waiters/waitForMultiplexStopped";
|
|
165
|
+
import { waitUntilNodeDeregistered } from "./waiters/waitForNodeDeregistered";
|
|
166
|
+
import { waitUntilNodeRegistered } from "./waiters/waitForNodeRegistered";
|
|
167
|
+
import { waitUntilSignalMapCreated } from "./waiters/waitForSignalMapCreated";
|
|
168
|
+
import { waitUntilSignalMapMonitorDeleted } from "./waiters/waitForSignalMapMonitorDeleted";
|
|
169
|
+
import { waitUntilSignalMapMonitorDeployed } from "./waiters/waitForSignalMapMonitorDeployed";
|
|
170
|
+
import { waitUntilSignalMapUpdated } from "./waiters/waitForSignalMapUpdated";
|
|
126
171
|
const commands = {
|
|
127
172
|
AcceptInputDeviceTransferCommand,
|
|
128
173
|
BatchDeleteCommand,
|
|
@@ -248,6 +293,55 @@ const commands = {
|
|
|
248
293
|
UpdateReservationCommand,
|
|
249
294
|
UpdateSdiSourceCommand,
|
|
250
295
|
};
|
|
296
|
+
const paginators = {
|
|
297
|
+
paginateDescribeSchedule,
|
|
298
|
+
paginateListAlerts,
|
|
299
|
+
paginateListChannelPlacementGroups,
|
|
300
|
+
paginateListChannels,
|
|
301
|
+
paginateListCloudWatchAlarmTemplateGroups,
|
|
302
|
+
paginateListCloudWatchAlarmTemplates,
|
|
303
|
+
paginateListClusterAlerts,
|
|
304
|
+
paginateListClusters,
|
|
305
|
+
paginateListEventBridgeRuleTemplateGroups,
|
|
306
|
+
paginateListEventBridgeRuleTemplates,
|
|
307
|
+
paginateListInputDevices,
|
|
308
|
+
paginateListInputDeviceTransfers,
|
|
309
|
+
paginateListInputs,
|
|
310
|
+
paginateListInputSecurityGroups,
|
|
311
|
+
paginateListMultiplexAlerts,
|
|
312
|
+
paginateListMultiplexes,
|
|
313
|
+
paginateListMultiplexPrograms,
|
|
314
|
+
paginateListNetworks,
|
|
315
|
+
paginateListNodes,
|
|
316
|
+
paginateListOfferings,
|
|
317
|
+
paginateListReservations,
|
|
318
|
+
paginateListSdiSources,
|
|
319
|
+
paginateListSignalMaps,
|
|
320
|
+
};
|
|
321
|
+
const waiters = {
|
|
322
|
+
waitUntilChannelCreated,
|
|
323
|
+
waitUntilChannelDeleted,
|
|
324
|
+
waitUntilChannelRunning,
|
|
325
|
+
waitUntilChannelStopped,
|
|
326
|
+
waitUntilChannelPlacementGroupAssigned,
|
|
327
|
+
waitUntilChannelPlacementGroupDeleted,
|
|
328
|
+
waitUntilChannelPlacementGroupUnassigned,
|
|
329
|
+
waitUntilClusterCreated,
|
|
330
|
+
waitUntilClusterDeleted,
|
|
331
|
+
waitUntilInputAttached,
|
|
332
|
+
waitUntilInputDeleted,
|
|
333
|
+
waitUntilInputDetached,
|
|
334
|
+
waitUntilMultiplexCreated,
|
|
335
|
+
waitUntilMultiplexDeleted,
|
|
336
|
+
waitUntilMultiplexRunning,
|
|
337
|
+
waitUntilMultiplexStopped,
|
|
338
|
+
waitUntilNodeDeregistered,
|
|
339
|
+
waitUntilNodeRegistered,
|
|
340
|
+
waitUntilSignalMapCreated,
|
|
341
|
+
waitUntilSignalMapMonitorDeleted,
|
|
342
|
+
waitUntilSignalMapMonitorDeployed,
|
|
343
|
+
waitUntilSignalMapUpdated,
|
|
344
|
+
};
|
|
251
345
|
export class MediaLive extends MediaLiveClient {
|
|
252
346
|
}
|
|
253
|
-
createAggregatedClient(commands, MediaLive);
|
|
347
|
+
createAggregatedClient(commands, MediaLive, { paginators, waiters });
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1335,6 +1335,10 @@ export const TimecodeBurninPosition = {
|
|
|
1335
1335
|
TOP_LEFT: "TOP_LEFT",
|
|
1336
1336
|
TOP_RIGHT: "TOP_RIGHT",
|
|
1337
1337
|
};
|
|
1338
|
+
export const Av1TimecodeInsertionBehavior = {
|
|
1339
|
+
DISABLED: "DISABLED",
|
|
1340
|
+
METADATA_OBU: "METADATA_OBU",
|
|
1341
|
+
};
|
|
1338
1342
|
export const FrameCaptureIntervalUnit = {
|
|
1339
1343
|
MILLISECONDS: "MILLISECONDS",
|
|
1340
1344
|
SECONDS: "SECONDS",
|
|
@@ -360,6 +360,7 @@ const _DIes = "DescribeInput";
|
|
|
360
360
|
const _DL = "DrcLine";
|
|
361
361
|
const _DLCS = "DescribeLinkedChannelSettings";
|
|
362
362
|
const _DLH = "DefaultLineHeight";
|
|
363
|
+
const _DLS = "DisabledLockingSettings";
|
|
363
364
|
const _DM = "DeleteMultiplex";
|
|
364
365
|
const _DMP = "DeleteMultiplexProgram";
|
|
365
366
|
const _DMPR = "DeleteMultiplexProgramRequest";
|
|
@@ -1636,6 +1637,7 @@ const _dFen = "denoiseFilter";
|
|
|
1636
1637
|
const _dI = "distributorId";
|
|
1637
1638
|
const _dL = "drcLine";
|
|
1638
1639
|
const _dLH = "defaultLineHeight";
|
|
1640
|
+
const _dLS = "disabledLockingSettings";
|
|
1639
1641
|
const _dNS = "dvbNitSettings";
|
|
1640
1642
|
const _dP = "drcProfile";
|
|
1641
1643
|
const _dR = "defaultRoute";
|
|
@@ -2592,8 +2594,8 @@ export var Av1ColorSpaceSettings$ = [3, n0, _ACSS,
|
|
|
2592
2594
|
];
|
|
2593
2595
|
export var Av1Settings$ = [3, n0, _ASv,
|
|
2594
2596
|
0,
|
|
2595
|
-
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA],
|
|
2596
|
-
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }]], 2
|
|
2597
|
+
[_FD, _FN, _ASf, _BS, _CSS, _FA, _GS, _GSU, _L, _LARC, _MB, _MII, _PD, _PN, _QQL, _SCD, _TBS, _B, _RCM, _MBi, _SA, _TA, _TI],
|
|
2598
|
+
[[1, { [_jN]: _fD }], [1, { [_jN]: _fN }], [0, { [_jN]: _aSf }], [1, { [_jN]: _bS }], [() => Av1ColorSpaceSettings$, { [_jN]: _cSS }], [0, { [_jN]: _fA }], [1, { [_jN]: _gS }], [0, { [_jN]: _gSU }], [0, { [_jN]: _l }], [0, { [_jN]: _lARC }], [1, { [_jN]: _mB }], [1, { [_jN]: _mII }], [1, { [_jN]: _pD }], [1, { [_jN]: _pN }], [1, { [_jN]: _qQL }], [0, { [_jN]: _sCD }], [() => TimecodeBurninSettings$, { [_jN]: _tBS }], [1, { [_jN]: _b }], [0, { [_jN]: _rCM }], [1, { [_jN]: _mBi }], [0, { [_jN]: _sA }], [0, { [_jN]: _tA }], [0, { [_jN]: _tI }]], 2
|
|
2597
2599
|
];
|
|
2598
2600
|
export var AvailBlanking$ = [3, n0, _AB,
|
|
2599
2601
|
0,
|
|
@@ -3393,6 +3395,11 @@ export var DescribeThumbnailsResponse$ = [3, n0, _DTRes,
|
|
|
3393
3395
|
[_TD],
|
|
3394
3396
|
[[() => __listOfThumbnailDetail, { [_jN]: _tD }]]
|
|
3395
3397
|
];
|
|
3398
|
+
export var DisabledLockingSettings$ = [3, n0, _DLS,
|
|
3399
|
+
0,
|
|
3400
|
+
[_CEu],
|
|
3401
|
+
[[0, { [_jN]: _cE }]]
|
|
3402
|
+
];
|
|
3396
3403
|
export var DolbyVision81Settings$ = [3, n0, _DVS,
|
|
3397
3404
|
0,
|
|
3398
3405
|
[],
|
|
@@ -4529,8 +4536,8 @@ export var OutputLocationRef$ = [3, n0, _OLR,
|
|
|
4529
4536
|
];
|
|
4530
4537
|
export var OutputLockingSettings$ = [3, n0, _OLS,
|
|
4531
4538
|
0,
|
|
4532
|
-
[_ELS, _PLS],
|
|
4533
|
-
[[() => EpochLockingSettings$, { [_jN]: _eLS }], [() => PipelineLockingSettings$, { [_jN]: _pLS }]]
|
|
4539
|
+
[_ELS, _PLS, _DLS],
|
|
4540
|
+
[[() => EpochLockingSettings$, { [_jN]: _eLS }], [() => PipelineLockingSettings$, { [_jN]: _pLS }], [() => DisabledLockingSettings$, { [_jN]: _dLS }]]
|
|
4534
4541
|
];
|
|
4535
4542
|
export var OutputSettings$ = [3, n0, _OSutp,
|
|
4536
4543
|
0,
|
|
@@ -4554,8 +4561,8 @@ export var PipelineDetail$ = [3, n0, _PDip,
|
|
|
4554
4561
|
];
|
|
4555
4562
|
export var PipelineLockingSettings$ = [3, n0, _PLS,
|
|
4556
4563
|
0,
|
|
4557
|
-
[_PLM],
|
|
4558
|
-
[[0, { [_jN]: _pLM }]]
|
|
4564
|
+
[_PLM, _CEu],
|
|
4565
|
+
[[0, { [_jN]: _pLM }], [0, { [_jN]: _cE }]]
|
|
4559
4566
|
];
|
|
4560
4567
|
export var PipelinePauseStateSettings$ = [3, n0, _PPSS,
|
|
4561
4568
|
0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AcceptInputDeviceTransferCommandInput, AcceptInputDeviceTransferCommandOutput } from "./commands/AcceptInputDeviceTransferCommand";
|
|
3
4
|
import { BatchDeleteCommandInput, BatchDeleteCommandOutput } from "./commands/BatchDeleteCommand";
|
|
4
5
|
import { BatchStartCommandInput, BatchStartCommandOutput } from "./commands/BatchStartCommand";
|
|
@@ -890,6 +891,299 @@ export interface MediaLive {
|
|
|
890
891
|
updateSdiSource(args: UpdateSdiSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSdiSourceCommandOutput>;
|
|
891
892
|
updateSdiSource(args: UpdateSdiSourceCommandInput, cb: (err: any, data?: UpdateSdiSourceCommandOutput) => void): void;
|
|
892
893
|
updateSdiSource(args: UpdateSdiSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSdiSourceCommandOutput) => void): void;
|
|
894
|
+
/**
|
|
895
|
+
* @see {@link DescribeScheduleCommand}
|
|
896
|
+
* @param args - command input.
|
|
897
|
+
* @param paginationConfig - optional pagination config.
|
|
898
|
+
* @returns AsyncIterable of {@link DescribeScheduleCommandOutput}.
|
|
899
|
+
*/
|
|
900
|
+
paginateDescribeSchedule(args: DescribeScheduleCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeScheduleCommandOutput>;
|
|
901
|
+
/**
|
|
902
|
+
* @see {@link ListAlertsCommand}
|
|
903
|
+
* @param args - command input.
|
|
904
|
+
* @param paginationConfig - optional pagination config.
|
|
905
|
+
* @returns AsyncIterable of {@link ListAlertsCommandOutput}.
|
|
906
|
+
*/
|
|
907
|
+
paginateListAlerts(args: ListAlertsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAlertsCommandOutput>;
|
|
908
|
+
/**
|
|
909
|
+
* @see {@link ListChannelPlacementGroupsCommand}
|
|
910
|
+
* @param args - command input.
|
|
911
|
+
* @param paginationConfig - optional pagination config.
|
|
912
|
+
* @returns AsyncIterable of {@link ListChannelPlacementGroupsCommandOutput}.
|
|
913
|
+
*/
|
|
914
|
+
paginateListChannelPlacementGroups(args: ListChannelPlacementGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelPlacementGroupsCommandOutput>;
|
|
915
|
+
/**
|
|
916
|
+
* @see {@link ListChannelsCommand}
|
|
917
|
+
* @param args - command input.
|
|
918
|
+
* @param paginationConfig - optional pagination config.
|
|
919
|
+
* @returns AsyncIterable of {@link ListChannelsCommandOutput}.
|
|
920
|
+
*/
|
|
921
|
+
paginateListChannels(args?: ListChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelsCommandOutput>;
|
|
922
|
+
/**
|
|
923
|
+
* @see {@link ListCloudWatchAlarmTemplateGroupsCommand}
|
|
924
|
+
* @param args - command input.
|
|
925
|
+
* @param paginationConfig - optional pagination config.
|
|
926
|
+
* @returns AsyncIterable of {@link ListCloudWatchAlarmTemplateGroupsCommandOutput}.
|
|
927
|
+
*/
|
|
928
|
+
paginateListCloudWatchAlarmTemplateGroups(args?: ListCloudWatchAlarmTemplateGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudWatchAlarmTemplateGroupsCommandOutput>;
|
|
929
|
+
/**
|
|
930
|
+
* @see {@link ListCloudWatchAlarmTemplatesCommand}
|
|
931
|
+
* @param args - command input.
|
|
932
|
+
* @param paginationConfig - optional pagination config.
|
|
933
|
+
* @returns AsyncIterable of {@link ListCloudWatchAlarmTemplatesCommandOutput}.
|
|
934
|
+
*/
|
|
935
|
+
paginateListCloudWatchAlarmTemplates(args?: ListCloudWatchAlarmTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudWatchAlarmTemplatesCommandOutput>;
|
|
936
|
+
/**
|
|
937
|
+
* @see {@link ListClusterAlertsCommand}
|
|
938
|
+
* @param args - command input.
|
|
939
|
+
* @param paginationConfig - optional pagination config.
|
|
940
|
+
* @returns AsyncIterable of {@link ListClusterAlertsCommandOutput}.
|
|
941
|
+
*/
|
|
942
|
+
paginateListClusterAlerts(args: ListClusterAlertsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClusterAlertsCommandOutput>;
|
|
943
|
+
/**
|
|
944
|
+
* @see {@link ListClustersCommand}
|
|
945
|
+
* @param args - command input.
|
|
946
|
+
* @param paginationConfig - optional pagination config.
|
|
947
|
+
* @returns AsyncIterable of {@link ListClustersCommandOutput}.
|
|
948
|
+
*/
|
|
949
|
+
paginateListClusters(args?: ListClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClustersCommandOutput>;
|
|
950
|
+
/**
|
|
951
|
+
* @see {@link ListEventBridgeRuleTemplateGroupsCommand}
|
|
952
|
+
* @param args - command input.
|
|
953
|
+
* @param paginationConfig - optional pagination config.
|
|
954
|
+
* @returns AsyncIterable of {@link ListEventBridgeRuleTemplateGroupsCommandOutput}.
|
|
955
|
+
*/
|
|
956
|
+
paginateListEventBridgeRuleTemplateGroups(args?: ListEventBridgeRuleTemplateGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventBridgeRuleTemplateGroupsCommandOutput>;
|
|
957
|
+
/**
|
|
958
|
+
* @see {@link ListEventBridgeRuleTemplatesCommand}
|
|
959
|
+
* @param args - command input.
|
|
960
|
+
* @param paginationConfig - optional pagination config.
|
|
961
|
+
* @returns AsyncIterable of {@link ListEventBridgeRuleTemplatesCommandOutput}.
|
|
962
|
+
*/
|
|
963
|
+
paginateListEventBridgeRuleTemplates(args?: ListEventBridgeRuleTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventBridgeRuleTemplatesCommandOutput>;
|
|
964
|
+
/**
|
|
965
|
+
* @see {@link ListInputDevicesCommand}
|
|
966
|
+
* @param args - command input.
|
|
967
|
+
* @param paginationConfig - optional pagination config.
|
|
968
|
+
* @returns AsyncIterable of {@link ListInputDevicesCommandOutput}.
|
|
969
|
+
*/
|
|
970
|
+
paginateListInputDevices(args?: ListInputDevicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInputDevicesCommandOutput>;
|
|
971
|
+
/**
|
|
972
|
+
* @see {@link ListInputDeviceTransfersCommand}
|
|
973
|
+
* @param args - command input.
|
|
974
|
+
* @param paginationConfig - optional pagination config.
|
|
975
|
+
* @returns AsyncIterable of {@link ListInputDeviceTransfersCommandOutput}.
|
|
976
|
+
*/
|
|
977
|
+
paginateListInputDeviceTransfers(args: ListInputDeviceTransfersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInputDeviceTransfersCommandOutput>;
|
|
978
|
+
/**
|
|
979
|
+
* @see {@link ListInputsCommand}
|
|
980
|
+
* @param args - command input.
|
|
981
|
+
* @param paginationConfig - optional pagination config.
|
|
982
|
+
* @returns AsyncIterable of {@link ListInputsCommandOutput}.
|
|
983
|
+
*/
|
|
984
|
+
paginateListInputs(args?: ListInputsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInputsCommandOutput>;
|
|
985
|
+
/**
|
|
986
|
+
* @see {@link ListInputSecurityGroupsCommand}
|
|
987
|
+
* @param args - command input.
|
|
988
|
+
* @param paginationConfig - optional pagination config.
|
|
989
|
+
* @returns AsyncIterable of {@link ListInputSecurityGroupsCommandOutput}.
|
|
990
|
+
*/
|
|
991
|
+
paginateListInputSecurityGroups(args?: ListInputSecurityGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInputSecurityGroupsCommandOutput>;
|
|
992
|
+
/**
|
|
993
|
+
* @see {@link ListMultiplexAlertsCommand}
|
|
994
|
+
* @param args - command input.
|
|
995
|
+
* @param paginationConfig - optional pagination config.
|
|
996
|
+
* @returns AsyncIterable of {@link ListMultiplexAlertsCommandOutput}.
|
|
997
|
+
*/
|
|
998
|
+
paginateListMultiplexAlerts(args: ListMultiplexAlertsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMultiplexAlertsCommandOutput>;
|
|
999
|
+
/**
|
|
1000
|
+
* @see {@link ListMultiplexesCommand}
|
|
1001
|
+
* @param args - command input.
|
|
1002
|
+
* @param paginationConfig - optional pagination config.
|
|
1003
|
+
* @returns AsyncIterable of {@link ListMultiplexesCommandOutput}.
|
|
1004
|
+
*/
|
|
1005
|
+
paginateListMultiplexes(args?: ListMultiplexesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMultiplexesCommandOutput>;
|
|
1006
|
+
/**
|
|
1007
|
+
* @see {@link ListMultiplexProgramsCommand}
|
|
1008
|
+
* @param args - command input.
|
|
1009
|
+
* @param paginationConfig - optional pagination config.
|
|
1010
|
+
* @returns AsyncIterable of {@link ListMultiplexProgramsCommandOutput}.
|
|
1011
|
+
*/
|
|
1012
|
+
paginateListMultiplexPrograms(args: ListMultiplexProgramsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMultiplexProgramsCommandOutput>;
|
|
1013
|
+
/**
|
|
1014
|
+
* @see {@link ListNetworksCommand}
|
|
1015
|
+
* @param args - command input.
|
|
1016
|
+
* @param paginationConfig - optional pagination config.
|
|
1017
|
+
* @returns AsyncIterable of {@link ListNetworksCommandOutput}.
|
|
1018
|
+
*/
|
|
1019
|
+
paginateListNetworks(args?: ListNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNetworksCommandOutput>;
|
|
1020
|
+
/**
|
|
1021
|
+
* @see {@link ListNodesCommand}
|
|
1022
|
+
* @param args - command input.
|
|
1023
|
+
* @param paginationConfig - optional pagination config.
|
|
1024
|
+
* @returns AsyncIterable of {@link ListNodesCommandOutput}.
|
|
1025
|
+
*/
|
|
1026
|
+
paginateListNodes(args: ListNodesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNodesCommandOutput>;
|
|
1027
|
+
/**
|
|
1028
|
+
* @see {@link ListOfferingsCommand}
|
|
1029
|
+
* @param args - command input.
|
|
1030
|
+
* @param paginationConfig - optional pagination config.
|
|
1031
|
+
* @returns AsyncIterable of {@link ListOfferingsCommandOutput}.
|
|
1032
|
+
*/
|
|
1033
|
+
paginateListOfferings(args?: ListOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOfferingsCommandOutput>;
|
|
1034
|
+
/**
|
|
1035
|
+
* @see {@link ListReservationsCommand}
|
|
1036
|
+
* @param args - command input.
|
|
1037
|
+
* @param paginationConfig - optional pagination config.
|
|
1038
|
+
* @returns AsyncIterable of {@link ListReservationsCommandOutput}.
|
|
1039
|
+
*/
|
|
1040
|
+
paginateListReservations(args?: ListReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReservationsCommandOutput>;
|
|
1041
|
+
/**
|
|
1042
|
+
* @see {@link ListSdiSourcesCommand}
|
|
1043
|
+
* @param args - command input.
|
|
1044
|
+
* @param paginationConfig - optional pagination config.
|
|
1045
|
+
* @returns AsyncIterable of {@link ListSdiSourcesCommandOutput}.
|
|
1046
|
+
*/
|
|
1047
|
+
paginateListSdiSources(args?: ListSdiSourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSdiSourcesCommandOutput>;
|
|
1048
|
+
/**
|
|
1049
|
+
* @see {@link ListSignalMapsCommand}
|
|
1050
|
+
* @param args - command input.
|
|
1051
|
+
* @param paginationConfig - optional pagination config.
|
|
1052
|
+
* @returns AsyncIterable of {@link ListSignalMapsCommandOutput}.
|
|
1053
|
+
*/
|
|
1054
|
+
paginateListSignalMaps(args?: ListSignalMapsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSignalMapsCommandOutput>;
|
|
1055
|
+
/**
|
|
1056
|
+
* @see {@link DescribeChannelCommand}
|
|
1057
|
+
* @param args - command input.
|
|
1058
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1059
|
+
*/
|
|
1060
|
+
waitUntilChannelCreated(args: DescribeChannelCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1061
|
+
/**
|
|
1062
|
+
* @see {@link DescribeChannelCommand}
|
|
1063
|
+
* @param args - command input.
|
|
1064
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1065
|
+
*/
|
|
1066
|
+
waitUntilChannelDeleted(args: DescribeChannelCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1067
|
+
/**
|
|
1068
|
+
* @see {@link DescribeChannelCommand}
|
|
1069
|
+
* @param args - command input.
|
|
1070
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1071
|
+
*/
|
|
1072
|
+
waitUntilChannelRunning(args: DescribeChannelCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1073
|
+
/**
|
|
1074
|
+
* @see {@link DescribeChannelCommand}
|
|
1075
|
+
* @param args - command input.
|
|
1076
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1077
|
+
*/
|
|
1078
|
+
waitUntilChannelStopped(args: DescribeChannelCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1079
|
+
/**
|
|
1080
|
+
* @see {@link DescribeChannelPlacementGroupCommand}
|
|
1081
|
+
* @param args - command input.
|
|
1082
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1083
|
+
*/
|
|
1084
|
+
waitUntilChannelPlacementGroupAssigned(args: DescribeChannelPlacementGroupCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1085
|
+
/**
|
|
1086
|
+
* @see {@link DescribeChannelPlacementGroupCommand}
|
|
1087
|
+
* @param args - command input.
|
|
1088
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1089
|
+
*/
|
|
1090
|
+
waitUntilChannelPlacementGroupDeleted(args: DescribeChannelPlacementGroupCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1091
|
+
/**
|
|
1092
|
+
* @see {@link DescribeChannelPlacementGroupCommand}
|
|
1093
|
+
* @param args - command input.
|
|
1094
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1095
|
+
*/
|
|
1096
|
+
waitUntilChannelPlacementGroupUnassigned(args: DescribeChannelPlacementGroupCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1097
|
+
/**
|
|
1098
|
+
* @see {@link DescribeClusterCommand}
|
|
1099
|
+
* @param args - command input.
|
|
1100
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1101
|
+
*/
|
|
1102
|
+
waitUntilClusterCreated(args: DescribeClusterCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1103
|
+
/**
|
|
1104
|
+
* @see {@link DescribeClusterCommand}
|
|
1105
|
+
* @param args - command input.
|
|
1106
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1107
|
+
*/
|
|
1108
|
+
waitUntilClusterDeleted(args: DescribeClusterCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1109
|
+
/**
|
|
1110
|
+
* @see {@link DescribeInputCommand}
|
|
1111
|
+
* @param args - command input.
|
|
1112
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1113
|
+
*/
|
|
1114
|
+
waitUntilInputAttached(args: DescribeInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1115
|
+
/**
|
|
1116
|
+
* @see {@link DescribeInputCommand}
|
|
1117
|
+
* @param args - command input.
|
|
1118
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1119
|
+
*/
|
|
1120
|
+
waitUntilInputDeleted(args: DescribeInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1121
|
+
/**
|
|
1122
|
+
* @see {@link DescribeInputCommand}
|
|
1123
|
+
* @param args - command input.
|
|
1124
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1125
|
+
*/
|
|
1126
|
+
waitUntilInputDetached(args: DescribeInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1127
|
+
/**
|
|
1128
|
+
* @see {@link DescribeMultiplexCommand}
|
|
1129
|
+
* @param args - command input.
|
|
1130
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1131
|
+
*/
|
|
1132
|
+
waitUntilMultiplexCreated(args: DescribeMultiplexCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1133
|
+
/**
|
|
1134
|
+
* @see {@link DescribeMultiplexCommand}
|
|
1135
|
+
* @param args - command input.
|
|
1136
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1137
|
+
*/
|
|
1138
|
+
waitUntilMultiplexDeleted(args: DescribeMultiplexCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1139
|
+
/**
|
|
1140
|
+
* @see {@link DescribeMultiplexCommand}
|
|
1141
|
+
* @param args - command input.
|
|
1142
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1143
|
+
*/
|
|
1144
|
+
waitUntilMultiplexRunning(args: DescribeMultiplexCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1145
|
+
/**
|
|
1146
|
+
* @see {@link DescribeMultiplexCommand}
|
|
1147
|
+
* @param args - command input.
|
|
1148
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1149
|
+
*/
|
|
1150
|
+
waitUntilMultiplexStopped(args: DescribeMultiplexCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1151
|
+
/**
|
|
1152
|
+
* @see {@link DescribeNodeCommand}
|
|
1153
|
+
* @param args - command input.
|
|
1154
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1155
|
+
*/
|
|
1156
|
+
waitUntilNodeDeregistered(args: DescribeNodeCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1157
|
+
/**
|
|
1158
|
+
* @see {@link DescribeNodeCommand}
|
|
1159
|
+
* @param args - command input.
|
|
1160
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1161
|
+
*/
|
|
1162
|
+
waitUntilNodeRegistered(args: DescribeNodeCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1163
|
+
/**
|
|
1164
|
+
* @see {@link GetSignalMapCommand}
|
|
1165
|
+
* @param args - command input.
|
|
1166
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1167
|
+
*/
|
|
1168
|
+
waitUntilSignalMapCreated(args: GetSignalMapCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1169
|
+
/**
|
|
1170
|
+
* @see {@link GetSignalMapCommand}
|
|
1171
|
+
* @param args - command input.
|
|
1172
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1173
|
+
*/
|
|
1174
|
+
waitUntilSignalMapMonitorDeleted(args: GetSignalMapCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1175
|
+
/**
|
|
1176
|
+
* @see {@link GetSignalMapCommand}
|
|
1177
|
+
* @param args - command input.
|
|
1178
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1179
|
+
*/
|
|
1180
|
+
waitUntilSignalMapMonitorDeployed(args: GetSignalMapCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
1181
|
+
/**
|
|
1182
|
+
* @see {@link GetSignalMapCommand}
|
|
1183
|
+
* @param args - command input.
|
|
1184
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1185
|
+
*/
|
|
1186
|
+
waitUntilSignalMapUpdated(args: GetSignalMapCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaLive>, "client">): Promise<WaiterResult>;
|
|
893
1187
|
}
|
|
894
1188
|
/**
|
|
895
1189
|
* API for AWS Elemental MediaLive
|
|
@@ -348,6 +348,10 @@ declare const CreateChannelCommand_base: {
|
|
|
348
348
|
* },
|
|
349
349
|
* PipelineLockingSettings: { // PipelineLockingSettings
|
|
350
350
|
* PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
351
|
+
* CustomEpoch: "STRING_VALUE",
|
|
352
|
+
* },
|
|
353
|
+
* DisabledLockingSettings: { // DisabledLockingSettings
|
|
354
|
+
* CustomEpoch: "STRING_VALUE",
|
|
351
355
|
* },
|
|
352
356
|
* },
|
|
353
357
|
* },
|
|
@@ -1102,6 +1106,7 @@ declare const CreateChannelCommand_base: {
|
|
|
1102
1106
|
* MinBitrate: Number("int"),
|
|
1103
1107
|
* SpatialAq: "DISABLED" || "ENABLED",
|
|
1104
1108
|
* TemporalAq: "DISABLED" || "ENABLED",
|
|
1109
|
+
* TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1105
1110
|
* },
|
|
1106
1111
|
* },
|
|
1107
1112
|
* Height: Number("int"),
|
|
@@ -1624,6 +1629,10 @@ declare const CreateChannelCommand_base: {
|
|
|
1624
1629
|
* // },
|
|
1625
1630
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
1626
1631
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
1632
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
1633
|
+
* // },
|
|
1634
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
1635
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
1627
1636
|
* // },
|
|
1628
1637
|
* // },
|
|
1629
1638
|
* // },
|
|
@@ -2378,6 +2387,7 @@ declare const CreateChannelCommand_base: {
|
|
|
2378
2387
|
* // MinBitrate: Number("int"),
|
|
2379
2388
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
2380
2389
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
2390
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
2381
2391
|
* // },
|
|
2382
2392
|
* // },
|
|
2383
2393
|
* // Height: Number("int"),
|
|
@@ -359,6 +359,10 @@ declare const DeleteChannelCommand_base: {
|
|
|
359
359
|
* // },
|
|
360
360
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
361
361
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
362
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
365
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
362
366
|
* // },
|
|
363
367
|
* // },
|
|
364
368
|
* // },
|
|
@@ -1113,6 +1117,7 @@ declare const DeleteChannelCommand_base: {
|
|
|
1113
1117
|
* // MinBitrate: Number("int"),
|
|
1114
1118
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1115
1119
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1120
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1116
1121
|
* // },
|
|
1117
1122
|
* // },
|
|
1118
1123
|
* // Height: Number("int"),
|
|
@@ -359,6 +359,10 @@ declare const DescribeChannelCommand_base: {
|
|
|
359
359
|
* // },
|
|
360
360
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
361
361
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
362
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
365
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
362
366
|
* // },
|
|
363
367
|
* // },
|
|
364
368
|
* // },
|
|
@@ -1113,6 +1117,7 @@ declare const DescribeChannelCommand_base: {
|
|
|
1113
1117
|
* // MinBitrate: Number("int"),
|
|
1114
1118
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1115
1119
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1120
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1116
1121
|
* // },
|
|
1117
1122
|
* // },
|
|
1118
1123
|
* // Height: Number("int"),
|
|
@@ -362,6 +362,10 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
362
362
|
* // },
|
|
363
363
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
364
364
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
365
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
366
|
+
* // },
|
|
367
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
368
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
365
369
|
* // },
|
|
366
370
|
* // },
|
|
367
371
|
* // },
|
|
@@ -1116,6 +1120,7 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
1116
1120
|
* // MinBitrate: Number("int"),
|
|
1117
1121
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1118
1122
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1123
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1119
1124
|
* // },
|
|
1120
1125
|
* // },
|
|
1121
1126
|
* // Height: Number("int"),
|
|
@@ -359,6 +359,10 @@ declare const StartChannelCommand_base: {
|
|
|
359
359
|
* // },
|
|
360
360
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
361
361
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
362
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
365
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
362
366
|
* // },
|
|
363
367
|
* // },
|
|
364
368
|
* // },
|
|
@@ -1113,6 +1117,7 @@ declare const StartChannelCommand_base: {
|
|
|
1113
1117
|
* // MinBitrate: Number("int"),
|
|
1114
1118
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1115
1119
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1120
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1116
1121
|
* // },
|
|
1117
1122
|
* // },
|
|
1118
1123
|
* // Height: Number("int"),
|
|
@@ -359,6 +359,10 @@ declare const StopChannelCommand_base: {
|
|
|
359
359
|
* // },
|
|
360
360
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
361
361
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
362
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
365
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
362
366
|
* // },
|
|
363
367
|
* // },
|
|
364
368
|
* // },
|
|
@@ -1113,6 +1117,7 @@ declare const StopChannelCommand_base: {
|
|
|
1113
1117
|
* // MinBitrate: Number("int"),
|
|
1114
1118
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1115
1119
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1120
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1116
1121
|
* // },
|
|
1117
1122
|
* // },
|
|
1118
1123
|
* // Height: Number("int"),
|
|
@@ -397,6 +397,10 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
397
397
|
* // },
|
|
398
398
|
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
399
399
|
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
400
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
401
|
+
* // },
|
|
402
|
+
* // DisabledLockingSettings: { // DisabledLockingSettings
|
|
403
|
+
* // CustomEpoch: "STRING_VALUE",
|
|
400
404
|
* // },
|
|
401
405
|
* // },
|
|
402
406
|
* // },
|
|
@@ -1151,6 +1155,7 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
1151
1155
|
* // MinBitrate: Number("int"),
|
|
1152
1156
|
* // SpatialAq: "DISABLED" || "ENABLED",
|
|
1153
1157
|
* // TemporalAq: "DISABLED" || "ENABLED",
|
|
1158
|
+
* // TimecodeInsertion: "DISABLED" || "METADATA_OBU",
|
|
1154
1159
|
* // },
|
|
1155
1160
|
* // },
|
|
1156
1161
|
* // Height: Number("int"),
|