@aws-sdk/client-mediaconnect 3.50.0 → 3.53.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 (66) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/MediaConnectServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +129 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +367 -1355
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/MediaConnectServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +119 -1
  9. package/dist-es/protocols/Aws_restJson1.js +753 -1485
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/MediaConnectServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +65 -28
  13. package/dist-types/ts3.4/MediaConnect.d.ts +155 -0
  14. package/dist-types/ts3.4/MediaConnectClient.d.ts +103 -0
  15. package/dist-types/ts3.4/commands/AddFlowMediaStreamsCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/AddFlowOutputsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/AddFlowSourcesCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/AddFlowVpcInterfacesCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GrantFlowEntitlementsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListEntitlementsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListReservationsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/RemoveFlowMediaStreamCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/RemoveFlowOutputCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/RemoveFlowSourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/RemoveFlowVpcInterfaceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/RevokeFlowEntitlementCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UpdateFlowEntitlementCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateFlowMediaStreamCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/UpdateFlowOutputCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/UpdateFlowSourceCommand.d.ts +17 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +30 -0
  46. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  47. package/dist-types/ts3.4/index.d.ts +7 -0
  48. package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +6 -0
  49. package/dist-types/ts3.4/models/index.d.ts +1 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +1600 -0
  51. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  52. package/dist-types/ts3.4/pagination/ListEntitlementsPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/ListOfferingsPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/ListReservationsPaginator.d.ts +4 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  57. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +92 -0
  58. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  59. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  61. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  62. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  63. package/dist-types/ts3.4/waiters/waitForFlowActive.d.ts +7 -0
  64. package/dist-types/ts3.4/waiters/waitForFlowDeleted.d.ts +7 -0
  65. package/dist-types/ts3.4/waiters/waitForFlowStandby.d.ts +7 -0
  66. package/package.json +34 -34
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { MediaConnectServiceException } from "./models/MediaConnectServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from MediaConnect service.
4
+ */
5
+ export declare class MediaConnectServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
2
3
  export declare enum Colorimetry {
3
4
  BT2020 = "BT2020",
4
5
  BT2100 = "BT2100",
@@ -1313,79 +1314,107 @@ export declare namespace AddFlowMediaStreamsResponse {
1313
1314
  /**
1314
1315
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1315
1316
  */
1316
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
1317
- name: "BadRequestException";
1318
- $fault: "client";
1317
+ export declare class BadRequestException extends __BaseException {
1318
+ readonly name: "BadRequestException";
1319
+ readonly $fault: "client";
1319
1320
  /**
1320
1321
  * The error message returned by AWS Elemental MediaConnect.
1321
1322
  */
1322
1323
  Message: string | undefined;
1324
+ /**
1325
+ * @internal
1326
+ */
1327
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
1323
1328
  }
1324
1329
  /**
1325
1330
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1326
1331
  */
1327
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
1328
- name: "ForbiddenException";
1329
- $fault: "client";
1332
+ export declare class ForbiddenException extends __BaseException {
1333
+ readonly name: "ForbiddenException";
1334
+ readonly $fault: "client";
1330
1335
  /**
1331
1336
  * The error message returned by AWS Elemental MediaConnect.
1332
1337
  */
1333
1338
  Message: string | undefined;
1339
+ /**
1340
+ * @internal
1341
+ */
1342
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
1334
1343
  }
1335
1344
  /**
1336
1345
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1337
1346
  */
1338
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
1339
- name: "InternalServerErrorException";
1340
- $fault: "server";
1347
+ export declare class InternalServerErrorException extends __BaseException {
1348
+ readonly name: "InternalServerErrorException";
1349
+ readonly $fault: "server";
1341
1350
  /**
1342
1351
  * The error message returned by AWS Elemental MediaConnect.
1343
1352
  */
1344
1353
  Message: string | undefined;
1354
+ /**
1355
+ * @internal
1356
+ */
1357
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
1345
1358
  }
1346
1359
  /**
1347
1360
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1348
1361
  */
1349
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
1350
- name: "NotFoundException";
1351
- $fault: "client";
1362
+ export declare class NotFoundException extends __BaseException {
1363
+ readonly name: "NotFoundException";
1364
+ readonly $fault: "client";
1352
1365
  /**
1353
1366
  * The error message returned by AWS Elemental MediaConnect.
1354
1367
  */
1355
1368
  Message: string | undefined;
1369
+ /**
1370
+ * @internal
1371
+ */
1372
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1356
1373
  }
1357
1374
  /**
1358
1375
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1359
1376
  */
1360
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
1361
- name: "ServiceUnavailableException";
1362
- $fault: "server";
1377
+ export declare class ServiceUnavailableException extends __BaseException {
1378
+ readonly name: "ServiceUnavailableException";
1379
+ readonly $fault: "server";
1363
1380
  /**
1364
1381
  * The error message returned by AWS Elemental MediaConnect.
1365
1382
  */
1366
1383
  Message: string | undefined;
1384
+ /**
1385
+ * @internal
1386
+ */
1387
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1367
1388
  }
1368
1389
  /**
1369
1390
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1370
1391
  */
1371
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
1372
- name: "TooManyRequestsException";
1373
- $fault: "client";
1392
+ export declare class TooManyRequestsException extends __BaseException {
1393
+ readonly name: "TooManyRequestsException";
1394
+ readonly $fault: "client";
1374
1395
  /**
1375
1396
  * The error message returned by AWS Elemental MediaConnect.
1376
1397
  */
1377
1398
  Message: string | undefined;
1399
+ /**
1400
+ * @internal
1401
+ */
1402
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
1378
1403
  }
1379
1404
  /**
1380
1405
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1381
1406
  */
1382
- export interface AddFlowOutputs420Exception extends __SmithyException, $MetadataBearer {
1383
- name: "AddFlowOutputs420Exception";
1384
- $fault: "client";
1407
+ export declare class AddFlowOutputs420Exception extends __BaseException {
1408
+ readonly name: "AddFlowOutputs420Exception";
1409
+ readonly $fault: "client";
1385
1410
  /**
1386
1411
  * The error message returned by AWS Elemental MediaConnect.
1387
1412
  */
1388
1413
  Message: string | undefined;
1414
+ /**
1415
+ * @internal
1416
+ */
1417
+ constructor(opts: __ExceptionOptionType<AddFlowOutputs420Exception, __BaseException>);
1389
1418
  }
1390
1419
  /**
1391
1420
  * A request to add outputs to the specified flow.
@@ -1495,13 +1524,17 @@ export declare namespace AddFlowVpcInterfacesResponse {
1495
1524
  /**
1496
1525
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1497
1526
  */
1498
- export interface CreateFlow420Exception extends __SmithyException, $MetadataBearer {
1499
- name: "CreateFlow420Exception";
1500
- $fault: "client";
1527
+ export declare class CreateFlow420Exception extends __BaseException {
1528
+ readonly name: "CreateFlow420Exception";
1529
+ readonly $fault: "client";
1501
1530
  /**
1502
1531
  * The error message returned by AWS Elemental MediaConnect.
1503
1532
  */
1504
1533
  Message: string | undefined;
1534
+ /**
1535
+ * @internal
1536
+ */
1537
+ constructor(opts: __ExceptionOptionType<CreateFlow420Exception, __BaseException>);
1505
1538
  }
1506
1539
  export declare enum FailoverMode {
1507
1540
  FAILOVER = "FAILOVER",
@@ -1788,13 +1821,17 @@ export declare namespace DescribeReservationResponse {
1788
1821
  /**
1789
1822
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1790
1823
  */
1791
- export interface GrantFlowEntitlements420Exception extends __SmithyException, $MetadataBearer {
1792
- name: "GrantFlowEntitlements420Exception";
1793
- $fault: "client";
1824
+ export declare class GrantFlowEntitlements420Exception extends __BaseException {
1825
+ readonly name: "GrantFlowEntitlements420Exception";
1826
+ readonly $fault: "client";
1794
1827
  /**
1795
1828
  * The error message returned by AWS Elemental MediaConnect.
1796
1829
  */
1797
1830
  Message: string | undefined;
1831
+ /**
1832
+ * @internal
1833
+ */
1834
+ constructor(opts: __ExceptionOptionType<GrantFlowEntitlements420Exception, __BaseException>);
1798
1835
  }
1799
1836
  /**
1800
1837
  * A request to grant entitlements on a flow.
@@ -0,0 +1,155 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
3
+ import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
4
+ import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
5
+ import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
6
+ import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
7
+ import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
8
+ import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
9
+ import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
10
+ import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
11
+ import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
12
+ import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
13
+ import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
14
+ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
15
+ import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
16
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
+ import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
18
+ import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
19
+ import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
20
+ import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
21
+ import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
22
+ import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
23
+ import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
24
+ import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
25
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
+ import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
28
+ import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
29
+ import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
30
+ import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
31
+ import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
32
+ import { MediaConnectClient } from "./MediaConnectClient";
33
+
34
+ export declare class MediaConnect extends MediaConnectClient {
35
+
36
+ addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowMediaStreamsCommandOutput>;
37
+ addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
38
+ addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
39
+
40
+ addFlowOutputs(args: AddFlowOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowOutputsCommandOutput>;
41
+ addFlowOutputs(args: AddFlowOutputsCommandInput, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
42
+ addFlowOutputs(args: AddFlowOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
43
+
44
+ addFlowSources(args: AddFlowSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowSourcesCommandOutput>;
45
+ addFlowSources(args: AddFlowSourcesCommandInput, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
46
+ addFlowSources(args: AddFlowSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
47
+
48
+ addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowVpcInterfacesCommandOutput>;
49
+ addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
50
+ addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
51
+
52
+ createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
53
+ createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
54
+ createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
55
+
56
+ deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
57
+ deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
58
+ deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
59
+
60
+ describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
61
+ describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
62
+ describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
63
+
64
+ describeOffering(args: DescribeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOfferingCommandOutput>;
65
+ describeOffering(args: DescribeOfferingCommandInput, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
66
+ describeOffering(args: DescribeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
67
+
68
+ describeReservation(args: DescribeReservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservationCommandOutput>;
69
+ describeReservation(args: DescribeReservationCommandInput, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
70
+ describeReservation(args: DescribeReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
71
+
72
+ grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GrantFlowEntitlementsCommandOutput>;
73
+ grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
74
+ grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
75
+
76
+ listEntitlements(args: ListEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitlementsCommandOutput>;
77
+ listEntitlements(args: ListEntitlementsCommandInput, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
78
+ listEntitlements(args: ListEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
79
+
80
+ listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
81
+ listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
82
+ listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
83
+
84
+ listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
85
+ listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
86
+ listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
87
+
88
+ listReservations(args: ListReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListReservationsCommandOutput>;
89
+ listReservations(args: ListReservationsCommandInput, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
90
+ listReservations(args: ListReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
91
+
92
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
93
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
94
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
95
+
96
+ purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
97
+ purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
98
+ purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
99
+
100
+ removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowMediaStreamCommandOutput>;
101
+ removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
102
+ removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
103
+
104
+ removeFlowOutput(args: RemoveFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowOutputCommandOutput>;
105
+ removeFlowOutput(args: RemoveFlowOutputCommandInput, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
106
+ removeFlowOutput(args: RemoveFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
107
+
108
+ removeFlowSource(args: RemoveFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowSourceCommandOutput>;
109
+ removeFlowSource(args: RemoveFlowSourceCommandInput, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
110
+ removeFlowSource(args: RemoveFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
111
+
112
+ removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowVpcInterfaceCommandOutput>;
113
+ removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
114
+ removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
115
+
116
+ revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<RevokeFlowEntitlementCommandOutput>;
117
+ revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
118
+ revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
119
+
120
+ startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
121
+ startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
122
+ startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
123
+
124
+ stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
125
+ stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
126
+ stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
127
+
128
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
129
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
130
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
131
+
132
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
133
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
134
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
135
+
136
+ updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
137
+ updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
138
+ updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
139
+
140
+ updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowEntitlementCommandOutput>;
141
+ updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
142
+ updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
143
+
144
+ updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowMediaStreamCommandOutput>;
145
+ updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
146
+ updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
147
+
148
+ updateFlowOutput(args: UpdateFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowOutputCommandOutput>;
149
+ updateFlowOutput(args: UpdateFlowOutputCommandInput, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
150
+ updateFlowOutput(args: UpdateFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
151
+
152
+ updateFlowSource(args: UpdateFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowSourceCommandOutput>;
153
+ updateFlowSource(args: UpdateFlowSourceCommandInput, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
154
+ updateFlowSource(args: UpdateFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
155
+ }
@@ -0,0 +1,103 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
10
+ import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
11
+ import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
12
+ import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
13
+ import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
14
+ import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
15
+ import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
16
+ import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
17
+ import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
18
+ import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
19
+ import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
20
+ import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
21
+ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
22
+ import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
23
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
24
+ import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
25
+ import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
26
+ import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
27
+ import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
28
+ import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
29
+ import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
30
+ import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
31
+ import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
32
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
33
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
34
+ import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
35
+ import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
36
+ import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
37
+ import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
38
+ import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
39
+ export declare type ServiceInputTypes = AddFlowMediaStreamsCommandInput | AddFlowOutputsCommandInput | AddFlowSourcesCommandInput | AddFlowVpcInterfacesCommandInput | CreateFlowCommandInput | DeleteFlowCommandInput | DescribeFlowCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | GrantFlowEntitlementsCommandInput | ListEntitlementsCommandInput | ListFlowsCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RemoveFlowMediaStreamCommandInput | RemoveFlowOutputCommandInput | RemoveFlowSourceCommandInput | RemoveFlowVpcInterfaceCommandInput | RevokeFlowEntitlementCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFlowCommandInput | UpdateFlowEntitlementCommandInput | UpdateFlowMediaStreamCommandInput | UpdateFlowOutputCommandInput | UpdateFlowSourceCommandInput;
40
+ export declare type ServiceOutputTypes = AddFlowMediaStreamsCommandOutput | AddFlowOutputsCommandOutput | AddFlowSourcesCommandOutput | AddFlowVpcInterfacesCommandOutput | CreateFlowCommandOutput | DeleteFlowCommandOutput | DescribeFlowCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | GrantFlowEntitlementsCommandOutput | ListEntitlementsCommandOutput | ListFlowsCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RemoveFlowMediaStreamCommandOutput | RemoveFlowOutputCommandOutput | RemoveFlowSourceCommandOutput | RemoveFlowVpcInterfaceCommandOutput | RevokeFlowEntitlementCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFlowCommandOutput | UpdateFlowEntitlementCommandOutput | UpdateFlowMediaStreamCommandOutput | UpdateFlowOutputCommandOutput | UpdateFlowSourceCommandOutput;
41
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
42
+
43
+ requestHandler?: __HttpHandler;
44
+
45
+ sha256?: __HashConstructor;
46
+
47
+ urlParser?: __UrlParser;
48
+
49
+ bodyLengthChecker?: (body: any) => number | undefined;
50
+
51
+ streamCollector?: __StreamCollector;
52
+
53
+ base64Decoder?: __Decoder;
54
+
55
+ base64Encoder?: __Encoder;
56
+
57
+ utf8Decoder?: __Decoder;
58
+
59
+ utf8Encoder?: __Encoder;
60
+
61
+ runtime?: string;
62
+
63
+ disableHostPrefix?: boolean;
64
+
65
+ maxAttempts?: number | __Provider<number>;
66
+
67
+ retryMode?: string | __Provider<string>;
68
+
69
+ logger?: __Logger;
70
+
71
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
72
+
73
+ useFipsEndpoint?: boolean | __Provider<boolean>;
74
+
75
+ serviceId?: string;
76
+
77
+ region?: string | __Provider<string>;
78
+
79
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
80
+
81
+ regionInfoProvider?: RegionInfoProvider;
82
+
83
+ defaultUserAgentProvider?: Provider<__UserAgent>;
84
+
85
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
86
+ }
87
+ declare type MediaConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
88
+
89
+ export interface MediaConnectClientConfig extends MediaConnectClientConfigType {
90
+ }
91
+ declare type MediaConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
92
+
93
+ export interface MediaConnectClientResolvedConfig extends MediaConnectClientResolvedConfigType {
94
+ }
95
+
96
+ export declare class MediaConnectClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaConnectClientResolvedConfig> {
97
+
98
+ readonly config: MediaConnectClientResolvedConfig;
99
+ constructor(configuration: MediaConnectClientConfig);
100
+
101
+ destroy(): void;
102
+ }
103
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { AddFlowMediaStreamsRequest, AddFlowMediaStreamsResponse } from "../models/models_0";
5
+ export interface AddFlowMediaStreamsCommandInput extends AddFlowMediaStreamsRequest {
6
+ }
7
+ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AddFlowMediaStreamsCommand extends $Command<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: AddFlowMediaStreamsCommandInput;
12
+ constructor(input: AddFlowMediaStreamsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { AddFlowOutputsRequest, AddFlowOutputsResponse } from "../models/models_0";
5
+ export interface AddFlowOutputsCommandInput extends AddFlowOutputsRequest {
6
+ }
7
+ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AddFlowOutputsCommand extends $Command<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: AddFlowOutputsCommandInput;
12
+ constructor(input: AddFlowOutputsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { AddFlowSourcesRequest, AddFlowSourcesResponse } from "../models/models_0";
5
+ export interface AddFlowSourcesCommandInput extends AddFlowSourcesRequest {
6
+ }
7
+ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AddFlowSourcesCommand extends $Command<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: AddFlowSourcesCommandInput;
12
+ constructor(input: AddFlowSourcesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { AddFlowVpcInterfacesRequest, AddFlowVpcInterfacesResponse } from "../models/models_0";
5
+ export interface AddFlowVpcInterfacesCommandInput extends AddFlowVpcInterfacesRequest {
6
+ }
7
+ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AddFlowVpcInterfacesCommand extends $Command<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: AddFlowVpcInterfacesCommandInput;
12
+ constructor(input: AddFlowVpcInterfacesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
5
+ export interface CreateFlowCommandInput extends CreateFlowRequest {
6
+ }
7
+ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: CreateFlowCommandInput;
12
+ constructor(input: CreateFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
5
+ export interface DeleteFlowCommandInput extends DeleteFlowRequest {
6
+ }
7
+ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: DeleteFlowCommandInput;
12
+ constructor(input: DeleteFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
5
+ export interface DescribeFlowCommandInput extends DescribeFlowRequest {
6
+ }
7
+ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: DescribeFlowCommandInput;
12
+ constructor(input: DescribeFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_0";
5
+ export interface DescribeOfferingCommandInput extends DescribeOfferingRequest {
6
+ }
7
+ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeOfferingCommand extends $Command<DescribeOfferingCommandInput, DescribeOfferingCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: DescribeOfferingCommandInput;
12
+ constructor(input: DescribeOfferingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOfferingCommandInput, DescribeOfferingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
+ import { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_0";
5
+ export interface DescribeReservationCommandInput extends DescribeReservationRequest {
6
+ }
7
+ export interface DescribeReservationCommandOutput extends DescribeReservationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeReservationCommand extends $Command<DescribeReservationCommandInput, DescribeReservationCommandOutput, MediaConnectClientResolvedConfig> {
11
+ readonly input: DescribeReservationCommandInput;
12
+ constructor(input: DescribeReservationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReservationCommandInput, DescribeReservationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }