@aws-sdk/client-ec2 3.425.0 → 3.428.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 (53) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/EC2.js +4 -0
  3. package/dist-cjs/commands/DisableImageCommand.js +51 -0
  4. package/dist-cjs/commands/EnableImageCommand.js +51 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +1 -0
  7. package/dist-cjs/models/models_3.js +1 -0
  8. package/dist-cjs/protocols/Aws_ec2.js +133 -17
  9. package/dist-es/EC2.js +4 -0
  10. package/dist-es/commands/DisableImageCommand.js +47 -0
  11. package/dist-es/commands/EnableImageCommand.js +47 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/models/models_0.js +1 -0
  14. package/dist-es/models/models_3.js +1 -0
  15. package/dist-es/protocols/Aws_ec2.js +112 -0
  16. package/dist-types/EC2.d.ts +14 -0
  17. package/dist-types/EC2Client.d.ts +4 -2
  18. package/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +4 -0
  19. package/dist-types/commands/CreateCapacityReservationCommand.d.ts +2 -2
  20. package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
  21. package/dist-types/commands/CreateNatGatewayCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteVpcCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeImagesCommand.d.ts +3 -1
  26. package/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +4 -0
  27. package/dist-types/commands/DisableImageCommand.d.ts +84 -0
  28. package/dist-types/commands/EnableImageCommand.d.ts +81 -0
  29. package/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -1
  30. package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
  31. package/dist-types/commands/index.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +3 -3
  33. package/dist-types/models/models_1.d.ts +48 -7
  34. package/dist-types/models/models_3.d.ts +147 -28
  35. package/dist-types/models/models_4.d.ts +56 -35
  36. package/dist-types/models/models_5.d.ts +54 -78
  37. package/dist-types/models/models_6.d.ts +86 -105
  38. package/dist-types/models/models_7.d.ts +102 -2
  39. package/dist-types/protocols/Aws_ec2.d.ts +18 -0
  40. package/dist-types/ts3.4/EC2.d.ts +34 -0
  41. package/dist-types/ts3.4/EC2Client.d.ts +12 -0
  42. package/dist-types/ts3.4/commands/DisableImageCommand.d.ts +35 -0
  43. package/dist-types/ts3.4/commands/EnableImageCommand.d.ts +35 -0
  44. package/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  48. package/dist-types/ts3.4/models/models_3.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_5.d.ts +14 -19
  50. package/dist-types/ts3.4/models/models_6.d.ts +21 -18
  51. package/dist-types/ts3.4/models/models_7.d.ts +20 -3
  52. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
  53. package/package.json +33 -33
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EC2ClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EC2Client";
14
+ import { DisableImageRequest, DisableImageResult } from "../models/models_5";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DisableImageCommandInput extends DisableImageRequest {}
17
+ export interface DisableImageCommandOutput
18
+ extends DisableImageResult,
19
+ __MetadataBearer {}
20
+ export declare class DisableImageCommand extends $Command<
21
+ DisableImageCommandInput,
22
+ DisableImageCommandOutput,
23
+ EC2ClientResolvedConfig
24
+ > {
25
+ readonly input: DisableImageCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DisableImageCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EC2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DisableImageCommandInput, DisableImageCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EC2ClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EC2Client";
14
+ import { EnableImageRequest, EnableImageResult } from "../models/models_5";
15
+ export { __MetadataBearer, $Command };
16
+ export interface EnableImageCommandInput extends EnableImageRequest {}
17
+ export interface EnableImageCommandOutput
18
+ extends EnableImageResult,
19
+ __MetadataBearer {}
20
+ export declare class EnableImageCommand extends $Command<
21
+ EnableImageCommandInput,
22
+ EnableImageCommandOutput,
23
+ EC2ClientResolvedConfig
24
+ > {
25
+ readonly input: EnableImageCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: EnableImageCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EC2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<EnableImageCommandInput, EnableImageCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -11,10 +11,8 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../EC2Client";
14
- import {
15
- GetTransitGatewayRouteTablePropagationsRequest,
16
- GetTransitGatewayRouteTablePropagationsResult,
17
- } from "../models/models_5";
14
+ import { GetTransitGatewayRouteTablePropagationsRequest } from "../models/models_5";
15
+ import { GetTransitGatewayRouteTablePropagationsResult } from "../models/models_6";
18
16
  export { __MetadataBearer, $Command };
19
17
  export interface GetTransitGatewayRouteTablePropagationsCommandInput
20
18
  extends GetTransitGatewayRouteTablePropagationsRequest {}
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  GetVerifiedAccessEndpointPolicyRequest,
16
16
  GetVerifiedAccessEndpointPolicyResult,
17
- } from "../models/models_5";
17
+ } from "../models/models_6";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface GetVerifiedAccessEndpointPolicyCommandInput
20
20
  extends GetVerifiedAccessEndpointPolicyRequest {}
@@ -372,6 +372,7 @@ export * from "./DisableEbsEncryptionByDefaultCommand";
372
372
  export * from "./DisableFastLaunchCommand";
373
373
  export * from "./DisableFastSnapshotRestoresCommand";
374
374
  export * from "./DisableImageBlockPublicAccessCommand";
375
+ export * from "./DisableImageCommand";
375
376
  export * from "./DisableImageDeprecationCommand";
376
377
  export * from "./DisableIpamOrganizationAdminAccountCommand";
377
378
  export * from "./DisableSerialConsoleAccessCommand";
@@ -399,6 +400,7 @@ export * from "./EnableEbsEncryptionByDefaultCommand";
399
400
  export * from "./EnableFastLaunchCommand";
400
401
  export * from "./EnableFastSnapshotRestoresCommand";
401
402
  export * from "./EnableImageBlockPublicAccessCommand";
403
+ export * from "./EnableImageCommand";
402
404
  export * from "./EnableImageDeprecationCommand";
403
405
  export * from "./EnableIpamOrganizationAdminAccountCommand";
404
406
  export * from "./EnableReachabilityAnalyzerOrganizationSharingCommand";
@@ -1852,6 +1852,7 @@ export declare const CapacityReservationInstancePlatform: {
1852
1852
  readonly RHEL_WITH_SQL_SERVER_STANDARD: "RHEL with SQL Server Standard";
1853
1853
  readonly RHEL_WITH_SQL_SERVER_WEB: "RHEL with SQL Server Web";
1854
1854
  readonly SUSE_LINUX: "SUSE Linux";
1855
+ readonly UBUNTU_PRO_LINUX: "Ubuntu Pro";
1855
1856
  readonly WINDOWS: "Windows";
1856
1857
  readonly WINDOWS_WITH_SQL_SERVER: "Windows with SQL Server";
1857
1858
  readonly WINDOWS_WITH_SQL_SERVER_ENTERPRISE: "Windows with SQL Server Enterprise";
@@ -1526,6 +1526,7 @@ export interface DescribeImagesRequest {
1526
1526
  ImageIds?: string[];
1527
1527
  Owners?: string[];
1528
1528
  IncludeDeprecated?: boolean;
1529
+ IncludeDisabled?: boolean;
1529
1530
  DryRun?: boolean;
1530
1531
  MaxResults?: number;
1531
1532
  NextToken?: string;
@@ -1572,6 +1573,7 @@ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
1572
1573
  export declare const ImageState: {
1573
1574
  readonly available: "available";
1574
1575
  readonly deregistered: "deregistered";
1576
+ readonly disabled: "disabled";
1575
1577
  readonly error: "error";
1576
1578
  readonly failed: "failed";
1577
1579
  readonly invalid: "invalid";
@@ -1621,6 +1623,7 @@ export interface Image {
1621
1623
  TpmSupport?: TpmSupportValues | string;
1622
1624
  DeprecationTime?: string;
1623
1625
  ImdsSupport?: ImdsSupportValues | string;
1626
+ SourceInstanceId?: string;
1624
1627
  }
1625
1628
  export interface DescribeImagesResult {
1626
1629
  Images?: Image[];
@@ -574,6 +574,13 @@ export interface DisableFastSnapshotRestoresResult {
574
574
  Successful?: DisableFastSnapshotRestoreSuccessItem[];
575
575
  Unsuccessful?: DisableFastSnapshotRestoreErrorItem[];
576
576
  }
577
+ export interface DisableImageRequest {
578
+ ImageId: string | undefined;
579
+ DryRun?: boolean;
580
+ }
581
+ export interface DisableImageResult {
582
+ Return?: boolean;
583
+ }
577
584
  export interface DisableImageBlockPublicAccessRequest {
578
585
  DryRun?: boolean;
579
586
  }
@@ -844,6 +851,13 @@ export interface EnableFastSnapshotRestoresResult {
844
851
  Successful?: EnableFastSnapshotRestoreSuccessItem[];
845
852
  Unsuccessful?: EnableFastSnapshotRestoreErrorItem[];
846
853
  }
854
+ export interface EnableImageRequest {
855
+ ImageId: string | undefined;
856
+ DryRun?: boolean;
857
+ }
858
+ export interface EnableImageResult {
859
+ Return?: boolean;
860
+ }
847
861
  export declare const ImageBlockPublicAccessEnabledState: {
848
862
  readonly block_new_sharing: "block-new-sharing";
849
863
  };
@@ -1639,25 +1653,6 @@ export interface GetTransitGatewayRouteTablePropagationsRequest {
1639
1653
  NextToken?: string;
1640
1654
  DryRun?: boolean;
1641
1655
  }
1642
- export interface TransitGatewayRouteTablePropagation {
1643
- TransitGatewayAttachmentId?: string;
1644
- ResourceId?: string;
1645
- ResourceType?: TransitGatewayAttachmentResourceType | string;
1646
- State?: TransitGatewayPropagationState | string;
1647
- TransitGatewayRouteTableAnnouncementId?: string;
1648
- }
1649
- export interface GetTransitGatewayRouteTablePropagationsResult {
1650
- TransitGatewayRouteTablePropagations?: TransitGatewayRouteTablePropagation[];
1651
- NextToken?: string;
1652
- }
1653
- export interface GetVerifiedAccessEndpointPolicyRequest {
1654
- VerifiedAccessEndpointId: string | undefined;
1655
- DryRun?: boolean;
1656
- }
1657
- export interface GetVerifiedAccessEndpointPolicyResult {
1658
- PolicyEnabled?: boolean;
1659
- PolicyDocument?: string;
1660
- }
1661
1656
  export declare const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog: (
1662
1657
  obj: DescribeVerifiedAccessTrustProvidersResult
1663
1658
  ) => any;
@@ -25,6 +25,7 @@ import {
25
25
  RouteTableAssociationState,
26
26
  Tag,
27
27
  TagSpecification,
28
+ TransitGatewayAttachmentResourceType,
28
29
  TransitGatewayMulticastDomainAssociations,
29
30
  TransitGatewayPeeringAttachment,
30
31
  TransitGatewayVpcAttachment,
@@ -56,7 +57,6 @@ import {
56
57
  LaunchTemplate,
57
58
  LocalGatewayRoute,
58
59
  ManagedPrefixList,
59
- MarketType,
60
60
  Placement,
61
61
  PlatformValues,
62
62
  RequestIpamResourceTag,
@@ -146,10 +146,30 @@ import {
146
146
  InstanceFamilyCreditSpecification,
147
147
  IpamResourceCidr,
148
148
  Purchase,
149
+ TransitGatewayPropagationState,
149
150
  UnlimitedSupportedInstanceFamily,
150
151
  VerifiedAccessInstanceLoggingConfiguration,
151
152
  VolumeModification,
152
153
  } from "./models_5";
154
+ export interface TransitGatewayRouteTablePropagation {
155
+ TransitGatewayAttachmentId?: string;
156
+ ResourceId?: string;
157
+ ResourceType?: TransitGatewayAttachmentResourceType | string;
158
+ State?: TransitGatewayPropagationState | string;
159
+ TransitGatewayRouteTableAnnouncementId?: string;
160
+ }
161
+ export interface GetTransitGatewayRouteTablePropagationsResult {
162
+ TransitGatewayRouteTablePropagations?: TransitGatewayRouteTablePropagation[];
163
+ NextToken?: string;
164
+ }
165
+ export interface GetVerifiedAccessEndpointPolicyRequest {
166
+ VerifiedAccessEndpointId: string | undefined;
167
+ DryRun?: boolean;
168
+ }
169
+ export interface GetVerifiedAccessEndpointPolicyResult {
170
+ PolicyEnabled?: boolean;
171
+ PolicyDocument?: string;
172
+ }
153
173
  export interface GetVerifiedAccessGroupPolicyRequest {
154
174
  VerifiedAccessGroupId: string | undefined;
155
175
  DryRun?: boolean;
@@ -1822,23 +1842,6 @@ export interface ElasticInferenceAccelerator {
1822
1842
  Type: string | undefined;
1823
1843
  Count?: number;
1824
1844
  }
1825
- export interface EnclaveOptionsRequest {
1826
- Enabled?: boolean;
1827
- }
1828
- export interface HibernationOptionsRequest {
1829
- Configured?: boolean;
1830
- }
1831
- export interface SpotMarketOptions {
1832
- MaxPrice?: string;
1833
- SpotInstanceType?: SpotInstanceType | string;
1834
- BlockDurationMinutes?: number;
1835
- ValidUntil?: Date;
1836
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
1837
- }
1838
- export interface InstanceMarketOptionsRequest {
1839
- MarketType?: MarketType | string;
1840
- SpotOptions?: SpotMarketOptions;
1841
- }
1842
1845
  export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
1843
1846
  obj: GetVpnConnectionDeviceSampleConfigurationResult
1844
1847
  ) => any;
@@ -12,10 +12,13 @@ import {
12
12
  CreditSpecificationRequest,
13
13
  ElasticGpuSpecification,
14
14
  HostnameType,
15
+ InstanceInterruptionBehavior,
15
16
  InstanceIpv6Address,
16
17
  LocalGatewayRoute,
18
+ MarketType,
17
19
  Placement,
18
20
  ShutdownBehavior,
21
+ SpotInstanceType,
19
22
  } from "./models_1";
20
23
  import { TransitGatewayRoute } from "./models_2";
21
24
  import { ClientVpnConnectionStatus, Filter } from "./models_3";
@@ -35,11 +38,25 @@ import {
35
38
  CapacityReservationSpecification,
36
39
  CpuOptionsRequest,
37
40
  ElasticInferenceAccelerator,
38
- EnclaveOptionsRequest,
39
- HibernationOptionsRequest,
40
- InstanceMarketOptionsRequest,
41
41
  InstanceMonitoring,
42
42
  } from "./models_6";
43
+ export interface EnclaveOptionsRequest {
44
+ Enabled?: boolean;
45
+ }
46
+ export interface HibernationOptionsRequest {
47
+ Configured?: boolean;
48
+ }
49
+ export interface SpotMarketOptions {
50
+ MaxPrice?: string;
51
+ SpotInstanceType?: SpotInstanceType | string;
52
+ BlockDurationMinutes?: number;
53
+ ValidUntil?: Date;
54
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
55
+ }
56
+ export interface InstanceMarketOptionsRequest {
57
+ MarketType?: MarketType | string;
58
+ SpotOptions?: SpotMarketOptions;
59
+ }
43
60
  export interface LaunchTemplateSpecification {
44
61
  LaunchTemplateId?: string;
45
62
  LaunchTemplateName?: string;
@@ -1499,6 +1499,10 @@ import {
1499
1499
  DisableImageBlockPublicAccessCommandInput,
1500
1500
  DisableImageBlockPublicAccessCommandOutput,
1501
1501
  } from "../commands/DisableImageBlockPublicAccessCommand";
1502
+ import {
1503
+ DisableImageCommandInput,
1504
+ DisableImageCommandOutput,
1505
+ } from "../commands/DisableImageCommand";
1502
1506
  import {
1503
1507
  DisableImageDeprecationCommandInput,
1504
1508
  DisableImageDeprecationCommandOutput,
@@ -1607,6 +1611,10 @@ import {
1607
1611
  EnableImageBlockPublicAccessCommandInput,
1608
1612
  EnableImageBlockPublicAccessCommandOutput,
1609
1613
  } from "../commands/EnableImageBlockPublicAccessCommand";
1614
+ import {
1615
+ EnableImageCommandInput,
1616
+ EnableImageCommandOutput,
1617
+ } from "../commands/EnableImageCommand";
1610
1618
  import {
1611
1619
  EnableImageDeprecationCommandInput,
1612
1620
  EnableImageDeprecationCommandOutput,
@@ -3883,6 +3891,10 @@ export declare const se_DisableFastSnapshotRestoresCommand: (
3883
3891
  input: DisableFastSnapshotRestoresCommandInput,
3884
3892
  context: __SerdeContext
3885
3893
  ) => Promise<__HttpRequest>;
3894
+ export declare const se_DisableImageCommand: (
3895
+ input: DisableImageCommandInput,
3896
+ context: __SerdeContext
3897
+ ) => Promise<__HttpRequest>;
3886
3898
  export declare const se_DisableImageBlockPublicAccessCommand: (
3887
3899
  input: DisableImageBlockPublicAccessCommandInput,
3888
3900
  context: __SerdeContext
@@ -3991,6 +4003,10 @@ export declare const se_EnableFastSnapshotRestoresCommand: (
3991
4003
  input: EnableFastSnapshotRestoresCommandInput,
3992
4004
  context: __SerdeContext
3993
4005
  ) => Promise<__HttpRequest>;
4006
+ export declare const se_EnableImageCommand: (
4007
+ input: EnableImageCommandInput,
4008
+ context: __SerdeContext
4009
+ ) => Promise<__HttpRequest>;
3994
4010
  export declare const se_EnableImageBlockPublicAccessCommand: (
3995
4011
  input: EnableImageBlockPublicAccessCommandInput,
3996
4012
  context: __SerdeContext
@@ -6271,6 +6287,10 @@ export declare const de_DisableFastSnapshotRestoresCommand: (
6271
6287
  output: __HttpResponse,
6272
6288
  context: __SerdeContext
6273
6289
  ) => Promise<DisableFastSnapshotRestoresCommandOutput>;
6290
+ export declare const de_DisableImageCommand: (
6291
+ output: __HttpResponse,
6292
+ context: __SerdeContext
6293
+ ) => Promise<DisableImageCommandOutput>;
6274
6294
  export declare const de_DisableImageBlockPublicAccessCommand: (
6275
6295
  output: __HttpResponse,
6276
6296
  context: __SerdeContext
@@ -6379,6 +6399,10 @@ export declare const de_EnableFastSnapshotRestoresCommand: (
6379
6399
  output: __HttpResponse,
6380
6400
  context: __SerdeContext
6381
6401
  ) => Promise<EnableFastSnapshotRestoresCommandOutput>;
6402
+ export declare const de_EnableImageCommand: (
6403
+ output: __HttpResponse,
6404
+ context: __SerdeContext
6405
+ ) => Promise<EnableImageCommandOutput>;
6382
6406
  export declare const de_EnableImageBlockPublicAccessCommand: (
6383
6407
  output: __HttpResponse,
6384
6408
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.425.0",
4
+ "version": "3.428.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.425.0",
25
- "@aws-sdk/credential-provider-node": "3.425.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-sdk-ec2": "3.425.0",
30
- "@aws-sdk/middleware-signing": "3.425.0",
31
- "@aws-sdk/middleware-user-agent": "3.425.0",
32
- "@aws-sdk/region-config-resolver": "3.425.0",
33
- "@aws-sdk/types": "3.425.0",
34
- "@aws-sdk/util-endpoints": "3.425.0",
35
- "@aws-sdk/util-user-agent-browser": "3.425.0",
36
- "@aws-sdk/util-user-agent-node": "3.425.0",
37
- "@smithy/config-resolver": "^2.0.11",
38
- "@smithy/fetch-http-handler": "^2.2.1",
39
- "@smithy/hash-node": "^2.0.10",
40
- "@smithy/invalid-dependency": "^2.0.10",
41
- "@smithy/middleware-content-length": "^2.0.12",
42
- "@smithy/middleware-endpoint": "^2.0.10",
43
- "@smithy/middleware-retry": "^2.0.13",
44
- "@smithy/middleware-serde": "^2.0.10",
45
- "@smithy/middleware-stack": "^2.0.4",
46
- "@smithy/node-config-provider": "^2.0.13",
47
- "@smithy/node-http-handler": "^2.1.6",
48
- "@smithy/protocol-http": "^3.0.6",
49
- "@smithy/smithy-client": "^2.1.9",
50
- "@smithy/types": "^2.3.4",
51
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.428.0",
25
+ "@aws-sdk/credential-provider-node": "3.428.0",
26
+ "@aws-sdk/middleware-host-header": "3.428.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-sdk-ec2": "3.428.0",
30
+ "@aws-sdk/middleware-signing": "3.428.0",
31
+ "@aws-sdk/middleware-user-agent": "3.428.0",
32
+ "@aws-sdk/region-config-resolver": "3.428.0",
33
+ "@aws-sdk/types": "3.428.0",
34
+ "@aws-sdk/util-endpoints": "3.428.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
36
+ "@aws-sdk/util-user-agent-node": "3.428.0",
37
+ "@smithy/config-resolver": "^2.0.14",
38
+ "@smithy/fetch-http-handler": "^2.2.3",
39
+ "@smithy/hash-node": "^2.0.11",
40
+ "@smithy/invalid-dependency": "^2.0.11",
41
+ "@smithy/middleware-content-length": "^2.0.13",
42
+ "@smithy/middleware-endpoint": "^2.1.0",
43
+ "@smithy/middleware-retry": "^2.0.16",
44
+ "@smithy/middleware-serde": "^2.0.11",
45
+ "@smithy/middleware-stack": "^2.0.5",
46
+ "@smithy/node-config-provider": "^2.1.1",
47
+ "@smithy/node-http-handler": "^2.1.7",
48
+ "@smithy/protocol-http": "^3.0.7",
49
+ "@smithy/smithy-client": "^2.1.11",
50
+ "@smithy/types": "^2.3.5",
51
+ "@smithy/url-parser": "^2.0.11",
52
52
  "@smithy/util-base64": "^2.0.0",
53
53
  "@smithy/util-body-length-browser": "^2.0.0",
54
54
  "@smithy/util-body-length-node": "^2.1.0",
55
- "@smithy/util-defaults-mode-browser": "^2.0.13",
56
- "@smithy/util-defaults-mode-node": "^2.0.15",
57
- "@smithy/util-retry": "^2.0.3",
55
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
56
+ "@smithy/util-defaults-mode-node": "^2.0.19",
57
+ "@smithy/util-retry": "^2.0.4",
58
58
  "@smithy/util-utf8": "^2.0.0",
59
- "@smithy/util-waiter": "^2.0.10",
59
+ "@smithy/util-waiter": "^2.0.11",
60
60
  "fast-xml-parser": "4.2.5",
61
61
  "tslib": "^2.5.0",
62
62
  "uuid": "^8.3.2"