@aws-sdk/client-medialive 3.958.0 → 3.962.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 +168 -105
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +72 -25
- package/dist-es/waiters/waitForChannelCreated.js +4 -4
- package/dist-es/waiters/waitForChannelDeleted.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupAssigned.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupDeleted.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupUnassigned.js +3 -3
- package/dist-es/waiters/waitForChannelRunning.js +3 -3
- package/dist-es/waiters/waitForChannelStopped.js +3 -3
- package/dist-es/waiters/waitForClusterCreated.js +4 -4
- package/dist-es/waiters/waitForClusterDeleted.js +3 -3
- package/dist-es/waiters/waitForInputAttached.js +3 -3
- package/dist-es/waiters/waitForInputDeleted.js +3 -3
- package/dist-es/waiters/waitForInputDetached.js +4 -4
- package/dist-es/waiters/waitForMultiplexCreated.js +4 -4
- package/dist-es/waiters/waitForMultiplexDeleted.js +3 -3
- package/dist-es/waiters/waitForMultiplexRunning.js +3 -3
- package/dist-es/waiters/waitForMultiplexStopped.js +3 -3
- package/dist-es/waiters/waitForNodeDeregistered.js +4 -4
- package/dist-es/waiters/waitForNodeRegistered.js +4 -4
- package/dist-es/waiters/waitForSignalMapCreated.js +4 -4
- package/dist-es/waiters/waitForSignalMapMonitorDeleted.js +4 -4
- package/dist-es/waiters/waitForSignalMapMonitorDeployed.js +7 -7
- package/dist-es/waiters/waitForSignalMapUpdated.js +5 -5
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +25 -2
- package/dist-types/commands/DeleteChannelCommand.d.ts +13 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +13 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +10 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +13 -1
- package/dist-types/commands/StartChannelCommand.d.ts +13 -1
- package/dist-types/commands/StopChannelCommand.d.ts +13 -1
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +13 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +25 -2
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +54 -49
- package/dist-types/models/models_1.d.ts +138 -2
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -13
- package/dist-types/ts3.4/models/models_1.d.ts +38 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +2 -2
|
@@ -3,10 +3,10 @@ import { DescribeMultiplexCommand } from "../commands/DescribeMultiplexCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -3,10 +3,10 @@ import { DescribeMultiplexCommand } from "../commands/DescribeMultiplexCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -3,10 +3,10 @@ import { DescribeMultiplexCommand } from "../commands/DescribeMultiplexCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "RUNNING") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STARTING") {
|
|
@@ -3,10 +3,10 @@ import { DescribeMultiplexCommand } from "../commands/DescribeMultiplexCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STOPPING") {
|
|
@@ -3,10 +3,10 @@ import { DescribeNodeCommand } from "../commands/DescribeNodeCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeNodeCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DEREGISTERED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DEREGISTERING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DRAINING") {
|
|
@@ -3,10 +3,10 @@ import { DescribeNodeCommand } from "../commands/DescribeNodeCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeNodeCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "REGISTERING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "REGISTRATION_FAILED") {
|
|
@@ -3,10 +3,10 @@ import { GetSignalMapCommand } from "../commands/GetSignalMapCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -3,10 +3,10 @@ import { GetSignalMapCommand } from "../commands/GetSignalMapCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.MonitorDeployment.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.MonitorDeployment.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.MonitorDeployment.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DELETE_FAILED") {
|
|
@@ -3,10 +3,10 @@ import { GetSignalMapCommand } from "../commands/GetSignalMapCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.MonitorDeployment.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.MonitorDeployment.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DEPLOYMENT_COMPLETE") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.MonitorDeployment.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -33,7 +33,7 @@ const checkState = async (client, input) => {
|
|
|
33
33
|
}
|
|
34
34
|
catch (e) { }
|
|
35
35
|
try {
|
|
36
|
-
|
|
36
|
+
const returnComparator = () => {
|
|
37
37
|
return result.MonitorDeployment.Status;
|
|
38
38
|
};
|
|
39
39
|
if (returnComparator() === "DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -42,7 +42,7 @@ const checkState = async (client, input) => {
|
|
|
42
42
|
}
|
|
43
43
|
catch (e) { }
|
|
44
44
|
try {
|
|
45
|
-
|
|
45
|
+
const returnComparator = () => {
|
|
46
46
|
return result.MonitorDeployment.Status;
|
|
47
47
|
};
|
|
48
48
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_FAILED") {
|
|
@@ -51,7 +51,7 @@ const checkState = async (client, input) => {
|
|
|
51
51
|
}
|
|
52
52
|
catch (e) { }
|
|
53
53
|
try {
|
|
54
|
-
|
|
54
|
+
const returnComparator = () => {
|
|
55
55
|
return result.MonitorDeployment.Status;
|
|
56
56
|
};
|
|
57
57
|
if (returnComparator() === "DEPLOYMENT_FAILED") {
|
|
@@ -3,10 +3,10 @@ import { GetSignalMapCommand } from "../commands/GetSignalMapCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
return result.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "UPDATE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
const returnComparator = () => {
|
|
19
19
|
return result.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "UPDATE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
const returnComparator = () => {
|
|
28
28
|
return result.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -33,7 +33,7 @@ const checkState = async (client, input) => {
|
|
|
33
33
|
}
|
|
34
34
|
catch (e) { }
|
|
35
35
|
try {
|
|
36
|
-
|
|
36
|
+
const returnComparator = () => {
|
|
37
37
|
return result.Status;
|
|
38
38
|
};
|
|
39
39
|
if (returnComparator() === "UPDATE_REVERTED") {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
-
import type { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/
|
|
4
|
+
import type { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -344,7 +344,9 @@ declare const CreateChannelCommand_base: {
|
|
|
344
344
|
* CustomEpoch: "STRING_VALUE",
|
|
345
345
|
* JamSyncTime: "STRING_VALUE",
|
|
346
346
|
* },
|
|
347
|
-
* PipelineLockingSettings: {
|
|
347
|
+
* PipelineLockingSettings: { // PipelineLockingSettings
|
|
348
|
+
* PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
349
|
+
* },
|
|
348
350
|
* },
|
|
349
351
|
* },
|
|
350
352
|
* MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1284,6 +1286,15 @@ declare const CreateChannelCommand_base: {
|
|
|
1284
1286
|
* Version: "STRING_VALUE",
|
|
1285
1287
|
* },
|
|
1286
1288
|
* DryRun: true || false,
|
|
1289
|
+
* LinkedChannelSettings: { // LinkedChannelSettings
|
|
1290
|
+
* FollowerChannelSettings: { // FollowerChannelSettings
|
|
1291
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1292
|
+
* PrimaryChannelArn: "STRING_VALUE",
|
|
1293
|
+
* },
|
|
1294
|
+
* PrimaryChannelSettings: { // PrimaryChannelSettings
|
|
1295
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1296
|
+
* },
|
|
1297
|
+
* },
|
|
1287
1298
|
* };
|
|
1288
1299
|
* const command = new CreateChannelCommand(input);
|
|
1289
1300
|
* const response = await client.send(command);
|
|
@@ -1602,7 +1613,9 @@ declare const CreateChannelCommand_base: {
|
|
|
1602
1613
|
* // CustomEpoch: "STRING_VALUE",
|
|
1603
1614
|
* // JamSyncTime: "STRING_VALUE",
|
|
1604
1615
|
* // },
|
|
1605
|
-
* // PipelineLockingSettings: {
|
|
1616
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
1617
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
1618
|
+
* // },
|
|
1606
1619
|
* // },
|
|
1607
1620
|
* // },
|
|
1608
1621
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -2559,6 +2572,16 @@ declare const CreateChannelCommand_base: {
|
|
|
2559
2572
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
2560
2573
|
* // Version: "STRING_VALUE",
|
|
2561
2574
|
* // },
|
|
2575
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
2576
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
2577
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2578
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
2579
|
+
* // },
|
|
2580
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
2581
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
2582
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2583
|
+
* // },
|
|
2584
|
+
* // },
|
|
2562
2585
|
* // },
|
|
2563
2586
|
* // };
|
|
2564
2587
|
*
|
|
@@ -355,7 +355,9 @@ declare const DeleteChannelCommand_base: {
|
|
|
355
355
|
* // CustomEpoch: "STRING_VALUE",
|
|
356
356
|
* // JamSyncTime: "STRING_VALUE",
|
|
357
357
|
* // },
|
|
358
|
-
* // PipelineLockingSettings: {
|
|
358
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
359
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
360
|
+
* // },
|
|
359
361
|
* // },
|
|
360
362
|
* // },
|
|
361
363
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1312,6 +1314,16 @@ declare const DeleteChannelCommand_base: {
|
|
|
1312
1314
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1313
1315
|
* // Version: "STRING_VALUE",
|
|
1314
1316
|
* // },
|
|
1317
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1318
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1319
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1320
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1321
|
+
* // },
|
|
1322
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1323
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1324
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // },
|
|
1315
1327
|
* // };
|
|
1316
1328
|
*
|
|
1317
1329
|
* ```
|
|
@@ -355,7 +355,9 @@ declare const DescribeChannelCommand_base: {
|
|
|
355
355
|
* // CustomEpoch: "STRING_VALUE",
|
|
356
356
|
* // JamSyncTime: "STRING_VALUE",
|
|
357
357
|
* // },
|
|
358
|
-
* // PipelineLockingSettings: {
|
|
358
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
359
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
360
|
+
* // },
|
|
359
361
|
* // },
|
|
360
362
|
* // },
|
|
361
363
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1312,6 +1314,16 @@ declare const DescribeChannelCommand_base: {
|
|
|
1312
1314
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1313
1315
|
* // Version: "STRING_VALUE",
|
|
1314
1316
|
* // },
|
|
1317
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1318
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1319
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1320
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1321
|
+
* // },
|
|
1322
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1323
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1324
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // },
|
|
1315
1327
|
* // };
|
|
1316
1328
|
*
|
|
1317
1329
|
* ```
|
|
@@ -273,6 +273,16 @@ declare const ListChannelsCommand_base: {
|
|
|
273
273
|
* // Version: "STRING_VALUE",
|
|
274
274
|
* // },
|
|
275
275
|
* // ],
|
|
276
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
277
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
278
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
279
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
280
|
+
* // },
|
|
281
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
282
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
283
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
284
|
+
* // },
|
|
285
|
+
* // },
|
|
276
286
|
* // },
|
|
277
287
|
* // ],
|
|
278
288
|
* // NextToken: "STRING_VALUE",
|
|
@@ -358,7 +358,9 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
358
358
|
* // CustomEpoch: "STRING_VALUE",
|
|
359
359
|
* // JamSyncTime: "STRING_VALUE",
|
|
360
360
|
* // },
|
|
361
|
-
* // PipelineLockingSettings: {
|
|
361
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
362
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
363
|
+
* // },
|
|
362
364
|
* // },
|
|
363
365
|
* // },
|
|
364
366
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1316,6 +1318,16 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
1316
1318
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1317
1319
|
* // Version: "STRING_VALUE",
|
|
1318
1320
|
* // },
|
|
1321
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1322
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1323
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1324
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1327
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1328
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1329
|
+
* // },
|
|
1330
|
+
* // },
|
|
1319
1331
|
* // };
|
|
1320
1332
|
*
|
|
1321
1333
|
* ```
|
|
@@ -355,7 +355,9 @@ declare const StartChannelCommand_base: {
|
|
|
355
355
|
* // CustomEpoch: "STRING_VALUE",
|
|
356
356
|
* // JamSyncTime: "STRING_VALUE",
|
|
357
357
|
* // },
|
|
358
|
-
* // PipelineLockingSettings: {
|
|
358
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
359
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
360
|
+
* // },
|
|
359
361
|
* // },
|
|
360
362
|
* // },
|
|
361
363
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1312,6 +1314,16 @@ declare const StartChannelCommand_base: {
|
|
|
1312
1314
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1313
1315
|
* // Version: "STRING_VALUE",
|
|
1314
1316
|
* // },
|
|
1317
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1318
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1319
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1320
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1321
|
+
* // },
|
|
1322
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1323
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1324
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // },
|
|
1315
1327
|
* // };
|
|
1316
1328
|
*
|
|
1317
1329
|
* ```
|
|
@@ -355,7 +355,9 @@ declare const StopChannelCommand_base: {
|
|
|
355
355
|
* // CustomEpoch: "STRING_VALUE",
|
|
356
356
|
* // JamSyncTime: "STRING_VALUE",
|
|
357
357
|
* // },
|
|
358
|
-
* // PipelineLockingSettings: {
|
|
358
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
359
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
360
|
+
* // },
|
|
359
361
|
* // },
|
|
360
362
|
* // },
|
|
361
363
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1312,6 +1314,16 @@ declare const StopChannelCommand_base: {
|
|
|
1312
1314
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1313
1315
|
* // Version: "STRING_VALUE",
|
|
1314
1316
|
* // },
|
|
1317
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1318
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1319
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1320
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1321
|
+
* // },
|
|
1322
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1323
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1324
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // },
|
|
1315
1327
|
* // };
|
|
1316
1328
|
*
|
|
1317
1329
|
* ```
|
|
@@ -391,7 +391,9 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
391
391
|
* // CustomEpoch: "STRING_VALUE",
|
|
392
392
|
* // JamSyncTime: "STRING_VALUE",
|
|
393
393
|
* // },
|
|
394
|
-
* // PipelineLockingSettings: {
|
|
394
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
395
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
396
|
+
* // },
|
|
395
397
|
* // },
|
|
396
398
|
* // },
|
|
397
399
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1348,6 +1350,16 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
1348
1350
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1349
1351
|
* // Version: "STRING_VALUE",
|
|
1350
1352
|
* // },
|
|
1353
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1354
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1355
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1356
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1357
|
+
* // },
|
|
1358
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1359
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1360
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1361
|
+
* // },
|
|
1362
|
+
* // },
|
|
1351
1363
|
* // },
|
|
1352
1364
|
* // };
|
|
1353
1365
|
*
|
|
@@ -344,7 +344,9 @@ declare const UpdateChannelCommand_base: {
|
|
|
344
344
|
* CustomEpoch: "STRING_VALUE",
|
|
345
345
|
* JamSyncTime: "STRING_VALUE",
|
|
346
346
|
* },
|
|
347
|
-
* PipelineLockingSettings: {
|
|
347
|
+
* PipelineLockingSettings: { // PipelineLockingSettings
|
|
348
|
+
* PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
349
|
+
* },
|
|
348
350
|
* },
|
|
349
351
|
* },
|
|
350
352
|
* MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1275,6 +1277,15 @@ declare const UpdateChannelCommand_base: {
|
|
|
1275
1277
|
* ChannelPlacementGroupId: "STRING_VALUE",
|
|
1276
1278
|
* ClusterId: "STRING_VALUE",
|
|
1277
1279
|
* },
|
|
1280
|
+
* LinkedChannelSettings: { // LinkedChannelSettings
|
|
1281
|
+
* FollowerChannelSettings: { // FollowerChannelSettings
|
|
1282
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1283
|
+
* PrimaryChannelArn: "STRING_VALUE",
|
|
1284
|
+
* },
|
|
1285
|
+
* PrimaryChannelSettings: { // PrimaryChannelSettings
|
|
1286
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1287
|
+
* },
|
|
1288
|
+
* },
|
|
1278
1289
|
* };
|
|
1279
1290
|
* const command = new UpdateChannelCommand(input);
|
|
1280
1291
|
* const response = await client.send(command);
|
|
@@ -1593,7 +1604,9 @@ declare const UpdateChannelCommand_base: {
|
|
|
1593
1604
|
* // CustomEpoch: "STRING_VALUE",
|
|
1594
1605
|
* // JamSyncTime: "STRING_VALUE",
|
|
1595
1606
|
* // },
|
|
1596
|
-
* // PipelineLockingSettings: {
|
|
1607
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
1608
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
1609
|
+
* // },
|
|
1597
1610
|
* // },
|
|
1598
1611
|
* // },
|
|
1599
1612
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -2550,6 +2563,16 @@ declare const UpdateChannelCommand_base: {
|
|
|
2550
2563
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
2551
2564
|
* // Version: "STRING_VALUE",
|
|
2552
2565
|
* // },
|
|
2566
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
2567
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
2568
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2569
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
2570
|
+
* // },
|
|
2571
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
2572
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
2573
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2574
|
+
* // },
|
|
2575
|
+
* // },
|
|
2553
2576
|
* // },
|
|
2554
2577
|
* // };
|
|
2555
2578
|
*
|