@aws-sdk/client-medialive 3.781.0 → 3.784.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.
Files changed (57) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +332 -14
  3. package/dist-es/MediaLive.js +10 -0
  4. package/dist-es/commands/CreateSdiSourceCommand.js +22 -0
  5. package/dist-es/commands/DeleteSdiSourceCommand.js +22 -0
  6. package/dist-es/commands/DescribeSdiSourceCommand.js +22 -0
  7. package/dist-es/commands/ListSdiSourcesCommand.js +22 -0
  8. package/dist-es/commands/UpdateSdiSourceCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +1 -4
  11. package/dist-es/models/models_1.js +17 -8
  12. package/dist-es/models/models_2.js +8 -0
  13. package/dist-es/pagination/ListSdiSourcesPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/protocols/Aws_restJson1.js +204 -0
  16. package/dist-types/MediaLive.d.ts +37 -0
  17. package/dist-types/MediaLiveClient.d.ts +7 -2
  18. package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateInputCommand.d.ts +8 -2
  20. package/dist-types/commands/CreateNodeCommand.d.ts +7 -0
  21. package/dist-types/commands/CreatePartnerInputCommand.d.ts +4 -1
  22. package/dist-types/commands/CreateSdiSourceCommand.d.ts +109 -0
  23. package/dist-types/commands/DeleteNodeCommand.d.ts +7 -0
  24. package/dist-types/commands/DeleteSdiSourceCommand.d.ts +106 -0
  25. package/dist-types/commands/DescribeInputCommand.d.ts +4 -1
  26. package/dist-types/commands/DescribeNodeCommand.d.ts +7 -0
  27. package/dist-types/commands/DescribeSdiSourceCommand.d.ts +103 -0
  28. package/dist-types/commands/ListInputsCommand.d.ts +4 -1
  29. package/dist-types/commands/ListNodesCommand.d.ts +7 -0
  30. package/dist-types/commands/ListSdiSourcesCommand.d.ts +104 -0
  31. package/dist-types/commands/UpdateInputCommand.d.ts +7 -1
  32. package/dist-types/commands/UpdateNodeCommand.d.ts +14 -0
  33. package/dist-types/commands/UpdateNodeStateCommand.d.ts +7 -0
  34. package/dist-types/commands/UpdateSdiSourceCommand.d.ts +106 -0
  35. package/dist-types/commands/index.d.ts +5 -0
  36. package/dist-types/models/models_0.d.ts +32 -12
  37. package/dist-types/models/models_1.d.ts +91 -53
  38. package/dist-types/models/models_2.d.ts +316 -2
  39. package/dist-types/pagination/ListSdiSourcesPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  42. package/dist-types/ts3.4/MediaLive.d.ts +87 -0
  43. package/dist-types/ts3.4/MediaLiveClient.d.ts +32 -2
  44. package/dist-types/ts3.4/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/CreateSdiSourceCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/DeleteSdiSourceCommand.d.ts +50 -0
  47. package/dist-types/ts3.4/commands/DescribeSdiSourceCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/ListSdiSourcesCommand.d.ts +50 -0
  49. package/dist-types/ts3.4/commands/UpdateSdiSourceCommand.d.ts +50 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +8 -6
  52. package/dist-types/ts3.4/models/models_1.d.ts +32 -21
  53. package/dist-types/ts3.4/models/models_2.d.ts +87 -3
  54. package/dist-types/ts3.4/pagination/ListSdiSourcesPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  56. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  57. package/package.json +5 -5
