@aws-sdk/client-ec2 3.525.0 → 3.529.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/index.js +584 -596
- package/dist-es/protocols/Aws_ec2.js +22 -34
- package/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
- package/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -4
- package/dist-types/commands/CopyImageCommand.d.ts +24 -16
- package/dist-types/commands/CreateImageCommand.d.ts +6 -5
- package/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +3 -3
- package/dist-types/commands/CreateStoreImageTaskCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterImageCommand.d.ts +11 -11
- package/dist-types/commands/DescribeBundleTasksCommand.d.ts +8 -1
- package/dist-types/commands/DescribeCapacityBlockOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetInstancesCommand.d.ts +7 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +7 -2
- package/dist-types/commands/DescribeImageAttributeCommand.d.ts +6 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +9 -3
- package/dist-types/commands/DescribeInstanceStatusCommand.d.ts +5 -0
- package/dist-types/commands/DescribeInstancesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +6 -4
- package/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +2 -2
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +8 -7
- package/dist-types/commands/EnableImageDeprecationCommand.d.ts +2 -1
- package/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +2 -2
- package/dist-types/commands/ModifyImageAttributeCommand.d.ts +7 -5
- package/dist-types/commands/ModifyInstancePlacementCommand.d.ts +1 -1
- package/dist-types/commands/RegisterImageCommand.d.ts +24 -13
- package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +42 -22
- package/dist-types/models/models_1.d.ts +51 -28
- package/dist-types/models/models_2.d.ts +5 -4
- package/dist-types/models/models_3.d.ts +86 -76
- package/dist-types/models/models_4.d.ts +13 -4
- package/dist-types/models/models_5.d.ts +40 -33
- package/dist-types/models/models_6.d.ts +67 -43
- package/dist-types/models/models_7.d.ts +3 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_6.d.ts +1 -0
- package/package.json +4 -5
|
@@ -2626,8 +2626,8 @@ export interface ImportVolumeResult {
|
|
|
2626
2626
|
export interface ListImagesInRecycleBinRequest {
|
|
2627
2627
|
/**
|
|
2628
2628
|
* @public
|
|
2629
|
-
* <p>The IDs of the AMIs to list. Omit this parameter to list all of the AMIs that
|
|
2630
|
-
*
|
|
2629
|
+
* <p>The IDs of the AMIs to list. Omit this parameter to list all of the AMIs that are in the
|
|
2630
|
+
* Recycle Bin. You can specify up to 20 IDs in a single request.</p>
|
|
2631
2631
|
*/
|
|
2632
2632
|
ImageIds?: string[];
|
|
2633
2633
|
/**
|
|
@@ -3657,12 +3657,14 @@ export interface ModifyIdFormatRequest {
|
|
|
3657
3657
|
export interface LaunchPermissionModifications {
|
|
3658
3658
|
/**
|
|
3659
3659
|
* @public
|
|
3660
|
-
* <p>The Amazon Web Services account ID, organization ARN, or OU ARN to add to the list of
|
|
3660
|
+
* <p>The Amazon Web Services account ID, organization ARN, or OU ARN to add to the list of
|
|
3661
|
+
* launch permissions for the AMI.</p>
|
|
3661
3662
|
*/
|
|
3662
3663
|
Add?: LaunchPermission[];
|
|
3663
3664
|
/**
|
|
3664
3665
|
* @public
|
|
3665
|
-
* <p>The Amazon Web Services account ID, organization ARN, or OU ARN to remove from the list of
|
|
3666
|
+
* <p>The Amazon Web Services account ID, organization ARN, or OU ARN to remove from the list of
|
|
3667
|
+
* launch permissions for the AMI.</p>
|
|
3666
3668
|
*/
|
|
3667
3669
|
Remove?: LaunchPermission[];
|
|
3668
3670
|
}
|
|
@@ -3674,7 +3676,8 @@ export interface ModifyImageAttributeRequest {
|
|
|
3674
3676
|
/**
|
|
3675
3677
|
* @public
|
|
3676
3678
|
* <p>The name of the attribute to modify.</p>
|
|
3677
|
-
* <p>Valid values: <code>description</code> | <code>imdsSupport</code> |
|
|
3679
|
+
* <p>Valid values: <code>description</code> | <code>imdsSupport</code> |
|
|
3680
|
+
* <code>launchPermission</code>
|
|
3678
3681
|
* </p>
|
|
3679
3682
|
*/
|
|
3680
3683
|
Attribute?: string;
|
|
@@ -3695,8 +3698,8 @@ export interface ModifyImageAttributeRequest {
|
|
|
3695
3698
|
LaunchPermission?: LaunchPermissionModifications;
|
|
3696
3699
|
/**
|
|
3697
3700
|
* @public
|
|
3698
|
-
* <p>The operation type.
|
|
3699
|
-
*
|
|
3701
|
+
* <p>The operation type. This parameter can be used only when the <code>Attribute</code>
|
|
3702
|
+
* parameter is <code>launchPermission</code>.</p>
|
|
3700
3703
|
*/
|
|
3701
3704
|
OperationType?: OperationType;
|
|
3702
3705
|
/**
|
|
@@ -3706,20 +3709,21 @@ export interface ModifyImageAttributeRequest {
|
|
|
3706
3709
|
ProductCodes?: string[];
|
|
3707
3710
|
/**
|
|
3708
3711
|
* @public
|
|
3709
|
-
* <p>The user groups.
|
|
3710
|
-
*
|
|
3712
|
+
* <p>The user groups. This parameter can be used only when the <code>Attribute</code> parameter
|
|
3713
|
+
* is <code>launchPermission</code>.</p>
|
|
3711
3714
|
*/
|
|
3712
3715
|
UserGroups?: string[];
|
|
3713
3716
|
/**
|
|
3714
3717
|
* @public
|
|
3715
|
-
* <p>The Amazon Web Services account IDs.
|
|
3716
|
-
*
|
|
3718
|
+
* <p>The Amazon Web Services account IDs. This parameter can be used only when the
|
|
3719
|
+
* <code>Attribute</code> parameter is <code>launchPermission</code>.</p>
|
|
3717
3720
|
*/
|
|
3718
3721
|
UserIds?: string[];
|
|
3719
3722
|
/**
|
|
3720
3723
|
* @public
|
|
3721
|
-
* <p>The value of the attribute being modified.
|
|
3722
|
-
*
|
|
3724
|
+
* <p>The value of the attribute being modified. This parameter can be used only when the
|
|
3725
|
+
* <code>Attribute</code> parameter is <code>description</code> or
|
|
3726
|
+
* <code>imdsSupport</code>.</p>
|
|
3723
3727
|
*/
|
|
3724
3728
|
Value?: string;
|
|
3725
3729
|
/**
|
|
@@ -3731,25 +3735,27 @@ export interface ModifyImageAttributeRequest {
|
|
|
3731
3735
|
DryRun?: boolean;
|
|
3732
3736
|
/**
|
|
3733
3737
|
* @public
|
|
3734
|
-
* <p>The Amazon Resource Name (ARN) of an organization. This parameter can be used only when
|
|
3738
|
+
* <p>The Amazon Resource Name (ARN) of an organization. This parameter can be used only when
|
|
3739
|
+
* the <code>Attribute</code> parameter is <code>launchPermission</code>.</p>
|
|
3735
3740
|
*/
|
|
3736
3741
|
OrganizationArns?: string[];
|
|
3737
3742
|
/**
|
|
3738
3743
|
* @public
|
|
3739
|
-
* <p>The Amazon Resource Name (ARN) of an organizational unit (OU). This parameter can be used
|
|
3744
|
+
* <p>The Amazon Resource Name (ARN) of an organizational unit (OU). This parameter can be used
|
|
3745
|
+
* only when the <code>Attribute</code> parameter is <code>launchPermission</code>.</p>
|
|
3740
3746
|
*/
|
|
3741
3747
|
OrganizationalUnitArns?: string[];
|
|
3742
3748
|
/**
|
|
3743
3749
|
* @public
|
|
3744
3750
|
* <p>Set to <code>v2.0</code> to indicate that IMDSv2 is specified in the AMI. Instances
|
|
3745
3751
|
* launched from this AMI will have <code>HttpTokens</code> automatically set to
|
|
3746
|
-
*
|
|
3752
|
+
* <code>required</code> so that, by default, the instance requires that IMDSv2 is used when
|
|
3747
3753
|
* requesting instance metadata. In addition, <code>HttpPutResponseHopLimit</code> is set to
|
|
3748
|
-
*
|
|
3749
|
-
* the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
3754
|
+
* <code>2</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration">Configure the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
3750
3755
|
* <important>
|
|
3751
|
-
* <p>Do not use this parameter unless your AMI software supports IMDSv2. After you set the
|
|
3752
|
-
* you can't undo it. The only way to “reset” your AMI is to create
|
|
3756
|
+
* <p>Do not use this parameter unless your AMI software supports IMDSv2. After you set the
|
|
3757
|
+
* value to <code>v2.0</code>, you can't undo it. The only way to “reset” your AMI is to create
|
|
3758
|
+
* a new AMI from the underlying snapshot.</p>
|
|
3753
3759
|
* </important>
|
|
3754
3760
|
*/
|
|
3755
3761
|
ImdsSupport?: AttributeValue;
|
|
@@ -4385,7 +4391,7 @@ export type HostTenancy = (typeof HostTenancy)[keyof typeof HostTenancy];
|
|
|
4385
4391
|
export interface ModifyInstancePlacementRequest {
|
|
4386
4392
|
/**
|
|
4387
4393
|
* @public
|
|
4388
|
-
* <p>The affinity setting for the instance
|
|
4394
|
+
* <p>The affinity setting for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-dedicated-hosts-work.html#dedicated-hosts-affinity">Host affinity</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
4389
4395
|
*/
|
|
4390
4396
|
Affinity?: Affinity;
|
|
4391
4397
|
/**
|
|
@@ -7947,25 +7953,26 @@ export interface RegisterImageRequest {
|
|
|
7947
7953
|
/**
|
|
7948
7954
|
* @public
|
|
7949
7955
|
* <p>The full path to your AMI manifest in Amazon S3 storage. The specified bucket must have the
|
|
7950
|
-
*
|
|
7951
|
-
*
|
|
7952
|
-
*
|
|
7956
|
+
* <code>aws-exec-read</code> canned access control list (ACL) to ensure that it can be
|
|
7957
|
+
* accessed by Amazon EC2. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl">Canned ACLs</a> in the
|
|
7958
|
+
* <i>Amazon S3 Service Developer Guide</i>.</p>
|
|
7953
7959
|
*/
|
|
7954
7960
|
ImageLocation?: string;
|
|
7955
7961
|
/**
|
|
7956
7962
|
* @public
|
|
7957
7963
|
* <p>The architecture of the AMI.</p>
|
|
7958
|
-
* <p>Default: For Amazon EBS-backed AMIs, <code>i386</code>.
|
|
7959
|
-
*
|
|
7964
|
+
* <p>Default: For Amazon EBS-backed AMIs, <code>i386</code>. For instance store-backed AMIs, the
|
|
7965
|
+
* architecture specified in the manifest file.</p>
|
|
7960
7966
|
*/
|
|
7961
7967
|
Architecture?: ArchitectureValues;
|
|
7962
7968
|
/**
|
|
7963
7969
|
* @public
|
|
7964
7970
|
* <p>The block device mapping entries.</p>
|
|
7965
|
-
* <p>If you specify an Amazon EBS volume using the ID of an Amazon EBS snapshot, you can't specify the
|
|
7966
|
-
*
|
|
7967
|
-
*
|
|
7968
|
-
*
|
|
7971
|
+
* <p>If you specify an Amazon EBS volume using the ID of an Amazon EBS snapshot, you can't specify the
|
|
7972
|
+
* encryption state of the volume.</p>
|
|
7973
|
+
* <p>If you create an AMI on an Outpost, then all backing snapshots must be on the same Outpost
|
|
7974
|
+
* or in the Region of that Outpost. AMIs on an Outpost that include local snapshots can be used
|
|
7975
|
+
* to launch instances on the same Outpost only. For more information, <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#ami">Amazon EBS local
|
|
7969
7976
|
* snapshots on Outposts</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
7970
7977
|
*/
|
|
7971
7978
|
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
@@ -7983,8 +7990,10 @@ export interface RegisterImageRequest {
|
|
|
7983
7990
|
DryRun?: boolean;
|
|
7984
7991
|
/**
|
|
7985
7992
|
* @public
|
|
7986
|
-
* <p>Set to <code>true</code> to enable enhanced networking with ENA for the AMI and any
|
|
7987
|
-
*
|
|
7993
|
+
* <p>Set to <code>true</code> to enable enhanced networking with ENA for the AMI and any
|
|
7994
|
+
* instances that you launch from the AMI.</p>
|
|
7995
|
+
* <p>This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make
|
|
7996
|
+
* instances launched from the AMI unreachable.</p>
|
|
7988
7997
|
*/
|
|
7989
7998
|
EnaSupport?: boolean;
|
|
7990
7999
|
/**
|
|
@@ -7995,17 +8004,20 @@ export interface RegisterImageRequest {
|
|
|
7995
8004
|
/**
|
|
7996
8005
|
* @public
|
|
7997
8006
|
* <p>A name for your AMI.</p>
|
|
7998
|
-
* <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces
|
|
8007
|
+
* <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces
|
|
8008
|
+
* ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or
|
|
8009
|
+
* underscores(_)</p>
|
|
7999
8010
|
*/
|
|
8000
8011
|
Name: string | undefined;
|
|
8001
8012
|
/**
|
|
8002
8013
|
* @public
|
|
8003
|
-
* <p>The billing product codes. Your account must be authorized to specify billing product
|
|
8014
|
+
* <p>The billing product codes. Your account must be authorized to specify billing product
|
|
8015
|
+
* codes.</p>
|
|
8004
8016
|
* <p>If your account is not authorized to specify billing product codes, you can publish AMIs
|
|
8005
8017
|
* that include billable software and list them on the Amazon Web Services Marketplace. You must first register as a seller
|
|
8006
8018
|
* on the Amazon Web Services Marketplace. For more information, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/user-guide-for-sellers.html">Getting started as a
|
|
8007
|
-
* seller</a> and <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/ami-products.html">AMI-based
|
|
8008
|
-
*
|
|
8019
|
+
* seller</a> and <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/ami-products.html">AMI-based products</a> in the
|
|
8020
|
+
* <i>Amazon Web Services Marketplace Seller Guide</i>.</p>
|
|
8009
8021
|
*/
|
|
8010
8022
|
BillingProducts?: string[];
|
|
8011
8023
|
/**
|
|
@@ -8020,9 +8032,11 @@ export interface RegisterImageRequest {
|
|
|
8020
8032
|
RootDeviceName?: string;
|
|
8021
8033
|
/**
|
|
8022
8034
|
* @public
|
|
8023
|
-
* <p>Set to <code>simple</code> to enable enhanced networking with the Intel 82599 Virtual
|
|
8035
|
+
* <p>Set to <code>simple</code> to enable enhanced networking with the Intel 82599 Virtual
|
|
8036
|
+
* Function interface for the AMI and any instances that you launch from the AMI.</p>
|
|
8024
8037
|
* <p>There is no way to disable <code>sriovNetSupport</code> at this time.</p>
|
|
8025
|
-
* <p>This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make
|
|
8038
|
+
* <p>This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make
|
|
8039
|
+
* instances launched from the AMI unreachable.</p>
|
|
8026
8040
|
*/
|
|
8027
8041
|
SriovNetSupport?: string;
|
|
8028
8042
|
/**
|
|
@@ -8034,9 +8048,11 @@ export interface RegisterImageRequest {
|
|
|
8034
8048
|
VirtualizationType?: string;
|
|
8035
8049
|
/**
|
|
8036
8050
|
* @public
|
|
8037
|
-
* <p>The boot mode of the AMI. A value of <code>uefi-preferred</code> indicates that the AMI
|
|
8051
|
+
* <p>The boot mode of the AMI. A value of <code>uefi-preferred</code> indicates that the AMI
|
|
8052
|
+
* supports both UEFI and Legacy BIOS.</p>
|
|
8038
8053
|
* <note>
|
|
8039
|
-
* <p>The operating system contained in the AMI must be configured to support the specified
|
|
8054
|
+
* <p>The operating system contained in the AMI must be configured to support the specified
|
|
8055
|
+
* boot mode.</p>
|
|
8040
8056
|
* </note>
|
|
8041
8057
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html">Boot modes</a> in the
|
|
8042
8058
|
* <i>Amazon EC2 User Guide</i>.</p>
|
|
@@ -8063,13 +8079,21 @@ export interface RegisterImageRequest {
|
|
|
8063
8079
|
* launched from this AMI will have <code>HttpTokens</code> automatically set to
|
|
8064
8080
|
* <code>required</code> so that, by default, the instance requires that IMDSv2 is used when
|
|
8065
8081
|
* requesting instance metadata. In addition, <code>HttpPutResponseHopLimit</code> is set to
|
|
8066
|
-
* <code>2</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration">Configure
|
|
8067
|
-
* the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
8082
|
+
* <code>2</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration">Configure the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
8068
8083
|
* <note>
|
|
8069
|
-
* <p>If you set the value to <code>v2.0</code>, make sure that your AMI software can support
|
|
8084
|
+
* <p>If you set the value to <code>v2.0</code>, make sure that your AMI software can support
|
|
8085
|
+
* IMDSv2.</p>
|
|
8070
8086
|
* </note>
|
|
8071
8087
|
*/
|
|
8072
8088
|
ImdsSupport?: ImdsSupportValues;
|
|
8089
|
+
/**
|
|
8090
|
+
* @public
|
|
8091
|
+
* <p>The tags to apply to the AMI.</p>
|
|
8092
|
+
* <p>To tag the AMI, the value for <code>ResourceType</code> must be <code>image</code>. If you
|
|
8093
|
+
* specify another value for <code>ResourceType</code>, the request fails.</p>
|
|
8094
|
+
* <p>To tag an AMI after it has been registered, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
|
|
8095
|
+
*/
|
|
8096
|
+
TagSpecifications?: TagSpecification[];
|
|
8073
8097
|
}
|
|
8074
8098
|
/**
|
|
8075
8099
|
* @public
|
|
@@ -1074,7 +1074,8 @@ export type ResetImageAttributeName = (typeof ResetImageAttributeName)[keyof typ
|
|
|
1074
1074
|
export interface ResetImageAttributeRequest {
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @public
|
|
1077
|
-
* <p>The attribute to reset (currently you can only reset the launch permission
|
|
1077
|
+
* <p>The attribute to reset (currently you can only reset the launch permission
|
|
1078
|
+
* attribute).</p>
|
|
1078
1079
|
*/
|
|
1079
1080
|
Attribute: ResetImageAttributeName | undefined;
|
|
1080
1081
|
/**
|
|
@@ -2436,7 +2437,7 @@ export interface ScheduledInstancesNetworkInterface {
|
|
|
2436
2437
|
* assigned to a new network interface, not an existing one. You cannot specify more than one
|
|
2437
2438
|
* network interface in the request. If launching into a default subnet, the default value is
|
|
2438
2439
|
* <code>true</code>.</p>
|
|
2439
|
-
* <p>
|
|
2440
|
+
* <p>Amazon Web Services charges for all public IPv4 addresses, including public IPv4 addresses
|
|
2440
2441
|
* associated with running instances and Elastic IP addresses. For more information, see the <i>Public IPv4 Address</i> tab on the <a href="http://aws.amazon.com/vpc/pricing/">Amazon VPC pricing page</a>.</p>
|
|
2441
2442
|
*/
|
|
2442
2443
|
AssociatePublicIpAddress?: boolean;
|
|
@@ -1807,6 +1807,7 @@ export interface RegisterImageRequest {
|
|
|
1807
1807
|
TpmSupport?: TpmSupportValues;
|
|
1808
1808
|
UefiData?: string;
|
|
1809
1809
|
ImdsSupport?: ImdsSupportValues;
|
|
1810
|
+
TagSpecifications?: TagSpecification[];
|
|
1810
1811
|
}
|
|
1811
1812
|
export interface RegisterImageResult {
|
|
1812
1813
|
ImageId?: string;
|
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.
|
|
4
|
+
"version": "3.529.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.529.0",
|
|
24
|
+
"@aws-sdk/core": "3.529.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.529.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.523.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.523.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.523.0",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"@smithy/util-retry": "^2.1.3",
|
|
60
60
|
"@smithy/util-utf8": "^2.1.1",
|
|
61
61
|
"@smithy/util-waiter": "^2.1.3",
|
|
62
|
-
"fast-xml-parser": "4.2.5",
|
|
63
62
|
"tslib": "^2.5.0",
|
|
64
63
|
"uuid": "^9.0.1"
|
|
65
64
|
},
|