@aws-sdk/client-mediaconnect 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MediaConnectServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +129 -2
- package/dist-cjs/protocols/Aws_restJson1.js +367 -1355
- package/dist-es/index.js +1 -0
- package/dist-es/models/MediaConnectServiceException.js +12 -0
- package/dist-es/models/models_0.js +119 -1
- package/dist-es/protocols/Aws_restJson1.js +753 -1485
- package/dist-types/MediaConnectClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MediaConnectServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaConnectClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
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";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, 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
9
|
import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
10
10
|
import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
11
11
|
import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
@@ -58,7 +58,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
58
58
|
* A function that can calculate the length of a request body.
|
|
59
59
|
* @internal
|
|
60
60
|
*/
|
|
61
|
-
bodyLengthChecker?:
|
|
61
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
62
62
|
/**
|
|
63
63
|
* A function that converts a stream into an array of bytes.
|
|
64
64
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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 {
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
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";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, 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
9
|
import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
10
10
|
import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
11
11
|
import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
@@ -46,7 +46,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
46
46
|
|
|
47
47
|
urlParser?: __UrlParser;
|
|
48
48
|
|
|
49
|
-
bodyLengthChecker?:
|
|
49
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
50
50
|
|
|
51
51
|
streamCollector?: __StreamCollector;
|
|
52
52
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class MediaConnectServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
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",
|
|
@@ -761,53 +762,67 @@ export declare namespace AddFlowMediaStreamsResponse {
|
|
|
761
762
|
const filterSensitiveLog: (obj: AddFlowMediaStreamsResponse) => any;
|
|
762
763
|
}
|
|
763
764
|
|
|
764
|
-
export
|
|
765
|
-
name: "BadRequestException";
|
|
766
|
-
$fault: "client";
|
|
765
|
+
export declare class BadRequestException extends __BaseException {
|
|
766
|
+
readonly name: "BadRequestException";
|
|
767
|
+
readonly $fault: "client";
|
|
767
768
|
|
|
768
769
|
Message: string | undefined;
|
|
770
|
+
|
|
771
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
769
772
|
}
|
|
770
773
|
|
|
771
|
-
export
|
|
772
|
-
name: "ForbiddenException";
|
|
773
|
-
$fault: "client";
|
|
774
|
+
export declare class ForbiddenException extends __BaseException {
|
|
775
|
+
readonly name: "ForbiddenException";
|
|
776
|
+
readonly $fault: "client";
|
|
774
777
|
|
|
775
778
|
Message: string | undefined;
|
|
779
|
+
|
|
780
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
776
781
|
}
|
|
777
782
|
|
|
778
|
-
export
|
|
779
|
-
name: "InternalServerErrorException";
|
|
780
|
-
$fault: "server";
|
|
783
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
784
|
+
readonly name: "InternalServerErrorException";
|
|
785
|
+
readonly $fault: "server";
|
|
781
786
|
|
|
782
787
|
Message: string | undefined;
|
|
788
|
+
|
|
789
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
783
790
|
}
|
|
784
791
|
|
|
785
|
-
export
|
|
786
|
-
name: "NotFoundException";
|
|
787
|
-
$fault: "client";
|
|
792
|
+
export declare class NotFoundException extends __BaseException {
|
|
793
|
+
readonly name: "NotFoundException";
|
|
794
|
+
readonly $fault: "client";
|
|
788
795
|
|
|
789
796
|
Message: string | undefined;
|
|
797
|
+
|
|
798
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
790
799
|
}
|
|
791
800
|
|
|
792
|
-
export
|
|
793
|
-
name: "ServiceUnavailableException";
|
|
794
|
-
$fault: "server";
|
|
801
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
802
|
+
readonly name: "ServiceUnavailableException";
|
|
803
|
+
readonly $fault: "server";
|
|
795
804
|
|
|
796
805
|
Message: string | undefined;
|
|
806
|
+
|
|
807
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
797
808
|
}
|
|
798
809
|
|
|
799
|
-
export
|
|
800
|
-
name: "TooManyRequestsException";
|
|
801
|
-
$fault: "client";
|
|
810
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
811
|
+
readonly name: "TooManyRequestsException";
|
|
812
|
+
readonly $fault: "client";
|
|
802
813
|
|
|
803
814
|
Message: string | undefined;
|
|
815
|
+
|
|
816
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
804
817
|
}
|
|
805
818
|
|
|
806
|
-
export
|
|
807
|
-
name: "AddFlowOutputs420Exception";
|
|
808
|
-
$fault: "client";
|
|
819
|
+
export declare class AddFlowOutputs420Exception extends __BaseException {
|
|
820
|
+
readonly name: "AddFlowOutputs420Exception";
|
|
821
|
+
readonly $fault: "client";
|
|
809
822
|
|
|
810
823
|
Message: string | undefined;
|
|
824
|
+
|
|
825
|
+
constructor(opts: __ExceptionOptionType<AddFlowOutputs420Exception, __BaseException>);
|
|
811
826
|
}
|
|
812
827
|
|
|
813
828
|
export interface AddFlowOutputsRequest {
|
|
@@ -873,11 +888,13 @@ export declare namespace AddFlowVpcInterfacesResponse {
|
|
|
873
888
|
const filterSensitiveLog: (obj: AddFlowVpcInterfacesResponse) => any;
|
|
874
889
|
}
|
|
875
890
|
|
|
876
|
-
export
|
|
877
|
-
name: "CreateFlow420Exception";
|
|
878
|
-
$fault: "client";
|
|
891
|
+
export declare class CreateFlow420Exception extends __BaseException {
|
|
892
|
+
readonly name: "CreateFlow420Exception";
|
|
893
|
+
readonly $fault: "client";
|
|
879
894
|
|
|
880
895
|
Message: string | undefined;
|
|
896
|
+
|
|
897
|
+
constructor(opts: __ExceptionOptionType<CreateFlow420Exception, __BaseException>);
|
|
881
898
|
}
|
|
882
899
|
export declare enum FailoverMode {
|
|
883
900
|
FAILOVER = "FAILOVER",
|
|
@@ -1052,11 +1069,13 @@ export declare namespace DescribeReservationResponse {
|
|
|
1052
1069
|
const filterSensitiveLog: (obj: DescribeReservationResponse) => any;
|
|
1053
1070
|
}
|
|
1054
1071
|
|
|
1055
|
-
export
|
|
1056
|
-
name: "GrantFlowEntitlements420Exception";
|
|
1057
|
-
$fault: "client";
|
|
1072
|
+
export declare class GrantFlowEntitlements420Exception extends __BaseException {
|
|
1073
|
+
readonly name: "GrantFlowEntitlements420Exception";
|
|
1074
|
+
readonly $fault: "client";
|
|
1058
1075
|
|
|
1059
1076
|
Message: string | undefined;
|
|
1077
|
+
|
|
1078
|
+
constructor(opts: __ExceptionOptionType<GrantFlowEntitlements420Exception, __BaseException>);
|
|
1060
1079
|
}
|
|
1061
1080
|
|
|
1062
1081
|
export interface GrantFlowEntitlementsRequest {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,41 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.54.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"concurrently": "7.0.0",
|