@@ -0,0 +1,103 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
+ import { DescribeSdiSourceRequest, DescribeSdiSourceResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeSdiSourceCommand}.
14
+ */
15
+ export interface DescribeSdiSourceCommandInput extends DescribeSdiSourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeSdiSourceCommand}.
21
+ */
22
+ export interface DescribeSdiSourceCommandOutput extends DescribeSdiSourceResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeSdiSourceCommand_base: {
25
+ new (input: DescribeSdiSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSdiSourceCommandInput, DescribeSdiSourceCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DescribeSdiSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSdiSourceCommandInput, DescribeSdiSourceCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * Gets details about a SdiSource.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MediaLiveClient, DescribeSdiSourceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
35
+ * // const { MediaLiveClient, DescribeSdiSourceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
36
+ * const client = new MediaLiveClient(config);
37
+ * const input = { // DescribeSdiSourceRequest
38
+ * SdiSourceId: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DescribeSdiSourceCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DescribeSdiSourceResponse
43
+ * // SdiSource: { // SdiSource
44
+ * // Arn: "STRING_VALUE",
45
+ * // Id: "STRING_VALUE",
46
+ * // Inputs: [ // __listOf__string
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // Mode: "QUADRANT" || "INTERLEAVE",
50
+ * // Name: "STRING_VALUE",
51
+ * // State: "IDLE" || "IN_USE" || "DELETED",
52
+ * // Type: "SINGLE" || "QUAD",
53
+ * // },
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param DescribeSdiSourceCommandInput - {@link DescribeSdiSourceCommandInput}
59
+ * @returns {@link DescribeSdiSourceCommandOutput}
60
+ * @see {@link DescribeSdiSourceCommandInput} for command's `input` shape.
61
+ * @see {@link DescribeSdiSourceCommandOutput} for command's `response` shape.
62
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
63
+ *
64
+ * @throws {@link BadGatewayException} (server fault)
65
+ * Placeholder documentation for BadGatewayException
66
+ *
67
+ * @throws {@link BadRequestException} (client fault)
68
+ * Placeholder documentation for BadRequestException
69
+ *
70
+ * @throws {@link ForbiddenException} (client fault)
71
+ * Placeholder documentation for ForbiddenException
72
+ *
73
+ * @throws {@link GatewayTimeoutException} (server fault)
74
+ * Placeholder documentation for GatewayTimeoutException
75
+ *
76
+ * @throws {@link InternalServerErrorException} (server fault)
77
+ * Placeholder documentation for InternalServerErrorException
78
+ *
79
+ * @throws {@link NotFoundException} (client fault)
80
+ * Placeholder documentation for NotFoundException
81
+ *
82
+ * @throws {@link TooManyRequestsException} (client fault)
83
+ * Placeholder documentation for TooManyRequestsException
84
+ *
85
+ * @throws {@link MediaLiveServiceException}
86
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
87
+ *
88
+ *
89
+ * @public
90
+ */
91
+ export declare class DescribeSdiSourceCommand extends DescribeSdiSourceCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: DescribeSdiSourceRequest;
96
+ output: DescribeSdiSourceResponse;
97
+ };
98
+ sdk: {
99
+ input: DescribeSdiSourceCommandInput;
100
+ output: DescribeSdiSourceCommandOutput;
101
+ };
102
+ };
103
+ }
@@ -97,7 +97,7 @@ declare const ListInputsCommand_base: {
97
97
  * // Tags: { // Tags
98
98
  * // "<keys>": "STRING_VALUE",
99
99
  * // },
100
- * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST" || "SMPTE_2110_RECEIVER_GROUP",
100
+ * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST" || "SMPTE_2110_RECEIVER_GROUP" || "SDI",
101
101
  * // SrtSettings: { // SrtSettings
102
102
  * // SrtCallerSources: [ // __listOfSrtCallerSource
103
103
  * // { // SrtCallerSource
@@ -145,6 +145,9 @@ declare const ListInputsCommand_base: {
145
145
  * // },
146
146
  * // ],
147
147
  * // },
148
+ * // SdiSources: [ // InputSdiSources
149
+ * // "STRING_VALUE",
150
+ * // ],
148
151
  * // },
149
152
  * // ],
150
153
  * // NextToken: "STRING_VALUE",
@@ -64,6 +64,13 @@ declare const ListNodesCommand_base: {
64
64
  * // ],
65
65
  * // Role: "BACKUP" || "ACTIVE",
66
66
  * // State: "CREATED" || "REGISTERING" || "READY_TO_ACTIVATE" || "REGISTRATION_FAILED" || "ACTIVATION_FAILED" || "ACTIVE" || "READY" || "IN_USE" || "DEREGISTERING" || "DRAINING" || "DEREGISTRATION_FAILED" || "DEREGISTERED",
67
+ * // SdiSourceMappings: [ // SdiSourceMappings
68
+ * // { // SdiSourceMapping
69
+ * // CardNumber: Number("int"),
70
+ * // ChannelNumber: Number("int"),
71
+ * // SdiSource: "STRING_VALUE",
72
+ * // },
73
+ * // ],
67
74
  * // },
68
75
  * // ],
69
76
  * // };
@@ -0,0 +1,104 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
+ import { ListSdiSourcesRequest, ListSdiSourcesResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListSdiSourcesCommand}.
14
+ */
15
+ export interface ListSdiSourcesCommandInput extends ListSdiSourcesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListSdiSourcesCommand}.
21
+ */
22
+ export interface ListSdiSourcesCommandOutput extends ListSdiSourcesResponse, __MetadataBearer {
23
+ }
24
+ declare const ListSdiSourcesCommand_base: {
25
+ new (input: ListSdiSourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSdiSourcesCommandInput, ListSdiSourcesCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListSdiSourcesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSdiSourcesCommandInput, ListSdiSourcesCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * List all the SdiSources in the AWS account.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MediaLiveClient, ListSdiSourcesCommand } from "@aws-sdk/client-medialive"; // ES Modules import
35
+ * // const { MediaLiveClient, ListSdiSourcesCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
36
+ * const client = new MediaLiveClient(config);
37
+ * const input = { // ListSdiSourcesRequest
38
+ * MaxResults: Number("int"),
39
+ * NextToken: "STRING_VALUE",
40
+ * };
41
+ * const command = new ListSdiSourcesCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // ListSdiSourcesResponse
44
+ * // NextToken: "STRING_VALUE",
45
+ * // SdiSources: [ // __listOfSdiSourceSummary
46
+ * // { // SdiSourceSummary
47
+ * // Arn: "STRING_VALUE",
48
+ * // Id: "STRING_VALUE",
49
+ * // Inputs: [ // __listOf__string
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // Mode: "QUADRANT" || "INTERLEAVE",
53
+ * // Name: "STRING_VALUE",
54
+ * // State: "IDLE" || "IN_USE" || "DELETED",
55
+ * // Type: "SINGLE" || "QUAD",
56
+ * // },
57
+ * // ],
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param ListSdiSourcesCommandInput - {@link ListSdiSourcesCommandInput}
63
+ * @returns {@link ListSdiSourcesCommandOutput}
64
+ * @see {@link ListSdiSourcesCommandInput} for command's `input` shape.
65
+ * @see {@link ListSdiSourcesCommandOutput} for command's `response` shape.
66
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
67
+ *
68
+ * @throws {@link BadGatewayException} (server fault)
69
+ * Placeholder documentation for BadGatewayException
70
+ *
71
+ * @throws {@link BadRequestException} (client fault)
72
+ * Placeholder documentation for BadRequestException
73
+ *
74
+ * @throws {@link ForbiddenException} (client fault)
75
+ * Placeholder documentation for ForbiddenException
76
+ *
77
+ * @throws {@link GatewayTimeoutException} (server fault)
78
+ * Placeholder documentation for GatewayTimeoutException
79
+ *
80
+ * @throws {@link InternalServerErrorException} (server fault)
81
+ * Placeholder documentation for InternalServerErrorException
82
+ *
83
+ * @throws {@link TooManyRequestsException} (client fault)
84
+ * Placeholder documentation for TooManyRequestsException
85
+ *
86
+ * @throws {@link MediaLiveServiceException}
87
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
88
+ *
89
+ *
90
+ * @public
91
+ */
92
+ export declare class ListSdiSourcesCommand extends ListSdiSourcesCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ListSdiSourcesRequest;
97
+ output: ListSdiSourcesResponse;
98
+ };
99
+ sdk: {
100
+ input: ListSdiSourcesCommandInput;
101
+ output: ListSdiSourcesCommandOutput;
102
+ };
103
+ };
104
+ }
@@ -117,6 +117,9 @@ declare const UpdateInputCommand_base: {
117
117
  * },
