@aws-sdk/client-mediaconnect 3.298.0 → 3.300.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +25 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +54 -0
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +48 -0
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +14 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +210 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +3 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +3 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +3 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +3 -0
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +25 -0
- package/dist-types/commands/ListEntitlementsCommand.d.ts +4 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +4 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +4 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +5 -0
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +4 -0
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +4 -0
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +4 -0
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +4 -0
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +4 -0
- package/dist-types/commands/StartFlowCommand.d.ts +3 -0
- package/dist-types/commands/StopFlowCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +20 -0
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +20 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +51 -0
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +44 -0
- package/package.json +12 -12
|
@@ -26,6 +26,31 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
|
|
|
26
26
|
* import { MediaConnectClient, AddFlowMediaStreamsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, AddFlowMediaStreamsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* MediaStreams: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Attributes: {
|
|
34
|
+
* Fmtp: {
|
|
35
|
+
* ChannelOrder: "STRING_VALUE",
|
|
36
|
+
* Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
37
|
+
* ExactFramerate: "STRING_VALUE",
|
|
38
|
+
* Par: "STRING_VALUE",
|
|
39
|
+
* Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
40
|
+
* ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
41
|
+
* Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
42
|
+
* },
|
|
43
|
+
* Lang: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ClockRate: Number("int"),
|
|
46
|
+
* Description: "STRING_VALUE",
|
|
47
|
+
* MediaStreamId: Number("int"), // required
|
|
48
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
49
|
+
* MediaStreamType: "video" || "audio" || "ancillary-data", // required
|
|
50
|
+
* VideoFormat: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* };
|
|
29
54
|
* const command = new AddFlowMediaStreamsCommand(input);
|
|
30
55
|
* const response = await client.send(command);
|
|
31
56
|
* ```
|
|
@@ -26,6 +26,60 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
|
|
|
26
26
|
* import { MediaConnectClient, AddFlowOutputsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, AddFlowOutputsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* Outputs: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* CidrAllowList: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* Destination: "STRING_VALUE",
|
|
38
|
+
* Encryption: {
|
|
39
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
40
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
41
|
+
* DeviceId: "STRING_VALUE",
|
|
42
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
43
|
+
* Region: "STRING_VALUE",
|
|
44
|
+
* ResourceId: "STRING_VALUE",
|
|
45
|
+
* RoleArn: "STRING_VALUE", // required
|
|
46
|
+
* SecretArn: "STRING_VALUE",
|
|
47
|
+
* Url: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* MaxLatency: Number("int"),
|
|
50
|
+
* MediaStreamOutputConfigurations: [
|
|
51
|
+
* {
|
|
52
|
+
* DestinationConfigurations: [
|
|
53
|
+
* {
|
|
54
|
+
* DestinationIp: "STRING_VALUE", // required
|
|
55
|
+
* DestinationPort: Number("int"), // required
|
|
56
|
+
* Interface: {
|
|
57
|
+
* Name: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
62
|
+
* EncodingParameters: {
|
|
63
|
+
* CompressionFactor: Number("double"), // required
|
|
64
|
+
* EncoderProfile: "main" || "high", // required
|
|
65
|
+
* },
|
|
66
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* MinLatency: Number("int"),
|
|
70
|
+
* Name: "STRING_VALUE",
|
|
71
|
+
* Port: Number("int"),
|
|
72
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos", // required
|
|
73
|
+
* RemoteId: "STRING_VALUE",
|
|
74
|
+
* SenderControlPort: Number("int"),
|
|
75
|
+
* SmoothingLatency: Number("int"),
|
|
76
|
+
* StreamId: "STRING_VALUE",
|
|
77
|
+
* VpcInterfaceAttachment: {
|
|
78
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
79
|
+
* },
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
82
|
+
* };
|
|
29
83
|
* const command = new AddFlowOutputsCommand(input);
|
|
30
84
|
* const response = await client.send(command);
|
|
31
85
|
* ```
|
|
@@ -26,6 +26,54 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
|
|
|
26
26
|
* import { MediaConnectClient, AddFlowSourcesCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, AddFlowSourcesCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* Sources: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Decryption: {
|
|
34
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
35
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
36
|
+
* DeviceId: "STRING_VALUE",
|
|
37
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
38
|
+
* Region: "STRING_VALUE",
|
|
39
|
+
* ResourceId: "STRING_VALUE",
|
|
40
|
+
* RoleArn: "STRING_VALUE", // required
|
|
41
|
+
* SecretArn: "STRING_VALUE",
|
|
42
|
+
* Url: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* Description: "STRING_VALUE",
|
|
45
|
+
* EntitlementArn: "STRING_VALUE",
|
|
46
|
+
* IngestPort: Number("int"),
|
|
47
|
+
* MaxBitrate: Number("int"),
|
|
48
|
+
* MaxLatency: Number("int"),
|
|
49
|
+
* MaxSyncBuffer: Number("int"),
|
|
50
|
+
* MediaStreamSourceConfigurations: [
|
|
51
|
+
* {
|
|
52
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
53
|
+
* InputConfigurations: [
|
|
54
|
+
* {
|
|
55
|
+
* InputPort: Number("int"), // required
|
|
56
|
+
* Interface: {
|
|
57
|
+
* Name: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* MinLatency: Number("int"),
|
|
65
|
+
* Name: "STRING_VALUE",
|
|
66
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
67
|
+
* SenderControlPort: Number("int"),
|
|
68
|
+
* SenderIpAddress: "STRING_VALUE",
|
|
69
|
+
* SourceListenerAddress: "STRING_VALUE",
|
|
70
|
+
* SourceListenerPort: Number("int"),
|
|
71
|
+
* StreamId: "STRING_VALUE",
|
|
72
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
73
|
+
* WhitelistCidr: "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* };
|
|
29
77
|
* const command = new AddFlowSourcesCommand(input);
|
|
30
78
|
* const response = await client.send(command);
|
|
31
79
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
|
|
|
26
26
|
* import { MediaConnectClient, AddFlowVpcInterfacesCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, AddFlowVpcInterfacesCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* VpcInterfaces: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* NetworkInterfaceType: "ena" || "efa",
|
|
35
|
+
* RoleArn: "STRING_VALUE", // required
|
|
36
|
+
* SecurityGroupIds: [ // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* SubnetId: "STRING_VALUE", // required
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
29
43
|
* const command = new AddFlowVpcInterfacesCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,216 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
26
26
|
* import { MediaConnectClient, CreateFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, CreateFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* AvailabilityZone: "STRING_VALUE",
|
|
31
|
+
* Entitlements: [
|
|
32
|
+
* {
|
|
33
|
+
* DataTransferSubscriberFeePercent: Number("int"),
|
|
34
|
+
* Description: "STRING_VALUE",
|
|
35
|
+
* Encryption: {
|
|
36
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
37
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
38
|
+
* DeviceId: "STRING_VALUE",
|
|
39
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
40
|
+
* Region: "STRING_VALUE",
|
|
41
|
+
* ResourceId: "STRING_VALUE",
|
|
42
|
+
* RoleArn: "STRING_VALUE", // required
|
|
43
|
+
* SecretArn: "STRING_VALUE",
|
|
44
|
+
* Url: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
47
|
+
* Name: "STRING_VALUE",
|
|
48
|
+
* Subscribers: [ // required
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* MediaStreams: [
|
|
54
|
+
* {
|
|
55
|
+
* Attributes: {
|
|
56
|
+
* Fmtp: {
|
|
57
|
+
* ChannelOrder: "STRING_VALUE",
|
|
58
|
+
* Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
59
|
+
* ExactFramerate: "STRING_VALUE",
|
|
60
|
+
* Par: "STRING_VALUE",
|
|
61
|
+
* Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
62
|
+
* ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
63
|
+
* Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
64
|
+
* },
|
|
65
|
+
* Lang: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* ClockRate: Number("int"),
|
|
68
|
+
* Description: "STRING_VALUE",
|
|
69
|
+
* MediaStreamId: Number("int"), // required
|
|
70
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
71
|
+
* MediaStreamType: "video" || "audio" || "ancillary-data", // required
|
|
72
|
+
* VideoFormat: "STRING_VALUE",
|
|
73
|
+
* },
|
|
74
|
+
* ],
|
|
75
|
+
* Name: "STRING_VALUE", // required
|
|
76
|
+
* Outputs: [
|
|
77
|
+
* {
|
|
78
|
+
* CidrAllowList: [
|
|
79
|
+
* "STRING_VALUE",
|
|
80
|
+
* ],
|
|
81
|
+
* Description: "STRING_VALUE",
|
|
82
|
+
* Destination: "STRING_VALUE",
|
|
83
|
+
* Encryption: {
|
|
84
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
85
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
86
|
+
* DeviceId: "STRING_VALUE",
|
|
87
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
88
|
+
* Region: "STRING_VALUE",
|
|
89
|
+
* ResourceId: "STRING_VALUE",
|
|
90
|
+
* RoleArn: "STRING_VALUE", // required
|
|
91
|
+
* SecretArn: "STRING_VALUE",
|
|
92
|
+
* Url: "STRING_VALUE",
|
|
93
|
+
* },
|
|
94
|
+
* MaxLatency: Number("int"),
|
|
95
|
+
* MediaStreamOutputConfigurations: [
|
|
96
|
+
* {
|
|
97
|
+
* DestinationConfigurations: [
|
|
98
|
+
* {
|
|
99
|
+
* DestinationIp: "STRING_VALUE", // required
|
|
100
|
+
* DestinationPort: Number("int"), // required
|
|
101
|
+
* Interface: {
|
|
102
|
+
* Name: "STRING_VALUE", // required
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* ],
|
|
106
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
107
|
+
* EncodingParameters: {
|
|
108
|
+
* CompressionFactor: Number("double"), // required
|
|
109
|
+
* EncoderProfile: "main" || "high", // required
|
|
110
|
+
* },
|
|
111
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
112
|
+
* },
|
|
113
|
+
* ],
|
|
114
|
+
* MinLatency: Number("int"),
|
|
115
|
+
* Name: "STRING_VALUE",
|
|
116
|
+
* Port: Number("int"),
|
|
117
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos", // required
|
|
118
|
+
* RemoteId: "STRING_VALUE",
|
|
119
|
+
* SenderControlPort: Number("int"),
|
|
120
|
+
* SmoothingLatency: Number("int"),
|
|
121
|
+
* StreamId: "STRING_VALUE",
|
|
122
|
+
* VpcInterfaceAttachment: {
|
|
123
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
124
|
+
* },
|
|
125
|
+
* },
|
|
126
|
+
* ],
|
|
127
|
+
* Source: {
|
|
128
|
+
* Decryption: {
|
|
129
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
130
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
131
|
+
* DeviceId: "STRING_VALUE",
|
|
132
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
133
|
+
* Region: "STRING_VALUE",
|
|
134
|
+
* ResourceId: "STRING_VALUE",
|
|
135
|
+
* RoleArn: "STRING_VALUE", // required
|
|
136
|
+
* SecretArn: "STRING_VALUE",
|
|
137
|
+
* Url: "STRING_VALUE",
|
|
138
|
+
* },
|
|
139
|
+
* Description: "STRING_VALUE",
|
|
140
|
+
* EntitlementArn: "STRING_VALUE",
|
|
141
|
+
* IngestPort: Number("int"),
|
|
142
|
+
* MaxBitrate: Number("int"),
|
|
143
|
+
* MaxLatency: Number("int"),
|
|
144
|
+
* MaxSyncBuffer: Number("int"),
|
|
145
|
+
* MediaStreamSourceConfigurations: [
|
|
146
|
+
* {
|
|
147
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
148
|
+
* InputConfigurations: [
|
|
149
|
+
* {
|
|
150
|
+
* InputPort: Number("int"), // required
|
|
151
|
+
* Interface: {
|
|
152
|
+
* Name: "STRING_VALUE", // required
|
|
153
|
+
* },
|
|
154
|
+
* },
|
|
155
|
+
* ],
|
|
156
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
157
|
+
* },
|
|
158
|
+
* ],
|
|
159
|
+
* MinLatency: Number("int"),
|
|
160
|
+
* Name: "STRING_VALUE",
|
|
161
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
162
|
+
* SenderControlPort: Number("int"),
|
|
163
|
+
* SenderIpAddress: "STRING_VALUE",
|
|
164
|
+
* SourceListenerAddress: "STRING_VALUE",
|
|
165
|
+
* SourceListenerPort: Number("int"),
|
|
166
|
+
* StreamId: "STRING_VALUE",
|
|
167
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
168
|
+
* WhitelistCidr: "STRING_VALUE",
|
|
169
|
+
* },
|
|
170
|
+
* SourceFailoverConfig: {
|
|
171
|
+
* FailoverMode: "MERGE" || "FAILOVER",
|
|
172
|
+
* RecoveryWindow: Number("int"),
|
|
173
|
+
* SourcePriority: {
|
|
174
|
+
* PrimarySource: "STRING_VALUE",
|
|
175
|
+
* },
|
|
176
|
+
* State: "ENABLED" || "DISABLED",
|
|
177
|
+
* },
|
|
178
|
+
* Sources: [
|
|
179
|
+
* {
|
|
180
|
+
* Decryption: {
|
|
181
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
182
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
183
|
+
* DeviceId: "STRING_VALUE",
|
|
184
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
185
|
+
* Region: "STRING_VALUE",
|
|
186
|
+
* ResourceId: "STRING_VALUE",
|
|
187
|
+
* RoleArn: "STRING_VALUE", // required
|
|
188
|
+
* SecretArn: "STRING_VALUE",
|
|
189
|
+
* Url: "STRING_VALUE",
|
|
190
|
+
* },
|
|
191
|
+
* Description: "STRING_VALUE",
|
|
192
|
+
* EntitlementArn: "STRING_VALUE",
|
|
193
|
+
* IngestPort: Number("int"),
|
|
194
|
+
* MaxBitrate: Number("int"),
|
|
195
|
+
* MaxLatency: Number("int"),
|
|
196
|
+
* MaxSyncBuffer: Number("int"),
|
|
197
|
+
* MediaStreamSourceConfigurations: [
|
|
198
|
+
* {
|
|
199
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
200
|
+
* InputConfigurations: [
|
|
201
|
+
* {
|
|
202
|
+
* InputPort: Number("int"), // required
|
|
203
|
+
* Interface: {
|
|
204
|
+
* Name: "STRING_VALUE", // required
|
|
205
|
+
* },
|
|
206
|
+
* },
|
|
207
|
+
* ],
|
|
208
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
209
|
+
* },
|
|
210
|
+
* ],
|
|
211
|
+
* MinLatency: Number("int"),
|
|
212
|
+
* Name: "STRING_VALUE",
|
|
213
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
214
|
+
* SenderControlPort: Number("int"),
|
|
215
|
+
* SenderIpAddress: "STRING_VALUE",
|
|
216
|
+
* SourceListenerAddress: "STRING_VALUE",
|
|
217
|
+
* SourceListenerPort: Number("int"),
|
|
218
|
+
* StreamId: "STRING_VALUE",
|
|
219
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
220
|
+
* WhitelistCidr: "STRING_VALUE",
|
|
221
|
+
* },
|
|
222
|
+
* ],
|
|
223
|
+
* VpcInterfaces: [
|
|
224
|
+
* {
|
|
225
|
+
* Name: "STRING_VALUE", // required
|
|
226
|
+
* NetworkInterfaceType: "ena" || "efa",
|
|
227
|
+
* RoleArn: "STRING_VALUE", // required
|
|
228
|
+
* SecurityGroupIds: [ // required
|
|
229
|
+
* "STRING_VALUE",
|
|
230
|
+
* ],
|
|
231
|
+
* SubnetId: "STRING_VALUE", // required
|
|
232
|
+
* },
|
|
233
|
+
* ],
|
|
234
|
+
* Maintenance: {
|
|
235
|
+
* MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday", // required
|
|
236
|
+
* MaintenanceStartHour: "STRING_VALUE", // required
|
|
237
|
+
* },
|
|
238
|
+
* };
|
|
29
239
|
* const command = new CreateFlowCommand(input);
|
|
30
240
|
* const response = await client.send(command);
|
|
31
241
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
26
26
|
* import { MediaConnectClient, DeleteFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, DeleteFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteFlowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
26
26
|
* import { MediaConnectClient, DescribeFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, DescribeFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeFlowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
|
|
|
26
26
|
* import { MediaConnectClient, DescribeOfferingCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, DescribeOfferingCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OfferingArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeOfferingCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
|
|
|
26
26
|
* import { MediaConnectClient, DescribeReservationCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, DescribeReservationCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ReservationArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeReservationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,31 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement
|
|
|
26
26
|
* import { MediaConnectClient, GrantFlowEntitlementsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, GrantFlowEntitlementsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Entitlements: [ // required
|
|
31
|
+
* {
|
|
32
|
+
* DataTransferSubscriberFeePercent: Number("int"),
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* Encryption: {
|
|
35
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
36
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
37
|
+
* DeviceId: "STRING_VALUE",
|
|
38
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
39
|
+
* Region: "STRING_VALUE",
|
|
40
|
+
* ResourceId: "STRING_VALUE",
|
|
41
|
+
* RoleArn: "STRING_VALUE", // required
|
|
42
|
+
* SecretArn: "STRING_VALUE",
|
|
43
|
+
* Url: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
46
|
+
* Name: "STRING_VALUE",
|
|
47
|
+
* Subscribers: [ // required
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* FlowArn: "STRING_VALUE", // required
|
|
53
|
+
* };
|
|
29
54
|
* const command = new GrantFlowEntitlementsCommand(input);
|
|
30
55
|
* const response = await client.send(command);
|
|
31
56
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse,
|
|
|
26
26
|
* import { MediaConnectClient, ListEntitlementsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, ListEntitlementsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListEntitlementsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
26
26
|
* import { MediaConnectClient, ListFlowsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, ListFlowsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListFlowsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met
|
|
|
26
26
|
* import { MediaConnectClient, ListOfferingsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, ListOfferingsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListOfferingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse,
|
|
|
26
26
|
* import { MediaConnectClient, ListReservationsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, ListReservationsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListReservationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { MediaConnectClient, ListTagsForResourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, ListTagsForResourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
|
|
|
26
26
|
* import { MediaConnectClient, PurchaseOfferingCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, PurchaseOfferingCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OfferingArn: "STRING_VALUE", // required
|
|
31
|
+
* ReservationName: "STRING_VALUE", // required
|
|
32
|
+
* Start: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new PurchaseOfferingCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RemoveFlowMediaStreamCommandOutput extends RemoveFlowMediaStrea
|
|
|
26
26
|
* import { MediaConnectClient, RemoveFlowMediaStreamCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, RemoveFlowMediaStreamCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RemoveFlowMediaStreamCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RemoveFlowOutputCommandOutput extends RemoveFlowOutputResponse,
|
|
|
26
26
|
* import { MediaConnectClient, RemoveFlowOutputCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, RemoveFlowOutputCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* OutputArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RemoveFlowOutputCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RemoveFlowSourceCommandOutput extends RemoveFlowSourceResponse,
|
|
|
26
26
|
* import { MediaConnectClient, RemoveFlowSourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, RemoveFlowSourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* SourceArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RemoveFlowSourceCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RemoveFlowVpcInterfaceCommandOutput extends RemoveFlowVpcInterf
|
|
|
26
26
|
* import { MediaConnectClient, RemoveFlowVpcInterfaceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, RemoveFlowVpcInterfaceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* VpcInterfaceName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RemoveFlowVpcInterfaceCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
|
|
|
26
26
|
* import { MediaConnectClient, RevokeFlowEntitlementCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, RevokeFlowEntitlementCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EntitlementArn: "STRING_VALUE", // required
|
|
31
|
+
* FlowArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RevokeFlowEntitlementCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
26
26
|
* import { MediaConnectClient, StartFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, StartFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartFlowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
26
26
|
* import { MediaConnectClient, StopFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, StopFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopFlowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaConnectClient, TagResourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, TagResourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaConnectClient, UntagResourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UntagResourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,22 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
26
26
|
* import { MediaConnectClient, UpdateFlowCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UpdateFlowCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* FlowArn: "STRING_VALUE", // required
|
|
31
|
+
* SourceFailoverConfig: {
|
|
32
|
+
* FailoverMode: "MERGE" || "FAILOVER",
|
|
33
|
+
* RecoveryWindow: Number("int"),
|
|
34
|
+
* SourcePriority: {
|
|
35
|
+
* PrimarySource: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* State: "ENABLED" || "DISABLED",
|
|
38
|
+
* },
|
|
39
|
+
* Maintenance: {
|
|
40
|
+
* MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
|
|
41
|
+
* MaintenanceScheduledDate: "STRING_VALUE",
|
|
42
|
+
* MaintenanceStartHour: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
29
45
|
* const command = new UpdateFlowCommand(input);
|
|
30
46
|
* const response = await client.send(command);
|
|
31
47
|
* ```
|
|
@@ -26,6 +26,26 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
|
|
|
26
26
|
* import { MediaConnectClient, UpdateFlowEntitlementCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UpdateFlowEntitlementCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Description: "STRING_VALUE",
|
|
31
|
+
* Encryption: {
|
|
32
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
33
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
34
|
+
* DeviceId: "STRING_VALUE",
|
|
35
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
36
|
+
* Region: "STRING_VALUE",
|
|
37
|
+
* ResourceId: "STRING_VALUE",
|
|
38
|
+
* RoleArn: "STRING_VALUE",
|
|
39
|
+
* SecretArn: "STRING_VALUE",
|
|
40
|
+
* Url: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* EntitlementArn: "STRING_VALUE", // required
|
|
43
|
+
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
44
|
+
* FlowArn: "STRING_VALUE", // required
|
|
45
|
+
* Subscribers: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
29
49
|
* const command = new UpdateFlowEntitlementCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -26,6 +26,26 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
|
|
|
26
26
|
* import { MediaConnectClient, UpdateFlowMediaStreamCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UpdateFlowMediaStreamCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Attributes: {
|
|
31
|
+
* Fmtp: {
|
|
32
|
+
* ChannelOrder: "STRING_VALUE",
|
|
33
|
+
* Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
34
|
+
* ExactFramerate: "STRING_VALUE",
|
|
35
|
+
* Par: "STRING_VALUE",
|
|
36
|
+
* Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
37
|
+
* ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
38
|
+
* Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
39
|
+
* },
|
|
40
|
+
* Lang: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* ClockRate: Number("int"),
|
|
43
|
+
* Description: "STRING_VALUE",
|
|
44
|
+
* FlowArn: "STRING_VALUE", // required
|
|
45
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
46
|
+
* MediaStreamType: "video" || "audio" || "ancillary-data",
|
|
47
|
+
* VideoFormat: "STRING_VALUE",
|
|
48
|
+
* };
|
|
29
49
|
* const command = new UpdateFlowMediaStreamCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -26,6 +26,57 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
26
26
|
* import { MediaConnectClient, UpdateFlowOutputCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UpdateFlowOutputCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CidrAllowList: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* Destination: "STRING_VALUE",
|
|
35
|
+
* Encryption: {
|
|
36
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
37
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
38
|
+
* DeviceId: "STRING_VALUE",
|
|
39
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
40
|
+
* Region: "STRING_VALUE",
|
|
41
|
+
* ResourceId: "STRING_VALUE",
|
|
42
|
+
* RoleArn: "STRING_VALUE",
|
|
43
|
+
* SecretArn: "STRING_VALUE",
|
|
44
|
+
* Url: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* FlowArn: "STRING_VALUE", // required
|
|
47
|
+
* MaxLatency: Number("int"),
|
|
48
|
+
* MediaStreamOutputConfigurations: [
|
|
49
|
+
* {
|
|
50
|
+
* DestinationConfigurations: [
|
|
51
|
+
* {
|
|
52
|
+
* DestinationIp: "STRING_VALUE", // required
|
|
53
|
+
* DestinationPort: Number("int"), // required
|
|
54
|
+
* Interface: {
|
|
55
|
+
* Name: "STRING_VALUE", // required
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
60
|
+
* EncodingParameters: {
|
|
61
|
+
* CompressionFactor: Number("double"), // required
|
|
62
|
+
* EncoderProfile: "main" || "high", // required
|
|
63
|
+
* },
|
|
64
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* MinLatency: Number("int"),
|
|
68
|
+
* OutputArn: "STRING_VALUE", // required
|
|
69
|
+
* Port: Number("int"),
|
|
70
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
71
|
+
* RemoteId: "STRING_VALUE",
|
|
72
|
+
* SenderControlPort: Number("int"),
|
|
73
|
+
* SenderIpAddress: "STRING_VALUE",
|
|
74
|
+
* SmoothingLatency: Number("int"),
|
|
75
|
+
* StreamId: "STRING_VALUE",
|
|
76
|
+
* VpcInterfaceAttachment: {
|
|
77
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* };
|
|
29
80
|
* const command = new UpdateFlowOutputCommand(input);
|
|
30
81
|
* const response = await client.send(command);
|
|
31
82
|
* ```
|
|
@@ -26,6 +26,50 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
|
|
|
26
26
|
* import { MediaConnectClient, UpdateFlowSourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
27
|
* // const { MediaConnectClient, UpdateFlowSourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
28
|
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Decryption: {
|
|
31
|
+
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
32
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
33
|
+
* DeviceId: "STRING_VALUE",
|
|
34
|
+
* KeyType: "speke" || "static-key" || "srt-password",
|
|
35
|
+
* Region: "STRING_VALUE",
|
|
36
|
+
* ResourceId: "STRING_VALUE",
|
|
37
|
+
* RoleArn: "STRING_VALUE",
|
|
38
|
+
* SecretArn: "STRING_VALUE",
|
|
39
|
+
* Url: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* EntitlementArn: "STRING_VALUE",
|
|
43
|
+
* FlowArn: "STRING_VALUE", // required
|
|
44
|
+
* IngestPort: Number("int"),
|
|
45
|
+
* MaxBitrate: Number("int"),
|
|
46
|
+
* MaxLatency: Number("int"),
|
|
47
|
+
* MaxSyncBuffer: Number("int"),
|
|
48
|
+
* MediaStreamSourceConfigurations: [
|
|
49
|
+
* {
|
|
50
|
+
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
51
|
+
* InputConfigurations: [
|
|
52
|
+
* {
|
|
53
|
+
* InputPort: Number("int"), // required
|
|
54
|
+
* Interface: {
|
|
55
|
+
* Name: "STRING_VALUE", // required
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* MediaStreamName: "STRING_VALUE", // required
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* MinLatency: Number("int"),
|
|
63
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
64
|
+
* SenderControlPort: Number("int"),
|
|
65
|
+
* SenderIpAddress: "STRING_VALUE",
|
|
66
|
+
* SourceArn: "STRING_VALUE", // required
|
|
67
|
+
* SourceListenerAddress: "STRING_VALUE",
|
|
68
|
+
* SourceListenerPort: Number("int"),
|
|
69
|
+
* StreamId: "STRING_VALUE",
|
|
70
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
71
|
+
* WhitelistCidr: "STRING_VALUE",
|
|
72
|
+
* };
|
|
29
73
|
* const command = new UpdateFlowSourceCommand(input);
|
|
30
74
|
* const response = await client.send(command);
|
|
31
75
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,23 +21,23 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
57
57
|
"tslib": "^2.5.0"
|