@aws-sdk/client-mediaconnect 3.300.0 → 3.303.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/models/models_0.js +120 -141
- package/dist-es/models/models_0.js +120 -141
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +5 -5
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +12 -12
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +9 -9
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +4 -4
- package/dist-types/commands/CreateFlowCommand.d.ts +29 -29
- package/dist-types/commands/DeleteFlowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFlowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +5 -5
- package/dist-types/commands/ListEntitlementsCommand.d.ts +1 -1
- package/dist-types/commands/ListFlowsCommand.d.ts +1 -1
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/ListReservationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +1 -1
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/StartFlowCommand.d.ts +1 -1
- package/dist-types/commands/StopFlowCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFlowCommand.d.ts +4 -4
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +3 -3
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +3 -3
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +10 -10
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +225 -120
- package/dist-types/ts3.4/models/models_0.d.ts +147 -120
- package/package.json +35 -35
|
@@ -26,11 +26,11 @@ 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 = {
|
|
29
|
+
* const input = { // AddFlowSourcesRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
|
-
* Sources: [ // required
|
|
32
|
-
* {
|
|
33
|
-
* Decryption: {
|
|
31
|
+
* Sources: [ // __listOfSetSourceRequest // required
|
|
32
|
+
* { // SetSourceRequest
|
|
33
|
+
* Decryption: { // Encryption
|
|
34
34
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
35
35
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
36
36
|
* DeviceId: "STRING_VALUE",
|
|
@@ -47,13 +47,13 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
|
|
|
47
47
|
* MaxBitrate: Number("int"),
|
|
48
48
|
* MaxLatency: Number("int"),
|
|
49
49
|
* MaxSyncBuffer: Number("int"),
|
|
50
|
-
* MediaStreamSourceConfigurations: [
|
|
51
|
-
* {
|
|
50
|
+
* MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfigurationRequest
|
|
51
|
+
* { // MediaStreamSourceConfigurationRequest
|
|
52
52
|
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
53
|
-
* InputConfigurations: [
|
|
54
|
-
* {
|
|
53
|
+
* InputConfigurations: [ // __listOfInputConfigurationRequest
|
|
54
|
+
* { // InputConfigurationRequest
|
|
55
55
|
* InputPort: Number("int"), // required
|
|
56
|
-
* Interface: {
|
|
56
|
+
* Interface: { // InterfaceRequest
|
|
57
57
|
* Name: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
59
59
|
* },
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // AddFlowVpcInterfacesRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
|
-
* VpcInterfaces: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* VpcInterfaces: [ // __listOfVpcInterfaceRequest // required
|
|
32
|
+
* { // VpcInterfaceRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* NetworkInterfaceType: "ena" || "efa",
|
|
35
35
|
* RoleArn: "STRING_VALUE", // required
|
|
36
|
-
* SecurityGroupIds: [ // required
|
|
36
|
+
* SecurityGroupIds: [ // __listOf__string // required
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* SubnetId: "STRING_VALUE", // required
|
|
@@ -26,13 +26,13 @@ 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 = {
|
|
29
|
+
* const input = { // CreateFlowRequest
|
|
30
30
|
* AvailabilityZone: "STRING_VALUE",
|
|
31
|
-
* Entitlements: [
|
|
32
|
-
* {
|
|
31
|
+
* Entitlements: [ // __listOfGrantEntitlementRequest
|
|
32
|
+
* { // GrantEntitlementRequest
|
|
33
33
|
* DataTransferSubscriberFeePercent: Number("int"),
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Encryption: {
|
|
35
|
+
* Encryption: { // Encryption
|
|
36
36
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
37
37
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
38
38
|
* DeviceId: "STRING_VALUE",
|
|
@@ -45,15 +45,15 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
45
45
|
* },
|
|
46
46
|
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
47
47
|
* Name: "STRING_VALUE",
|
|
48
|
-
* Subscribers: [ // required
|
|
48
|
+
* Subscribers: [ // __listOf__string // required
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* },
|
|
52
52
|
* ],
|
|
53
|
-
* MediaStreams: [
|
|
54
|
-
* {
|
|
55
|
-
* Attributes: {
|
|
56
|
-
* Fmtp: {
|
|
53
|
+
* MediaStreams: [ // __listOfAddMediaStreamRequest
|
|
54
|
+
* { // AddMediaStreamRequest
|
|
55
|
+
* Attributes: { // MediaStreamAttributesRequest
|
|
56
|
+
* Fmtp: { // FmtpRequest
|
|
57
57
|
* ChannelOrder: "STRING_VALUE",
|
|
58
58
|
* Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
59
59
|
* ExactFramerate: "STRING_VALUE",
|
|
@@ -73,8 +73,8 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
73
73
|
* },
|
|
74
74
|
* ],
|
|
75
75
|
* Name: "STRING_VALUE", // required
|
|
76
|
-
* Outputs: [
|
|
77
|
-
* {
|
|
76
|
+
* Outputs: [ // __listOfAddOutputRequest
|
|
77
|
+
* { // AddOutputRequest
|
|
78
78
|
* CidrAllowList: [
|
|
79
79
|
* "STRING_VALUE",
|
|
80
80
|
* ],
|
|
@@ -92,19 +92,19 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
92
92
|
* Url: "STRING_VALUE",
|
|
93
93
|
* },
|
|
94
94
|
* MaxLatency: Number("int"),
|
|
95
|
-
* MediaStreamOutputConfigurations: [
|
|
96
|
-
* {
|
|
97
|
-
* DestinationConfigurations: [
|
|
98
|
-
* {
|
|
95
|
+
* MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfigurationRequest
|
|
96
|
+
* { // MediaStreamOutputConfigurationRequest
|
|
97
|
+
* DestinationConfigurations: [ // __listOfDestinationConfigurationRequest
|
|
98
|
+
* { // DestinationConfigurationRequest
|
|
99
99
|
* DestinationIp: "STRING_VALUE", // required
|
|
100
100
|
* DestinationPort: Number("int"), // required
|
|
101
|
-
* Interface: {
|
|
101
|
+
* Interface: { // InterfaceRequest
|
|
102
102
|
* Name: "STRING_VALUE", // required
|
|
103
103
|
* },
|
|
104
104
|
* },
|
|
105
105
|
* ],
|
|
106
106
|
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
107
|
-
* EncodingParameters: {
|
|
107
|
+
* EncodingParameters: { // EncodingParametersRequest
|
|
108
108
|
* CompressionFactor: Number("double"), // required
|
|
109
109
|
* EncoderProfile: "main" || "high", // required
|
|
110
110
|
* },
|
|
@@ -119,12 +119,12 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
119
119
|
* SenderControlPort: Number("int"),
|
|
120
120
|
* SmoothingLatency: Number("int"),
|
|
121
121
|
* StreamId: "STRING_VALUE",
|
|
122
|
-
* VpcInterfaceAttachment: {
|
|
122
|
+
* VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
123
123
|
* VpcInterfaceName: "STRING_VALUE",
|
|
124
124
|
* },
|
|
125
125
|
* },
|
|
126
126
|
* ],
|
|
127
|
-
* Source: {
|
|
127
|
+
* Source: { // SetSourceRequest
|
|
128
128
|
* Decryption: {
|
|
129
129
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
130
130
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
@@ -142,11 +142,11 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
142
142
|
* MaxBitrate: Number("int"),
|
|
143
143
|
* MaxLatency: Number("int"),
|
|
144
144
|
* MaxSyncBuffer: Number("int"),
|
|
145
|
-
* MediaStreamSourceConfigurations: [
|
|
146
|
-
* {
|
|
145
|
+
* MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfigurationRequest
|
|
146
|
+
* { // MediaStreamSourceConfigurationRequest
|
|
147
147
|
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
148
|
-
* InputConfigurations: [
|
|
149
|
-
* {
|
|
148
|
+
* InputConfigurations: [ // __listOfInputConfigurationRequest
|
|
149
|
+
* { // InputConfigurationRequest
|
|
150
150
|
* InputPort: Number("int"), // required
|
|
151
151
|
* Interface: {
|
|
152
152
|
* Name: "STRING_VALUE", // required
|
|
@@ -167,15 +167,15 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
167
167
|
* VpcInterfaceName: "STRING_VALUE",
|
|
168
168
|
* WhitelistCidr: "STRING_VALUE",
|
|
169
169
|
* },
|
|
170
|
-
* SourceFailoverConfig: {
|
|
170
|
+
* SourceFailoverConfig: { // FailoverConfig
|
|
171
171
|
* FailoverMode: "MERGE" || "FAILOVER",
|
|
172
172
|
* RecoveryWindow: Number("int"),
|
|
173
|
-
* SourcePriority: {
|
|
173
|
+
* SourcePriority: { // SourcePriority
|
|
174
174
|
* PrimarySource: "STRING_VALUE",
|
|
175
175
|
* },
|
|
176
176
|
* State: "ENABLED" || "DISABLED",
|
|
177
177
|
* },
|
|
178
|
-
* Sources: [
|
|
178
|
+
* Sources: [ // __listOfSetSourceRequest
|
|
179
179
|
* {
|
|
180
180
|
* Decryption: {
|
|
181
181
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
@@ -220,8 +220,8 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
220
220
|
* WhitelistCidr: "STRING_VALUE",
|
|
221
221
|
* },
|
|
222
222
|
* ],
|
|
223
|
-
* VpcInterfaces: [
|
|
224
|
-
* {
|
|
223
|
+
* VpcInterfaces: [ // __listOfVpcInterfaceRequest
|
|
224
|
+
* { // VpcInterfaceRequest
|
|
225
225
|
* Name: "STRING_VALUE", // required
|
|
226
226
|
* NetworkInterfaceType: "ena" || "efa",
|
|
227
227
|
* RoleArn: "STRING_VALUE", // required
|
|
@@ -231,7 +231,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
231
231
|
* SubnetId: "STRING_VALUE", // required
|
|
232
232
|
* },
|
|
233
233
|
* ],
|
|
234
|
-
* Maintenance: {
|
|
234
|
+
* Maintenance: { // AddMaintenance
|
|
235
235
|
* MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday", // required
|
|
236
236
|
* MaintenanceStartHour: "STRING_VALUE", // required
|
|
237
237
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteFlowRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteFlowCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeFlowRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeFlowCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeOfferingRequest
|
|
30
30
|
* OfferingArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeOfferingCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeReservationRequest
|
|
30
30
|
* ReservationArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeReservationCommand(input);
|
|
@@ -26,12 +26,12 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // GrantFlowEntitlementsRequest
|
|
30
|
+
* Entitlements: [ // __listOfGrantEntitlementRequest // required
|
|
31
|
+
* { // GrantEntitlementRequest
|
|
32
32
|
* DataTransferSubscriberFeePercent: Number("int"),
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* Encryption: {
|
|
34
|
+
* Encryption: { // Encryption
|
|
35
35
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
36
36
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
37
37
|
* DeviceId: "STRING_VALUE",
|
|
@@ -44,7 +44,7 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement
|
|
|
44
44
|
* },
|
|
45
45
|
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
46
46
|
* Name: "STRING_VALUE",
|
|
47
|
-
* Subscribers: [ // required
|
|
47
|
+
* Subscribers: [ // __listOf__string // required
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListEntitlementsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListFlowsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListOfferingsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListReservationsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PurchaseOfferingRequest
|
|
30
30
|
* OfferingArn: "STRING_VALUE", // required
|
|
31
31
|
* ReservationName: "STRING_VALUE", // required
|
|
32
32
|
* Start: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RemoveFlowMediaStreamRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* MediaStreamName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RemoveFlowOutputRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* OutputArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RemoveFlowSourceRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* SourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RemoveFlowVpcInterfaceRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* VpcInterfaceName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RevokeFlowEntitlementRequest
|
|
30
30
|
* EntitlementArn: "STRING_VALUE", // required
|
|
31
31
|
* FlowArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StartFlowRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartFlowCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StopFlowRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopFlowCommand(input);
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // __mapOf__string // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,17 +26,17 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateFlowRequest
|
|
30
30
|
* FlowArn: "STRING_VALUE", // required
|
|
31
|
-
* SourceFailoverConfig: {
|
|
31
|
+
* SourceFailoverConfig: { // UpdateFailoverConfig
|
|
32
32
|
* FailoverMode: "MERGE" || "FAILOVER",
|
|
33
33
|
* RecoveryWindow: Number("int"),
|
|
34
|
-
* SourcePriority: {
|
|
34
|
+
* SourcePriority: { // SourcePriority
|
|
35
35
|
* PrimarySource: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* State: "ENABLED" || "DISABLED",
|
|
38
38
|
* },
|
|
39
|
-
* Maintenance: {
|
|
39
|
+
* Maintenance: { // UpdateMaintenance
|
|
40
40
|
* MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
|
|
41
41
|
* MaintenanceScheduledDate: "STRING_VALUE",
|
|
42
42
|
* MaintenanceStartHour: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateFlowEntitlementRequest
|
|
30
30
|
* Description: "STRING_VALUE",
|
|
31
|
-
* Encryption: {
|
|
31
|
+
* Encryption: { // UpdateEncryption
|
|
32
32
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
33
33
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
34
34
|
* DeviceId: "STRING_VALUE",
|
|
@@ -42,7 +42,7 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
|
|
|
42
42
|
* EntitlementArn: "STRING_VALUE", // required
|
|
43
43
|
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
44
44
|
* FlowArn: "STRING_VALUE", // required
|
|
45
|
-
* Subscribers: [
|
|
45
|
+
* Subscribers: [ // __listOf__string
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* };
|
|
@@ -26,9 +26,9 @@ 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: {
|
|
29
|
+
* const input = { // UpdateFlowMediaStreamRequest
|
|
30
|
+
* Attributes: { // MediaStreamAttributesRequest
|
|
31
|
+
* Fmtp: { // FmtpRequest
|
|
32
32
|
* ChannelOrder: "STRING_VALUE",
|
|
33
33
|
* Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
34
34
|
* ExactFramerate: "STRING_VALUE",
|
|
@@ -26,13 +26,13 @@ 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: [
|
|
29
|
+
* const input = { // UpdateFlowOutputRequest
|
|
30
|
+
* CidrAllowList: [ // __listOf__string
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
34
|
* Destination: "STRING_VALUE",
|
|
35
|
-
* Encryption: {
|
|
35
|
+
* Encryption: { // UpdateEncryption
|
|
36
36
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
37
37
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
38
38
|
* DeviceId: "STRING_VALUE",
|
|
@@ -45,19 +45,19 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
45
45
|
* },
|
|
46
46
|
* FlowArn: "STRING_VALUE", // required
|
|
47
47
|
* MaxLatency: Number("int"),
|
|
48
|
-
* MediaStreamOutputConfigurations: [
|
|
49
|
-
* {
|
|
50
|
-
* DestinationConfigurations: [
|
|
51
|
-
* {
|
|
48
|
+
* MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfigurationRequest
|
|
49
|
+
* { // MediaStreamOutputConfigurationRequest
|
|
50
|
+
* DestinationConfigurations: [ // __listOfDestinationConfigurationRequest
|
|
51
|
+
* { // DestinationConfigurationRequest
|
|
52
52
|
* DestinationIp: "STRING_VALUE", // required
|
|
53
53
|
* DestinationPort: Number("int"), // required
|
|
54
|
-
* Interface: {
|
|
54
|
+
* Interface: { // InterfaceRequest
|
|
55
55
|
* Name: "STRING_VALUE", // required
|
|
56
56
|
* },
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
59
|
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
60
|
-
* EncodingParameters: {
|
|
60
|
+
* EncodingParameters: { // EncodingParametersRequest
|
|
61
61
|
* CompressionFactor: Number("double"), // required
|
|
62
62
|
* EncoderProfile: "main" || "high", // required
|
|
63
63
|
* },
|
|
@@ -73,7 +73,7 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
73
73
|
* SenderIpAddress: "STRING_VALUE",
|
|
74
74
|
* SmoothingLatency: Number("int"),
|
|
75
75
|
* StreamId: "STRING_VALUE",
|
|
76
|
-
* VpcInterfaceAttachment: {
|
|
76
|
+
* VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
77
77
|
* VpcInterfaceName: "STRING_VALUE",
|
|
78
78
|
* },
|
|
79
79
|
* };
|
|
@@ -26,8 +26,8 @@ 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: {
|
|
29
|
+
* const input = { // UpdateFlowSourceRequest
|
|
30
|
+
* Decryption: { // UpdateEncryption
|
|
31
31
|
* Algorithm: "aes128" || "aes192" || "aes256",
|
|
32
32
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
33
33
|
* DeviceId: "STRING_VALUE",
|
|
@@ -45,13 +45,13 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
|
|
|
45
45
|
* MaxBitrate: Number("int"),
|
|
46
46
|
* MaxLatency: Number("int"),
|
|
47
47
|
* MaxSyncBuffer: Number("int"),
|
|
48
|
-
* MediaStreamSourceConfigurations: [
|
|
49
|
-
* {
|
|
48
|
+
* MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfigurationRequest
|
|
49
|
+
* { // MediaStreamSourceConfigurationRequest
|
|
50
50
|
* EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
51
|
-
* InputConfigurations: [
|
|
52
|
-
* {
|
|
51
|
+
* InputConfigurations: [ // __listOfInputConfigurationRequest
|
|
52
|
+
* { // InputConfigurationRequest
|
|
53
53
|
* InputPort: Number("int"), // required
|
|
54
|
-
* Interface: {
|
|
54
|
+
* Interface: { // InterfaceRequest
|
|
55
55
|
* Name: "STRING_VALUE", // required
|
|
56
56
|
* },
|
|
57
57
|
* },
|