@aws-sdk/client-rds 3.302.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.
@@ -8,22 +8,28 @@ export interface AccountQuota {
8
8
  export interface AccountAttributesMessage {
9
9
  AccountQuotas?: AccountQuota[];
10
10
  }
11
- export declare enum ActivityStreamMode {
12
- async = "async",
13
- sync = "sync",
14
- }
15
- export declare enum ActivityStreamPolicyStatus {
16
- locked = "locked",
17
- locking_policy = "locking-policy",
18
- unlocked = "unlocked",
19
- unlocking_policy = "unlocking-policy",
20
- }
21
- export declare enum ActivityStreamStatus {
22
- started = "started",
23
- starting = "starting",
24
- stopped = "stopped",
25
- stopping = "stopping",
26
- }
11
+ export declare const ActivityStreamMode: {
12
+ readonly async: "async";
13
+ readonly sync: "sync";
14
+ };
15
+ export type ActivityStreamMode =
16
+ (typeof ActivityStreamMode)[keyof typeof ActivityStreamMode];
17
+ export declare const ActivityStreamPolicyStatus: {
18
+ readonly locked: "locked";
19
+ readonly locking_policy: "locking-policy";
20
+ readonly unlocked: "unlocked";
21
+ readonly unlocking_policy: "unlocking-policy";
22
+ };
23
+ export type ActivityStreamPolicyStatus =
24
+ (typeof ActivityStreamPolicyStatus)[keyof typeof ActivityStreamPolicyStatus];
25
+ export declare const ActivityStreamStatus: {
26
+ readonly started: "started";
27
+ readonly starting: "starting";
28
+ readonly stopped: "stopped";
29
+ readonly stopping: "stopping";
30
+ };
31
+ export type ActivityStreamStatus =
32
+ (typeof ActivityStreamStatus)[keyof typeof ActivityStreamStatus];
27
33
  export interface AddRoleToDBClusterMessage {
28
34
  DBClusterIdentifier: string | undefined;
29
35
  RoleArn: string | undefined;
@@ -287,10 +293,12 @@ export interface DBClusterBacktrack {
287
293
  export interface CancelExportTaskMessage {
288
294
  ExportTaskIdentifier: string | undefined;
289
295
  }
290
- export declare enum ExportSourceType {
291
- CLUSTER = "CLUSTER",
292
- SNAPSHOT = "SNAPSHOT",
293
- }
296
+ export declare const ExportSourceType: {
297
+ readonly CLUSTER: "CLUSTER";
298
+ readonly SNAPSHOT: "SNAPSHOT";
299
+ };
300
+ export type ExportSourceType =
301
+ (typeof ExportSourceType)[keyof typeof ExportSourceType];
294
302
  export interface ExportTask {
295
303
  ExportTaskIdentifier?: string;
296
304
  SourceArn?: string;
@@ -881,13 +889,15 @@ export interface DomainMembership {
881
889
  FQDN?: string;
882
890
  IAMRoleName?: string;
883
891
  }
884
- export declare enum WriteForwardingStatus {
885
- DISABLED = "disabled",
886
- DISABLING = "disabling",
887
- ENABLED = "enabled",
888
- ENABLING = "enabling",
889
- UNKNOWN = "unknown",
890
- }
892
+ export declare const WriteForwardingStatus: {
893
+ readonly DISABLED: "disabled";
894
+ readonly DISABLING: "disabling";
895
+ readonly ENABLED: "enabled";
896
+ readonly ENABLING: "enabling";
897
+ readonly UNKNOWN: "unknown";
898
+ };
899
+ export type WriteForwardingStatus =
900
+ (typeof WriteForwardingStatus)[keyof typeof WriteForwardingStatus];
891
901
  export interface MasterUserSecret {
892
902
  SecretArn?: string;
893
903
  SecretStatus?: string;
@@ -1216,10 +1226,12 @@ export interface DBInstanceRole {
1216
1226
  FeatureName?: string;
1217
1227
  Status?: string;
1218
1228
  }
1219
- export declare enum AutomationMode {
1220
- ALL_PAUSED = "all-paused",
1221
- FULL = "full",
1222
- }
1229
+ export declare const AutomationMode: {
1230
+ readonly ALL_PAUSED: "all-paused";
1231
+ readonly FULL: "full";
1232
+ };
1233
+ export type AutomationMode =
1234
+ (typeof AutomationMode)[keyof typeof AutomationMode];
1223
1235
  export interface CertificateDetails {
1224
1236
  CAIdentifier?: string;
1225
1237
  ValidTill?: Date;
@@ -1282,10 +1294,11 @@ export interface PendingModifiedValues {
1282
1294
  ResumeFullAutomationModeTime?: Date;
1283
1295
  StorageThroughput?: number;
1284
1296
  }
1285
- export declare enum ReplicaMode {
1286
- MOUNTED = "mounted",
1287
- OPEN_READ_ONLY = "open-read-only",
1288
- }
1297
+ export declare const ReplicaMode: {
1298
+ readonly MOUNTED: "mounted";
1299
+ readonly OPEN_READ_ONLY: "open-read-only";
1300
+ };
1301
+ export type ReplicaMode = (typeof ReplicaMode)[keyof typeof ReplicaMode];
1289
1302
  export interface DBInstanceStatusInfo {
1290
1303
  StatusType?: string;
1291
1304
  Normal?: boolean;
@@ -1485,20 +1498,24 @@ export interface CreateDBParameterGroupMessage {
1485
1498
  export interface CreateDBParameterGroupResult {
1486
1499
  DBParameterGroup?: DBParameterGroup;
1487
1500
  }
1488
- export declare enum AuthScheme {
1489
- SECRETS = "SECRETS",
1490
- }
1491
- export declare enum ClientPasswordAuthType {
1492
- MYSQL_NATIVE_PASSWORD = "MYSQL_NATIVE_PASSWORD",
1493
- POSTGRES_MD5 = "POSTGRES_MD5",
1494
- POSTGRES_SCRAM_SHA_256 = "POSTGRES_SCRAM_SHA_256",
1495
- SQL_SERVER_AUTHENTICATION = "SQL_SERVER_AUTHENTICATION",
1496
- }
1497
- export declare enum IAMAuthMode {
1498
- DISABLED = "DISABLED",
1499
- ENABLED = "ENABLED",
1500
- REQUIRED = "REQUIRED",
1501
- }
1501
+ export declare const AuthScheme: {
1502
+ readonly SECRETS: "SECRETS";
1503
+ };
1504
+ export type AuthScheme = (typeof AuthScheme)[keyof typeof AuthScheme];
1505
+ export declare const ClientPasswordAuthType: {
1506
+ readonly MYSQL_NATIVE_PASSWORD: "MYSQL_NATIVE_PASSWORD";
1507
+ readonly POSTGRES_MD5: "POSTGRES_MD5";
1508
+ readonly POSTGRES_SCRAM_SHA_256: "POSTGRES_SCRAM_SHA_256";
1509
+ readonly SQL_SERVER_AUTHENTICATION: "SQL_SERVER_AUTHENTICATION";
1510
+ };
1511
+ export type ClientPasswordAuthType =
1512
+ (typeof ClientPasswordAuthType)[keyof typeof ClientPasswordAuthType];
1513
+ export declare const IAMAuthMode: {
1514
+ readonly DISABLED: "DISABLED";
1515
+ readonly ENABLED: "ENABLED";
1516
+ readonly REQUIRED: "REQUIRED";
1517
+ };
1518
+ export type IAMAuthMode = (typeof IAMAuthMode)[keyof typeof IAMAuthMode];
1502
1519
  export interface UserAuthConfig {
1503
1520
  Description?: string;
1504
1521
  UserName?: string;
@@ -1507,11 +1524,12 @@ export interface UserAuthConfig {
1507
1524
  IAMAuth?: IAMAuthMode | string;
1508
1525
  ClientPasswordAuthType?: ClientPasswordAuthType | string;
1509
1526
  }
1510
- export declare enum EngineFamily {
1511
- MYSQL = "MYSQL",
1512
- POSTGRESQL = "POSTGRESQL",
1513
- SQLSERVER = "SQLSERVER",
1514
- }
1527
+ export declare const EngineFamily: {
1528
+ readonly MYSQL: "MYSQL";
1529
+ readonly POSTGRESQL: "POSTGRESQL";
1530
+ readonly SQLSERVER: "SQLSERVER";
1531
+ };
1532
+ export type EngineFamily = (typeof EngineFamily)[keyof typeof EngineFamily];
1515
1533
  export interface CreateDBProxyRequest {
1516
1534
  DBProxyName: string | undefined;
1517
1535
  EngineFamily: EngineFamily | string | undefined;
@@ -1532,17 +1550,18 @@ export interface UserAuthConfigInfo {
1532
1550
  IAMAuth?: IAMAuthMode | string;
1533
1551
  ClientPasswordAuthType?: ClientPasswordAuthType | string;
1534
1552
  }
1535
- export declare enum DBProxyStatus {
1536
- AVAILABLE = "available",
1537
- CREATING = "creating",
1538
- DELETING = "deleting",
1539
- INCOMPATIBLE_NETWORK = "incompatible-network",
1540
- INSUFFICIENT_RESOURCE_LIMITS = "insufficient-resource-limits",
1541
- MODIFYING = "modifying",
1542
- REACTIVATING = "reactivating",
1543
- SUSPENDED = "suspended",
1544
- SUSPENDING = "suspending",
1545
- }
1553
+ export declare const DBProxyStatus: {
1554
+ readonly AVAILABLE: "available";
1555
+ readonly CREATING: "creating";
1556
+ readonly DELETING: "deleting";
1557
+ readonly INCOMPATIBLE_NETWORK: "incompatible-network";
1558
+ readonly INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits";
1559
+ readonly MODIFYING: "modifying";
1560
+ readonly REACTIVATING: "reactivating";
1561
+ readonly SUSPENDED: "suspended";
1562
+ readonly SUSPENDING: "suspending";
1563
+ };
1564
+ export type DBProxyStatus = (typeof DBProxyStatus)[keyof typeof DBProxyStatus];
1546
1565
  export interface DBProxy {
1547
1566
  DBProxyName?: string;
1548
1567
  DBProxyArn?: string;
@@ -1577,10 +1596,12 @@ export declare class DBProxyQuotaExceededFault extends __BaseException {
1577
1596
  opts: __ExceptionOptionType<DBProxyQuotaExceededFault, __BaseException>
1578
1597
  );
1579
1598
  }
1580
- export declare enum DBProxyEndpointTargetRole {
1581
- READ_ONLY = "READ_ONLY",
1582
- READ_WRITE = "READ_WRITE",
1583
- }
1599
+ export declare const DBProxyEndpointTargetRole: {
1600
+ readonly READ_ONLY: "READ_ONLY";
1601
+ readonly READ_WRITE: "READ_WRITE";
1602
+ };
1603
+ export type DBProxyEndpointTargetRole =
1604
+ (typeof DBProxyEndpointTargetRole)[keyof typeof DBProxyEndpointTargetRole];
1584
1605
  export interface CreateDBProxyEndpointRequest {
1585
1606
  DBProxyName: string | undefined;
1586
1607
  DBProxyEndpointName: string | undefined;
@@ -1589,14 +1610,16 @@ export interface CreateDBProxyEndpointRequest {
1589
1610
  TargetRole?: DBProxyEndpointTargetRole | string;
1590
1611
  Tags?: Tag[];
1591
1612
  }
1592
- export declare enum DBProxyEndpointStatus {
1593
- AVAILABLE = "available",
1594
- CREATING = "creating",
1595
- DELETING = "deleting",
1596
- INCOMPATIBLE_NETWORK = "incompatible-network",
1597
- INSUFFICIENT_RESOURCE_LIMITS = "insufficient-resource-limits",
1598
- MODIFYING = "modifying",
1599
- }
1613
+ export declare const DBProxyEndpointStatus: {
1614
+ readonly AVAILABLE: "available";
1615
+ readonly CREATING: "creating";
1616
+ readonly DELETING: "deleting";
1617
+ readonly INCOMPATIBLE_NETWORK: "incompatible-network";
1618
+ readonly INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits";
1619
+ readonly MODIFYING: "modifying";
1620
+ };
1621
+ export type DBProxyEndpointStatus =
1622
+ (typeof DBProxyEndpointStatus)[keyof typeof DBProxyEndpointStatus];
1600
1623
  export interface DBProxyEndpoint {
1601
1624
  DBProxyEndpointName?: string;
1602
1625
  DBProxyEndpointArn?: string;
@@ -1791,11 +1814,13 @@ export interface CreateGlobalClusterMessage {
1791
1814
  DatabaseName?: string;
1792
1815
  StorageEncrypted?: boolean;
1793
1816
  }
1794
- export declare enum FailoverStatus {
1795
- CANCELLING = "cancelling",
1796
- FAILING_OVER = "failing-over",
1797
- PENDING = "pending",
1798
- }
1817
+ export declare const FailoverStatus: {
1818
+ readonly CANCELLING: "cancelling";
1819
+ readonly FAILING_OVER: "failing-over";
1820
+ readonly PENDING: "pending";
1821
+ };
1822
+ export type FailoverStatus =
1823
+ (typeof FailoverStatus)[keyof typeof FailoverStatus];
1799
1824
  export interface FailoverState {
1800
1825
  Status?: FailoverStatus | string;
1801
1826
  FromDbClusterArn?: string;
@@ -2195,10 +2220,11 @@ export interface DescribeDBClusterParameterGroupsMessage {
2195
2220
  MaxRecords?: number;
2196
2221
  Marker?: string;
2197
2222
  }
2198
- export declare enum ApplyMethod {
2199
- immediate = "immediate",
2200
- pending_reboot = "pending-reboot",
2201
- }
2223
+ export declare const ApplyMethod: {
2224
+ readonly immediate: "immediate";
2225
+ readonly pending_reboot: "pending-reboot";
2226
+ };
2227
+ export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
2202
2228
  export interface Parameter {
2203
2229
  ParameterName?: string;
2204
2230
  ParameterValue?: string;
@@ -100,33 +100,38 @@ export interface DescribeDBProxyTargetsRequest {
100
100
  Marker?: string;
101
101
  MaxRecords?: number;
102
102
  }
103
- export declare enum TargetRole {
104
- READ_ONLY = "READ_ONLY",
105
- READ_WRITE = "READ_WRITE",
106
- UNKNOWN = "UNKNOWN",
107
- }
108
- export declare enum TargetHealthReason {
109
- AUTH_FAILURE = "AUTH_FAILURE",
110
- CONNECTION_FAILED = "CONNECTION_FAILED",
111
- INVALID_REPLICATION_STATE = "INVALID_REPLICATION_STATE",
112
- PENDING_PROXY_CAPACITY = "PENDING_PROXY_CAPACITY",
113
- UNREACHABLE = "UNREACHABLE",
114
- }
115
- export declare enum TargetState {
116
- available = "AVAILABLE",
117
- registering = "REGISTERING",
118
- unavailable = "UNAVAILABLE",
119
- }
103
+ export declare const TargetRole: {
104
+ readonly READ_ONLY: "READ_ONLY";
105
+ readonly READ_WRITE: "READ_WRITE";
106
+ readonly UNKNOWN: "UNKNOWN";
107
+ };
108
+ export type TargetRole = (typeof TargetRole)[keyof typeof TargetRole];
109
+ export declare const TargetHealthReason: {
110
+ readonly AUTH_FAILURE: "AUTH_FAILURE";
111
+ readonly CONNECTION_FAILED: "CONNECTION_FAILED";
112
+ readonly INVALID_REPLICATION_STATE: "INVALID_REPLICATION_STATE";
113
+ readonly PENDING_PROXY_CAPACITY: "PENDING_PROXY_CAPACITY";
114
+ readonly UNREACHABLE: "UNREACHABLE";
115
+ };
116
+ export type TargetHealthReason =
117
+ (typeof TargetHealthReason)[keyof typeof TargetHealthReason];
118
+ export declare const TargetState: {
119
+ readonly available: "AVAILABLE";
120
+ readonly registering: "REGISTERING";
121
+ readonly unavailable: "UNAVAILABLE";
122
+ };
123
+ export type TargetState = (typeof TargetState)[keyof typeof TargetState];
120
124
  export interface TargetHealth {
121
125
  State?: TargetState | string;
122
126
  Reason?: TargetHealthReason | string;
123
127
  Description?: string;
124
128
  }
125
- export declare enum TargetType {
126
- RDS_INSTANCE = "RDS_INSTANCE",
127
- RDS_SERVERLESS_ENDPOINT = "RDS_SERVERLESS_ENDPOINT",
128
- TRACKED_CLUSTER = "TRACKED_CLUSTER",
129
- }
129
+ export declare const TargetType: {
130
+ readonly RDS_INSTANCE: "RDS_INSTANCE";
131
+ readonly RDS_SERVERLESS_ENDPOINT: "RDS_SERVERLESS_ENDPOINT";
132
+ readonly TRACKED_CLUSTER: "TRACKED_CLUSTER";
133
+ };
134
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
130
135
  export interface DBProxyTarget {
131
136
  TargetArn?: string;
132
137
  Endpoint?: string;
@@ -224,17 +229,18 @@ export interface EventCategoriesMap {
224
229
  export interface EventCategoriesMessage {
225
230
  EventCategoriesMapList?: EventCategoriesMap[];
226
231
  }
227
- export declare enum SourceType {
228
- blue_green_deployment = "blue-green-deployment",
229
- custom_engine_version = "custom-engine-version",
230
- db_cluster = "db-cluster",
231
- db_cluster_snapshot = "db-cluster-snapshot",
232
- db_instance = "db-instance",
233
- db_parameter_group = "db-parameter-group",
234
- db_proxy = "db-proxy",
235
- db_security_group = "db-security-group",
236
- db_snapshot = "db-snapshot",
237
- }
232
+ export declare const SourceType: {
233
+ readonly blue_green_deployment: "blue-green-deployment";
234
+ readonly custom_engine_version: "custom-engine-version";
235
+ readonly db_cluster: "db-cluster";
236
+ readonly db_cluster_snapshot: "db-cluster-snapshot";
237
+ readonly db_instance: "db-instance";
238
+ readonly db_parameter_group: "db-parameter-group";
239
+ readonly db_proxy: "db-proxy";
240
+ readonly db_security_group: "db-security-group";
241
+ readonly db_snapshot: "db-snapshot";
242
+ };
243
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
238
244
  export interface DescribeEventsMessage {
239
245
  SourceIdentifier?: string;
240
246
  SourceType?: SourceType | string;
@@ -586,10 +592,12 @@ export interface ListTagsForResourceMessage {
586
592
  export interface TagListMessage {
587
593
  TagList?: Tag[];
588
594
  }
589
- export declare enum AuditPolicyState {
590
- LOCKED_POLICY = "locked",
591
- UNLOCKED_POLICY = "unlocked",
592
- }
595
+ export declare const AuditPolicyState: {
596
+ readonly LOCKED_POLICY: "locked";
597
+ readonly UNLOCKED_POLICY: "unlocked";
598
+ };
599
+ export type AuditPolicyState =
600
+ (typeof AuditPolicyState)[keyof typeof AuditPolicyState];
593
601
  export interface ModifyActivityStreamRequest {
594
602
  ResourceArn?: string;
595
603
  AuditPolicyState?: AuditPolicyState | string;
@@ -629,11 +637,13 @@ export interface ModifyCurrentDBClusterCapacityMessage {
629
637
  SecondsBeforeTimeout?: number;
630
638
  TimeoutAction?: string;
631
639
  }
632
- export declare enum CustomEngineVersionStatus {
633
- available = "available",
634
- inactive = "inactive",
635
- inactive_except_restore = "inactive-except-restore",
636
- }
640
+ export declare const CustomEngineVersionStatus: {
641
+ readonly available: "available";
642
+ readonly inactive: "inactive";
643
+ readonly inactive_except_restore: "inactive-except-restore";
644
+ };
645
+ export type CustomEngineVersionStatus =
646
+ (typeof CustomEngineVersionStatus)[keyof typeof CustomEngineVersionStatus];
637
647
  export interface ModifyCustomDBEngineVersionMessage {
638
648
  Engine: string | undefined;
639
649
  EngineVersion: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds",
3
3
  "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
4
- "version": "3.302.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,45 +21,45 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-sdk-rds": "3.299.0",
37
- "@aws-sdk/middleware-serde": "3.296.0",
38
- "@aws-sdk/middleware-signing": "3.299.0",
39
- "@aws-sdk/middleware-stack": "3.296.0",
40
- "@aws-sdk/middleware-user-agent": "3.299.0",
41
- "@aws-sdk/node-config-provider": "3.300.0",
42
- "@aws-sdk/node-http-handler": "3.296.0",
43
- "@aws-sdk/protocol-http": "3.296.0",
44
- "@aws-sdk/smithy-client": "3.296.0",
45
- "@aws-sdk/types": "3.296.0",
46
- "@aws-sdk/url-parser": "3.296.0",
47
- "@aws-sdk/util-base64": "3.295.0",
48
- "@aws-sdk/util-body-length-browser": "3.295.0",
49
- "@aws-sdk/util-body-length-node": "3.295.0",
50
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
51
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
52
- "@aws-sdk/util-endpoints": "3.296.0",
53
- "@aws-sdk/util-retry": "3.296.0",
54
- "@aws-sdk/util-user-agent-browser": "3.299.0",
55
- "@aws-sdk/util-user-agent-node": "3.300.0",
56
- "@aws-sdk/util-utf8": "3.295.0",
57
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-sdk-rds": "3.303.0",
37
+ "@aws-sdk/middleware-serde": "3.303.0",
38
+ "@aws-sdk/middleware-signing": "3.303.0",
39
+ "@aws-sdk/middleware-stack": "3.303.0",
40
+ "@aws-sdk/middleware-user-agent": "3.303.0",
41
+ "@aws-sdk/node-config-provider": "3.303.0",
42
+ "@aws-sdk/node-http-handler": "3.303.0",
43
+ "@aws-sdk/protocol-http": "3.303.0",
44
+ "@aws-sdk/smithy-client": "3.303.0",
45
+ "@aws-sdk/types": "3.303.0",
46
+ "@aws-sdk/url-parser": "3.303.0",
47
+ "@aws-sdk/util-base64": "3.303.0",
48
+ "@aws-sdk/util-body-length-browser": "3.303.0",
49
+ "@aws-sdk/util-body-length-node": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
51
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
52
+ "@aws-sdk/util-endpoints": "3.303.0",
53
+ "@aws-sdk/util-retry": "3.303.0",
54
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
55
+ "@aws-sdk/util-user-agent-node": "3.303.0",
56
+ "@aws-sdk/util-utf8": "3.303.0",
57
+ "@aws-sdk/util-waiter": "3.303.0",
58
58
  "fast-xml-parser": "4.1.2",
59
59
  "tslib": "^2.5.0"
60
60
  },
61
61
  "devDependencies": {
62
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
62
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
63
63
  "@tsconfig/node14": "1.0.3",
64
64
  "@types/node": "^14.14.31",
65
65
  "concurrently": "7.0.0",