118
118
  * ],
119
119
  * },
120
+ * SdiSources: [ // InputSdiSources
121
+ * "STRING_VALUE",
122
+ * ],
120
123
  * };
121
124
  * const command = new UpdateInputCommand(input);
122
125
  * const response = await client.send(command);
@@ -176,7 +179,7 @@ declare const UpdateInputCommand_base: {
176
179
  * // Tags: { // Tags
177
180
  * // "<keys>": "STRING_VALUE",
178
181
  * // },
179
- * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST" || "SMPTE_2110_RECEIVER_GROUP",
182
+ * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE" || "SRT_CALLER" || "MULTICAST" || "SMPTE_2110_RECEIVER_GROUP" || "SDI",
180
183
  * // SrtSettings: { // SrtSettings
181
184
  * // SrtCallerSources: [ // __listOfSrtCallerSource
182
185
  * // { // SrtCallerSource
@@ -224,6 +227,9 @@ declare const UpdateInputCommand_base: {
224
227
  * // },
225
228
  * // ],
226
229
  * // },
230
+ * // SdiSources: [ // InputSdiSources
231
+ * // "STRING_VALUE",
232
+ * // ],
227
233
  * // },
228
234
  * // };
229
235
  *
@@ -39,6 +39,13 @@ declare const UpdateNodeCommand_base: {
39
39
  * Name: "STRING_VALUE",
40
40
  * NodeId: "STRING_VALUE", // required
41
41
  * Role: "BACKUP" || "ACTIVE",
42
+ * SdiSourceMappings: [ // SdiSourceMappingsUpdateRequest
43
+ * { // SdiSourceMappingUpdateRequest
44
+ * CardNumber: Number("int"),
45
+ * ChannelNumber: Number("int"),
46
+ * SdiSource: "STRING_VALUE",
47
+ * },
48
+ * ],
42
49
  * };
43
50
  * const command = new UpdateNodeCommand(input);
44
51
  * const response = await client.send(command);
@@ -61,6 +68,13 @@ declare const UpdateNodeCommand_base: {
61
68
  * // ],
62
69
  * // Role: "BACKUP" || "ACTIVE",
63
70
  * // State: "CREATED" || "REGISTERING" || "READY_TO_ACTIVATE" || "REGISTRATION_FAILED" || "ACTIVATION_FAILED" || "ACTIVE" || "READY" || "IN_USE" || "DEREGISTERING" || "DRAINING" || "DEREGISTRATION_FAILED" || "DEREGISTERED",
71
+ * // SdiSourceMappings: [ // SdiSourceMappings
72
+ * // { // SdiSourceMapping
73
+ * // CardNumber: Number("int"),
74
+ * // ChannelNumber: Number("int"),
75
+ * // SdiSource: "STRING_VALUE",
76
+ * // },
77
+ * // ],
64
78
  * // };
65
79
  *
66
80
  * ```
@@ -60,6 +60,13 @@ declare const UpdateNodeStateCommand_base: {
60
60
  * // ],
61
61
  * // Role: "BACKUP" || "ACTIVE",
62
62
  * // State: "CREATED" || "REGISTERING" || "READY_TO_ACTIVATE" || "REGISTRATION_FAILED" || "ACTIVATION_FAILED" || "ACTIVE" || "READY" || "IN_USE" || "DEREGISTERING" || "DRAINING" || "DEREGISTRATION_FAILED" || "DEREGISTERED",
63
+ * // SdiSourceMappings: [ // SdiSourceMappings
64
+ * // { // SdiSourceMapping
65
+ * // CardNumber: Number("int"),
66
+ * // ChannelNumber: Number("int"),
67
+ * // SdiSource: "STRING_VALUE",
68
+ * // },
69
+ * // ],
63
70
  * // };
64
71
  *
65
72
  * ```
@@ -0,0 +1,106 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
+ import { UpdateSdiSourceRequest, UpdateSdiSourceResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateSdiSourceCommand}.
14
+ */
15
+ export interface UpdateSdiSourceCommandInput extends UpdateSdiSourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateSdiSourceCommand}.
21
+ */
22
+ export interface UpdateSdiSourceCommandOutput extends UpdateSdiSourceResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateSdiSourceCommand_base: {
25
+ new (input: UpdateSdiSourceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSdiSourceCommandInput, UpdateSdiSourceCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateSdiSourceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSdiSourceCommandInput, UpdateSdiSourceCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * Change some of the settings in an SdiSource.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MediaLiveClient, UpdateSdiSourceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
35
+ * // const { MediaLiveClient, UpdateSdiSourceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
36
+ * const client = new MediaLiveClient(config);
37
+ * const input = { // UpdateSdiSourceRequest
38
+ * Mode: "QUADRANT" || "INTERLEAVE",
39
+ * Name: "STRING_VALUE",
40
+ * SdiSourceId: "STRING_VALUE", // required
41
+ * Type: "SINGLE" || "QUAD",
42
+ * };
43
+ * const command = new UpdateSdiSourceCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // UpdateSdiSourceResponse
46
+ * // SdiSource: { // SdiSource
47
+ * // Arn: "STRING_VALUE",
48
+ * // Id: "STRING_VALUE",
49
+ * // Inputs: [ // __listOf__string
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // Mode: "QUADRANT" || "INTERLEAVE",
53
+ * // Name: "STRING_VALUE",
54
+ * // State: "IDLE" || "IN_USE" || "DELETED",
55
+ * // Type: "SINGLE" || "QUAD",
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param UpdateSdiSourceCommandInput - {@link UpdateSdiSourceCommandInput}
62
+ * @returns {@link UpdateSdiSourceCommandOutput}
63
+ * @see {@link UpdateSdiSourceCommandInput} for command's `input` shape.
64
+ * @see {@link UpdateSdiSourceCommandOutput} for command's `response` shape.
65
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
66
+ *
67
+ * @throws {@link BadGatewayException} (server fault)
68
+ * Placeholder documentation for BadGatewayException
69
+ *
70
+ * @throws {@link BadRequestException} (client fault)
71
+ * Placeholder documentation for BadRequestException
72
+ *
73
+ * @throws {@link ConflictException} (client fault)
74
+ * Placeholder documentation for ConflictException
75
+ *
76
+ * @throws {@link ForbiddenException} (client fault)
77
+ * Placeholder documentation for ForbiddenException
78
+ *
79
+ * @throws {@link GatewayTimeoutException} (server fault)
80
+ * Placeholder documentation for GatewayTimeoutException
81
+ *
82
+ * @throws {@link InternalServerErrorException} (server fault)
83
+ * Placeholder documentation for InternalServerErrorException
84
+ *
85
+ * @throws {@link TooManyRequestsException} (client fault)
86
+ * Placeholder documentation for TooManyRequestsException
87
+ *
88
+ * @throws {@link MediaLiveServiceException}
89
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
90
+ *
91
+ *
92
+ * @public
93
+ */
94
+ export declare class UpdateSdiSourceCommand extends UpdateSdiSourceCommand_base {
95
+ /** @internal type navigation helper, not in runtime. */
96
+ protected static __types: {
97
+ api: {
98
+ input: UpdateSdiSourceRequest;
99
+ output: UpdateSdiSourceResponse;
100
+ };
101
+ sdk: {
102
+ input: UpdateSdiSourceCommandInput;
103
+ output: UpdateSdiSourceCommandOutput;
104
+ };
105
+ };
106
+ }
@@ -20,6 +20,7 @@ export * from "./CreateNetworkCommand";
20
20
  export * from "./CreateNodeCommand";
21
21
  export * from "./CreateNodeRegistrationScriptCommand";
22
22
  export * from "./CreatePartnerInputCommand";
23
+ export * from "./CreateSdiSourceCommand";
23
24
  export * from "./CreateSignalMapCommand";
24
25
  export * from "./CreateTagsCommand";
25
26
  export * from "./DeleteChannelCommand";
@@ -37,6 +38,7 @@ export * from "./DeleteNetworkCommand";
37
38
  export * from "./DeleteNodeCommand";
38
39
  export * from "./DeleteReservationCommand";
39
40
  export * from "./DeleteScheduleCommand";
41
+ export * from "./DeleteSdiSourceCommand";
40
42
  export * from "./DeleteSignalMapCommand";
41
43
  export * from "./DeleteTagsCommand";
42
44
  export * from "./DescribeAccountConfigurationCommand";
@@ -54,6 +56,7 @@ export * from "./DescribeNodeCommand";
54
56
  export * from "./DescribeOfferingCommand";
55
57
  export * from "./DescribeReservationCommand";
56
58
  export * from "./DescribeScheduleCommand";
59
+ export * from "./DescribeSdiSourceCommand";
57
60
  export * from "./DescribeThumbnailsCommand";
58
61
  export * from "./GetCloudWatchAlarmTemplateCommand";
59
62
  export * from "./GetCloudWatchAlarmTemplateGroupCommand";
@@ -77,6 +80,7 @@ export * from "./ListNetworksCommand";
77
80
  export * from "./ListNodesCommand";
78
81
  export * from "./ListOfferingsCommand";
79
82
  export * from "./ListReservationsCommand";
83
+ export * from "./ListSdiSourcesCommand";
80
84
  export * from "./ListSignalMapsCommand";
81
85
  export * from "./ListTagsForResourceCommand";
82
86
  export * from "./ListVersionsCommand";
@@ -113,3 +117,4 @@ export * from "./UpdateNetworkCommand";
113
117
  export * from "./UpdateNodeCommand";
114
118
  export * from "./UpdateNodeStateCommand";
115
119
  export * from "./UpdateReservationCommand";
120
+ export * from "./UpdateSdiSourceCommand";
@@ -3800,6 +3800,27 @@ export declare const NodeRole: {
3800
3800
  * @public
3801
3801
  */
3802
3802
  export type NodeRole = (typeof NodeRole)[keyof typeof NodeRole];
3803
+ /**
3804
+ * Used in DescribeNodeSummary, DescribeNodeResult.
3805
+ * @public
3806
+ */
3807
+ export interface SdiSourceMapping {
3808
+ /**
3809
+ * A number that uniquely identifies the SDI card on the node hardware.
3810
+ * @public
3811
+ */
3812
+ CardNumber?: number | undefined;
3813
+ /**
3814
+ * A number that uniquely identifies a port on the SDI card.
3815
+ * @public
3816
+ */
3817
+ ChannelNumber?: number | undefined;
3818
+ /**
3819
+ * The ID of the SdiSource to associate with this port on this card. You can use the ListSdiSources operation to discover all the IDs.
3820
+ * @public
3821
+ */
3822
+ SdiSource?: string | undefined;
3823
+ }
3803
3824
  /**
3804
3825
  * @public
3805
3826
  * @enum
@@ -3882,6 +3903,11 @@ export interface DescribeNodeSummary {
3882
3903
  * @public
3883
3904
  */
3884
3905
  State?: NodeState | undefined;
3906
+ /**
3907
+ * An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
3908
+ * @public
3909
+ */
3910
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
3885
3911
  }
3886
3912
  /**
3887
3913
  * Placeholder documentation for EventBridgeRuleTemplateGroupSummary
@@ -4369,6 +4395,7 @@ export declare const InputType: {
4369
4395
  readonly RTMP_PULL: "RTMP_PULL";
4370
4396
  readonly RTMP_PUSH: "RTMP_PUSH";
4371
4397
  readonly RTP_PUSH: "RTP_PUSH";
4398
+ readonly SDI: "SDI";
4372
4399
  readonly SMPTE_2110_RECEIVER_GROUP: "SMPTE_2110_RECEIVER_GROUP";
4373
4400
  readonly SRT_CALLER: "SRT_CALLER";
4374
4401
  readonly TS_FILE: "TS_FILE";
@@ -4487,6 +4514,11 @@ export interface Input {
4487
4514
  * @public
4488
4515
  */
4489
4516
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
4517
+ /**
4518
+ * SDI Sources for this Input.
4519
+ * @public
4520
+ */
4521
+ SdiSources?: string[] | undefined;
4490
4522
  }
4491
4523
  /**
4492
4524
  * A network route configuration.
@@ -5887,15 +5919,3 @@ export declare const M2tsSegmentationStyle: {
5887
5919
  * @public
5888
5920
  */
5889
5921
  export type M2tsSegmentationStyle = (typeof M2tsSegmentationStyle)[keyof typeof M2tsSegmentationStyle];
5890
- /**
5891
- * @public
5892
- * @enum
5893
- */
5894
- export declare const M2tsTimedMetadataBehavior: {
5895
- readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
5896
- readonly PASSTHROUGH: "PASSTHROUGH";
5897
- };
5898
- /**
5899
- * @public
5900
- */
5901
- export type M2tsTimedMetadataBehavior = (typeof M2tsTimedMetadataBehavior)[keyof typeof M2tsTimedMetadataBehavior];