@aws-sdk/client-fms 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +119 -135
- package/dist-es/models/models_0.js +119 -135
- package/dist-types/models/models_0.d.ts +199 -119
- package/dist-types/ts3.4/models/models_0.d.ts +149 -119
- package/package.json +34 -34
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { FMSServiceException as __BaseException } from "./FMSServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
Creating
|
|
5
|
-
Deleted
|
|
6
|
-
Deleting
|
|
7
|
-
PendingDeletion
|
|
8
|
-
Ready
|
|
9
|
-
}
|
|
3
|
+
export declare const AccountRoleStatus: {
|
|
4
|
+
readonly Creating: "CREATING";
|
|
5
|
+
readonly Deleted: "DELETED";
|
|
6
|
+
readonly Deleting: "DELETING";
|
|
7
|
+
readonly PendingDeletion: "PENDING_DELETION";
|
|
8
|
+
readonly Ready: "READY";
|
|
9
|
+
};
|
|
10
|
+
export type AccountRoleStatus =
|
|
11
|
+
(typeof AccountRoleStatus)[keyof typeof AccountRoleStatus];
|
|
10
12
|
export interface ActionTarget {
|
|
11
13
|
ResourceId?: string;
|
|
12
14
|
Description?: string;
|
|
@@ -74,20 +76,24 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
74
76
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
75
77
|
);
|
|
76
78
|
}
|
|
77
|
-
export declare
|
|
78
|
-
FORTIGATE_CLOUD_NATIVE_FIREWALL
|
|
79
|
-
PALO_ALTO_NETWORKS_CLOUD_NGFW
|
|
80
|
-
}
|
|
79
|
+
export declare const ThirdPartyFirewall: {
|
|
80
|
+
readonly FORTIGATE_CLOUD_NATIVE_FIREWALL: "FORTIGATE_CLOUD_NATIVE_FIREWALL";
|
|
81
|
+
readonly PALO_ALTO_NETWORKS_CLOUD_NGFW: "PALO_ALTO_NETWORKS_CLOUD_NGFW";
|
|
82
|
+
};
|
|
83
|
+
export type ThirdPartyFirewall =
|
|
84
|
+
(typeof ThirdPartyFirewall)[keyof typeof ThirdPartyFirewall];
|
|
81
85
|
export interface AssociateThirdPartyFirewallRequest {
|
|
82
86
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
83
87
|
}
|
|
84
|
-
export declare
|
|
85
|
-
NOT_EXIST
|
|
86
|
-
OFFBOARDING
|
|
87
|
-
OFFBOARD_COMPLETE
|
|
88
|
-
ONBOARDING
|
|
89
|
-
ONBOARD_COMPLETE
|
|
90
|
-
}
|
|
88
|
+
export declare const ThirdPartyFirewallAssociationStatus: {
|
|
89
|
+
readonly NOT_EXIST: "NOT_EXIST";
|
|
90
|
+
readonly OFFBOARDING: "OFFBOARDING";
|
|
91
|
+
readonly OFFBOARD_COMPLETE: "OFFBOARD_COMPLETE";
|
|
92
|
+
readonly ONBOARDING: "ONBOARDING";
|
|
93
|
+
readonly ONBOARD_COMPLETE: "ONBOARD_COMPLETE";
|
|
94
|
+
};
|
|
95
|
+
export type ThirdPartyFirewallAssociationStatus =
|
|
96
|
+
(typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
|
|
91
97
|
export interface AssociateThirdPartyFirewallResponse {
|
|
92
98
|
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | string;
|
|
93
99
|
}
|
|
@@ -103,14 +109,16 @@ export interface BatchAssociateResourceRequest {
|
|
|
103
109
|
ResourceSetIdentifier: string | undefined;
|
|
104
110
|
Items: string[] | undefined;
|
|
105
111
|
}
|
|
106
|
-
export declare
|
|
107
|
-
NotValidAccountId
|
|
108
|
-
NotValidArn
|
|
109
|
-
NotValidPartition
|
|
110
|
-
NotValidRegion
|
|
111
|
-
NotValidResourceType
|
|
112
|
-
NotValidService
|
|
113
|
-
}
|
|
112
|
+
export declare const FailedItemReason: {
|
|
113
|
+
readonly NotValidAccountId: "NOT_VALID_ACCOUNT_ID";
|
|
114
|
+
readonly NotValidArn: "NOT_VALID_ARN";
|
|
115
|
+
readonly NotValidPartition: "NOT_VALID_PARTITION";
|
|
116
|
+
readonly NotValidRegion: "NOT_VALID_REGION";
|
|
117
|
+
readonly NotValidResourceType: "NOT_VALID_RESOURCE_TYPE";
|
|
118
|
+
readonly NotValidService: "NOT_VALID_SERVICE";
|
|
119
|
+
};
|
|
120
|
+
export type FailedItemReason =
|
|
121
|
+
(typeof FailedItemReason)[keyof typeof FailedItemReason];
|
|
114
122
|
export interface FailedItem {
|
|
115
123
|
URI?: string;
|
|
116
124
|
Reason?: FailedItemReason | string;
|
|
@@ -165,42 +173,46 @@ export interface GetComplianceDetailRequest {
|
|
|
165
173
|
PolicyId: string | undefined;
|
|
166
174
|
MemberAccount: string | undefined;
|
|
167
175
|
}
|
|
168
|
-
export declare
|
|
169
|
-
AWSConfig
|
|
170
|
-
AWSShieldAdvanced
|
|
171
|
-
AWSVirtualPrivateCloud
|
|
172
|
-
AWSWAF
|
|
173
|
-
}
|
|
174
|
-
export
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
176
|
+
export declare const DependentServiceName: {
|
|
177
|
+
readonly AWSConfig: "AWSCONFIG";
|
|
178
|
+
readonly AWSShieldAdvanced: "AWSSHIELD_ADVANCED";
|
|
179
|
+
readonly AWSVirtualPrivateCloud: "AWSVPC";
|
|
180
|
+
readonly AWSWAF: "AWSWAF";
|
|
181
|
+
};
|
|
182
|
+
export type DependentServiceName =
|
|
183
|
+
(typeof DependentServiceName)[keyof typeof DependentServiceName];
|
|
184
|
+
export declare const ViolationReason: {
|
|
185
|
+
readonly BlackHoleRouteDetected: "BLACK_HOLE_ROUTE_DETECTED";
|
|
186
|
+
readonly BlackHoleRouteDetectedInFirewallSubnet: "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET";
|
|
187
|
+
readonly FMSCreatedSecurityGroupEdited: "FMS_CREATED_SECURITY_GROUP_EDITED";
|
|
188
|
+
readonly FirewallSubnetIsOutOfScope: "FIREWALL_SUBNET_IS_OUT_OF_SCOPE";
|
|
189
|
+
readonly FirewallSubnetMissingExpectedRoute: "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE";
|
|
190
|
+
readonly FirewallSubnetMissingVPCEndpoint: "FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT";
|
|
191
|
+
readonly InternetGatewayMissingExpectedRoute: "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE";
|
|
192
|
+
readonly InternetTrafficNotInspected: "INTERNET_TRAFFIC_NOT_INSPECTED";
|
|
193
|
+
readonly InvalidRouteConfiguration: "INVALID_ROUTE_CONFIGURATION";
|
|
194
|
+
readonly MissingExpectedRouteTable: "MISSING_EXPECTED_ROUTE_TABLE";
|
|
195
|
+
readonly MissingFirewall: "MISSING_FIREWALL";
|
|
196
|
+
readonly MissingFirewallSubnetInAZ: "MISSING_FIREWALL_SUBNET_IN_AZ";
|
|
197
|
+
readonly MissingTargetGateway: "MISSING_TARGET_GATEWAY";
|
|
198
|
+
readonly NetworkFirewallPolicyModified: "NETWORK_FIREWALL_POLICY_MODIFIED";
|
|
199
|
+
readonly ResourceIncorrectWebAcl: "RESOURCE_INCORRECT_WEB_ACL";
|
|
200
|
+
readonly ResourceMissingDnsFirewall: "RESOURCE_MISSING_DNS_FIREWALL";
|
|
201
|
+
readonly ResourceMissingSecurityGroup: "RESOURCE_MISSING_SECURITY_GROUP";
|
|
202
|
+
readonly ResourceMissingShieldProtection: "RESOURCE_MISSING_SHIELD_PROTECTION";
|
|
203
|
+
readonly ResourceMissingWebAcl: "RESOURCE_MISSING_WEB_ACL";
|
|
204
|
+
readonly ResourceMissingWebaclOrShieldProtection: "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION";
|
|
205
|
+
readonly ResourceViolatesAuditSecurityGroup: "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP";
|
|
206
|
+
readonly RouteHasOutOfScopeEndpoint: "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT";
|
|
207
|
+
readonly SecurityGroupRedundant: "SECURITY_GROUP_REDUNDANT";
|
|
208
|
+
readonly SecurityGroupUnused: "SECURITY_GROUP_UNUSED";
|
|
209
|
+
readonly TrafficInspectionCrossesAZBoundary: "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY";
|
|
210
|
+
readonly UnexpectedFirewallRoutes: "UNEXPECTED_FIREWALL_ROUTES";
|
|
211
|
+
readonly UnexpectedTargetGatewayRoutes: "UNEXPECTED_TARGET_GATEWAY_ROUTES";
|
|
212
|
+
readonly WebAclMissingRuleGroup: "WEB_ACL_MISSING_RULE_GROUP";
|
|
213
|
+
};
|
|
214
|
+
export type ViolationReason =
|
|
215
|
+
(typeof ViolationReason)[keyof typeof ViolationReason];
|
|
204
216
|
export interface ComplianceViolator {
|
|
205
217
|
ResourceId?: string;
|
|
206
218
|
ViolationReason?: ViolationReason | string;
|
|
@@ -227,18 +239,22 @@ export interface GetNotificationChannelResponse {
|
|
|
227
239
|
export interface GetPolicyRequest {
|
|
228
240
|
PolicyId: string | undefined;
|
|
229
241
|
}
|
|
230
|
-
export declare
|
|
231
|
-
ACCOUNT
|
|
232
|
-
ORG_UNIT
|
|
233
|
-
}
|
|
242
|
+
export declare const CustomerPolicyScopeIdType: {
|
|
243
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
244
|
+
readonly ORG_UNIT: "ORG_UNIT";
|
|
245
|
+
};
|
|
246
|
+
export type CustomerPolicyScopeIdType =
|
|
247
|
+
(typeof CustomerPolicyScopeIdType)[keyof typeof CustomerPolicyScopeIdType];
|
|
234
248
|
export interface ResourceTag {
|
|
235
249
|
Key: string | undefined;
|
|
236
250
|
Value?: string;
|
|
237
251
|
}
|
|
238
|
-
export declare
|
|
239
|
-
CENTRALIZED
|
|
240
|
-
DISTRIBUTED
|
|
241
|
-
}
|
|
252
|
+
export declare const FirewallDeploymentModel: {
|
|
253
|
+
readonly CENTRALIZED: "CENTRALIZED";
|
|
254
|
+
readonly DISTRIBUTED: "DISTRIBUTED";
|
|
255
|
+
};
|
|
256
|
+
export type FirewallDeploymentModel =
|
|
257
|
+
(typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
|
|
242
258
|
export interface NetworkFirewallPolicy {
|
|
243
259
|
FirewallDeploymentModel?: FirewallDeploymentModel | string;
|
|
244
260
|
}
|
|
@@ -249,18 +265,20 @@ export interface PolicyOption {
|
|
|
249
265
|
NetworkFirewallPolicy?: NetworkFirewallPolicy;
|
|
250
266
|
ThirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy;
|
|
251
267
|
}
|
|
252
|
-
export declare
|
|
253
|
-
DNS_FIREWALL
|
|
254
|
-
IMPORT_NETWORK_FIREWALL
|
|
255
|
-
NETWORK_FIREWALL
|
|
256
|
-
SECURITY_GROUPS_COMMON
|
|
257
|
-
SECURITY_GROUPS_CONTENT_AUDIT
|
|
258
|
-
SECURITY_GROUPS_USAGE_AUDIT
|
|
259
|
-
SHIELD_ADVANCED
|
|
260
|
-
THIRD_PARTY_FIREWALL
|
|
261
|
-
WAF
|
|
262
|
-
WAFV2
|
|
263
|
-
}
|
|
268
|
+
export declare const SecurityServiceType: {
|
|
269
|
+
readonly DNS_FIREWALL: "DNS_FIREWALL";
|
|
270
|
+
readonly IMPORT_NETWORK_FIREWALL: "IMPORT_NETWORK_FIREWALL";
|
|
271
|
+
readonly NETWORK_FIREWALL: "NETWORK_FIREWALL";
|
|
272
|
+
readonly SECURITY_GROUPS_COMMON: "SECURITY_GROUPS_COMMON";
|
|
273
|
+
readonly SECURITY_GROUPS_CONTENT_AUDIT: "SECURITY_GROUPS_CONTENT_AUDIT";
|
|
274
|
+
readonly SECURITY_GROUPS_USAGE_AUDIT: "SECURITY_GROUPS_USAGE_AUDIT";
|
|
275
|
+
readonly SHIELD_ADVANCED: "SHIELD_ADVANCED";
|
|
276
|
+
readonly THIRD_PARTY_FIREWALL: "THIRD_PARTY_FIREWALL";
|
|
277
|
+
readonly WAF: "WAF";
|
|
278
|
+
readonly WAFV2: "WAFV2";
|
|
279
|
+
};
|
|
280
|
+
export type SecurityServiceType =
|
|
281
|
+
(typeof SecurityServiceType)[keyof typeof SecurityServiceType];
|
|
264
282
|
export interface SecurityServicePolicyData {
|
|
265
283
|
Type: SecurityServiceType | string | undefined;
|
|
266
284
|
ManagedServiceData?: string;
|
|
@@ -343,11 +361,13 @@ export interface GetResourceSetResponse {
|
|
|
343
361
|
export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
344
362
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
345
363
|
}
|
|
346
|
-
export declare
|
|
347
|
-
COMPLETE
|
|
348
|
-
NOT_COMPLETE
|
|
349
|
-
NO_SUBSCRIPTION
|
|
350
|
-
}
|
|
364
|
+
export declare const MarketplaceSubscriptionOnboardingStatus: {
|
|
365
|
+
readonly COMPLETE: "COMPLETE";
|
|
366
|
+
readonly NOT_COMPLETE: "NOT_COMPLETE";
|
|
367
|
+
readonly NO_SUBSCRIPTION: "NO_SUBSCRIPTION";
|
|
368
|
+
};
|
|
369
|
+
export type MarketplaceSubscriptionOnboardingStatus =
|
|
370
|
+
(typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
|
|
351
371
|
export interface GetThirdPartyFirewallAssociationStatusResponse {
|
|
352
372
|
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | string;
|
|
353
373
|
MarketplaceOnboardingStatus?:
|
|
@@ -368,10 +388,12 @@ export interface PartialMatch {
|
|
|
368
388
|
Reference?: string;
|
|
369
389
|
TargetViolationReasons?: string[];
|
|
370
390
|
}
|
|
371
|
-
export declare
|
|
372
|
-
Modify
|
|
373
|
-
Remove
|
|
374
|
-
}
|
|
391
|
+
export declare const RemediationActionType: {
|
|
392
|
+
readonly Modify: "MODIFY";
|
|
393
|
+
readonly Remove: "REMOVE";
|
|
394
|
+
};
|
|
395
|
+
export type RemediationActionType =
|
|
396
|
+
(typeof RemediationActionType)[keyof typeof RemediationActionType];
|
|
375
397
|
export interface SecurityGroupRuleDescription {
|
|
376
398
|
IPV4Range?: string;
|
|
377
399
|
IPV6Range?: string;
|
|
@@ -421,23 +443,26 @@ export interface FirewallSubnetMissingVPCEndpointViolation {
|
|
|
421
443
|
SubnetAvailabilityZone?: string;
|
|
422
444
|
SubnetAvailabilityZoneId?: string;
|
|
423
445
|
}
|
|
424
|
-
export declare
|
|
425
|
-
IPV4
|
|
426
|
-
IPV6
|
|
427
|
-
PrefixList
|
|
428
|
-
}
|
|
429
|
-
export
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
446
|
+
export declare const DestinationType: {
|
|
447
|
+
readonly IPV4: "IPV4";
|
|
448
|
+
readonly IPV6: "IPV6";
|
|
449
|
+
readonly PrefixList: "PREFIX_LIST";
|
|
450
|
+
};
|
|
451
|
+
export type DestinationType =
|
|
452
|
+
(typeof DestinationType)[keyof typeof DestinationType];
|
|
453
|
+
export declare const TargetType: {
|
|
454
|
+
readonly CarrierGateway: "CARRIER_GATEWAY";
|
|
455
|
+
readonly EgressOnlyInternetGateway: "EGRESS_ONLY_INTERNET_GATEWAY";
|
|
456
|
+
readonly Gateway: "GATEWAY";
|
|
457
|
+
readonly Instance: "INSTANCE";
|
|
458
|
+
readonly LocalGateway: "LOCAL_GATEWAY";
|
|
459
|
+
readonly NatGateway: "NAT_GATEWAY";
|
|
460
|
+
readonly NetworkInterface: "NETWORK_INTERFACE";
|
|
461
|
+
readonly TransitGateway: "TRANSIT_GATEWAY";
|
|
462
|
+
readonly VPCEndpoint: "VPC_ENDPOINT";
|
|
463
|
+
readonly VPCPeeringConnection: "VPC_PEERING_CONNECTION";
|
|
464
|
+
};
|
|
465
|
+
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
441
466
|
export interface Route {
|
|
442
467
|
DestinationType?: DestinationType | string;
|
|
443
468
|
TargetType?: TargetType | string;
|
|
@@ -517,16 +542,19 @@ export interface NetworkFirewallMissingSubnetViolation {
|
|
|
517
542
|
AvailabilityZone?: string;
|
|
518
543
|
TargetViolationReason?: string;
|
|
519
544
|
}
|
|
520
|
-
export declare
|
|
521
|
-
DEFAULT_ACTION_ORDER
|
|
522
|
-
STRICT_ORDER
|
|
523
|
-
}
|
|
545
|
+
export declare const RuleOrder: {
|
|
546
|
+
readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
|
|
547
|
+
readonly STRICT_ORDER: "STRICT_ORDER";
|
|
548
|
+
};
|
|
549
|
+
export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
|
|
524
550
|
export interface StatefulEngineOptions {
|
|
525
551
|
RuleOrder?: RuleOrder | string;
|
|
526
552
|
}
|
|
527
|
-
export declare
|
|
528
|
-
DROP_TO_ALERT
|
|
529
|
-
}
|
|
553
|
+
export declare const NetworkFirewallOverrideAction: {
|
|
554
|
+
readonly DROP_TO_ALERT: "DROP_TO_ALERT";
|
|
555
|
+
};
|
|
556
|
+
export type NetworkFirewallOverrideAction =
|
|
557
|
+
(typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
|
|
530
558
|
export interface NetworkFirewallStatefulRuleGroupOverride {
|
|
531
559
|
Action?: NetworkFirewallOverrideAction | string;
|
|
532
560
|
}
|
|
@@ -724,10 +752,12 @@ export interface ListComplianceStatusRequest {
|
|
|
724
752
|
NextToken?: string;
|
|
725
753
|
MaxResults?: number;
|
|
726
754
|
}
|
|
727
|
-
export declare
|
|
728
|
-
Compliant
|
|
729
|
-
NonCompliant
|
|
730
|
-
}
|
|
755
|
+
export declare const PolicyComplianceStatusType: {
|
|
756
|
+
readonly Compliant: "COMPLIANT";
|
|
757
|
+
readonly NonCompliant: "NON_COMPLIANT";
|
|
758
|
+
};
|
|
759
|
+
export type PolicyComplianceStatusType =
|
|
760
|
+
(typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
|
|
731
761
|
export interface EvaluationResult {
|
|
732
762
|
ComplianceStatus?: PolicyComplianceStatusType | string;
|
|
733
763
|
ViolatorCount?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
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-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|