@aws-sdk/client-ec2 3.213.0 → 3.215.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/endpoint/ruleset.js +1 -1
- package/dist-cjs/protocols/Aws_ec2.js +3 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/protocols/Aws_ec2.js +3 -0
- package/dist-types/EC2.d.ts +12 -13
- package/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +1 -1
- package/dist-types/commands/CopyImageCommand.d.ts +2 -2
- package/dist-types/commands/CreateImageCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterImageCommand.d.ts +3 -4
- package/dist-types/commands/RegisterImageCommand.d.ts +4 -4
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +25 -10
- package/dist-types/models/models_3.d.ts +3 -4
- 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/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +30 -30
|
@@ -23960,6 +23960,9 @@ const serializeAws_ec2CopyImageRequest = (input, context) => {
|
|
|
23960
23960
|
if (input.DryRun != null) {
|
|
23961
23961
|
entries["DryRun"] = input.DryRun;
|
|
23962
23962
|
}
|
|
23963
|
+
if (input.CopyImageTags != null) {
|
|
23964
|
+
entries["CopyImageTags"] = input.CopyImageTags;
|
|
23965
|
+
}
|
|
23963
23966
|
return entries;
|
|
23964
23967
|
};
|
|
23965
23968
|
const serializeAws_ec2CopySnapshotRequest = (input, context) => {
|
|
@@ -22842,6 +22842,9 @@ const serializeAws_ec2CopyImageRequest = (input, context) => {
|
|
|
22842
22842
|
if (input.DryRun != null) {
|
|
22843
22843
|
entries["DryRun"] = input.DryRun;
|
|
22844
22844
|
}
|
|
22845
|
+
if (input.CopyImageTags != null) {
|
|
22846
|
+
entries["CopyImageTags"] = input.CopyImageTags;
|
|
22847
|
+
}
|
|
22845
22848
|
return entries;
|
|
22846
22849
|
};
|
|
22847
22850
|
const serializeAws_ec2CopySnapshotRequest = (input, context) => {
|
package/dist-types/EC2.d.ts
CHANGED
|
@@ -1055,7 +1055,7 @@ export declare class EC2 extends EC2Client {
|
|
|
1055
1055
|
cancelExportTask(args: CancelExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelExportTaskCommandOutput) => void): void;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>Removes your Amazon Web Services account from the launch permissions for the specified AMI. For more
|
|
1058
|
-
* information, see <a href="https://docs.aws.amazon.com/">Cancel
|
|
1058
|
+
* information, see <a href="https://docs.aws.amazon.com/">Cancel having an AMI shared with your Amazon Web Services account</a>
|
|
1059
1059
|
* in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1060
1060
|
*/
|
|
1061
1061
|
cancelImageLaunchPermission(args: CancelImageLaunchPermissionCommandInput, options?: __HttpHandlerOptions): Promise<CancelImageLaunchPermissionCommandOutput>;
|
|
@@ -1133,8 +1133,8 @@ export declare class EC2 extends EC2Client {
|
|
|
1133
1133
|
* snapshots. For more information, <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#ami">
|
|
1134
1134
|
* Amazon EBS local snapshots on Outposts</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1135
1135
|
*
|
|
1136
|
-
* <p>For more information about the prerequisites and limits when copying an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html">
|
|
1137
|
-
*
|
|
1136
|
+
* <p>For more information about the prerequisites and limits when copying an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html">Copy an AMI</a> in the
|
|
1137
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1138
1138
|
*/
|
|
1139
1139
|
copyImage(args: CopyImageCommandInput, options?: __HttpHandlerOptions): Promise<CopyImageCommandOutput>;
|
|
1140
1140
|
copyImage(args: CopyImageCommandInput, cb: (err: any, data?: CopyImageCommandOutput) => void): void;
|
|
@@ -1405,8 +1405,8 @@ export declare class EC2 extends EC2Client {
|
|
|
1405
1405
|
* <p>If you customized your instance with instance store volumes or Amazon EBS volumes in addition to the root device volume, the
|
|
1406
1406
|
* new AMI contains block device mapping information for those volumes. When you launch an instance from this new AMI,
|
|
1407
1407
|
* the instance automatically launches with those additional volumes.</p>
|
|
1408
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html">
|
|
1409
|
-
*
|
|
1408
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html">Create an Amazon EBS-backed Linux
|
|
1409
|
+
* AMI</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1410
1410
|
*/
|
|
1411
1411
|
createImage(args: CreateImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateImageCommandOutput>;
|
|
1412
1412
|
createImage(args: CreateImageCommandInput, cb: (err: any, data?: CreateImageCommandOutput) => void): void;
|
|
@@ -2727,10 +2727,9 @@ export declare class EC2 extends EC2Client {
|
|
|
2727
2727
|
* launch new instances.</p>
|
|
2728
2728
|
*
|
|
2729
2729
|
*
|
|
2730
|
-
* <p>If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is
|
|
2731
|
-
*
|
|
2732
|
-
*
|
|
2733
|
-
* Bin</a> in the Amazon Elastic Compute Cloud User Guide.</p>
|
|
2730
|
+
* <p>If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is retained
|
|
2731
|
+
* in the Recycle Bin for the specified retention period. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin.html">Recycle Bin</a> in
|
|
2732
|
+
* the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
2734
2733
|
*
|
|
2735
2734
|
* <p>When you deregister an AMI, it doesn't affect any instances that you've already
|
|
2736
2735
|
* launched from the AMI. You'll continue to incur usage costs for those instances until
|
|
@@ -5683,8 +5682,8 @@ export declare class EC2 extends EC2Client {
|
|
|
5683
5682
|
/**
|
|
5684
5683
|
* <p>Registers an AMI. When you're creating an AMI, this is the final step you must complete
|
|
5685
5684
|
* before you can launch an instance from the AMI. For more information about creating AMIs, see
|
|
5686
|
-
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html">
|
|
5687
|
-
* own
|
|
5685
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html">Create your
|
|
5686
|
+
* own AMI</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
5688
5687
|
* <note>
|
|
5689
5688
|
* <p>For Amazon EBS-backed instances, <a>CreateImage</a> creates and registers the AMI
|
|
5690
5689
|
* in a single request, so you don't have to register the AMI yourself. We recommend that you
|
|
@@ -5731,8 +5730,8 @@ export declare class EC2 extends EC2Client {
|
|
|
5731
5730
|
* from an AMI with a billing product code, make sure that the Reserved Instance has the matching
|
|
5732
5731
|
* billing product code. If you purchase a Reserved Instance without the matching billing product
|
|
5733
5732
|
* code, the Reserved Instance will not be applied to the On-Demand Instance. For information
|
|
5734
|
-
* about how to obtain the platform details and billing information of an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">
|
|
5735
|
-
*
|
|
5733
|
+
* about how to obtain the platform details and billing information of an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">Understand AMI
|
|
5734
|
+
* billing information</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
5736
5735
|
*/
|
|
5737
5736
|
registerImage(args: RegisterImageCommandInput, options?: __HttpHandlerOptions): Promise<RegisterImageCommandOutput>;
|
|
5738
5737
|
registerImage(args: RegisterImageCommandInput, cb: (err: any, data?: RegisterImageCommandOutput) => void): void;
|
|
@@ -9,7 +9,7 @@ export interface CancelImageLaunchPermissionCommandOutput extends CancelImageLau
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Removes your Amazon Web Services account from the launch permissions for the specified AMI. For more
|
|
12
|
-
* information, see <a href="https://docs.aws.amazon.com/">Cancel
|
|
12
|
+
* information, see <a href="https://docs.aws.amazon.com/">Cancel having an AMI shared with your Amazon Web Services account</a>
|
|
13
13
|
* in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -28,8 +28,8 @@ export interface CopyImageCommandOutput extends CopyImageResult, __MetadataBeare
|
|
|
28
28
|
* snapshots. For more information, <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#ami">
|
|
29
29
|
* Amazon EBS local snapshots on Outposts</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
30
30
|
*
|
|
31
|
-
* <p>For more information about the prerequisites and limits when copying an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html">
|
|
32
|
-
*
|
|
31
|
+
* <p>For more information about the prerequisites and limits when copying an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html">Copy an AMI</a> in the
|
|
32
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -27,8 +27,8 @@ export interface CreateImageCommandOutput extends CreateImageResult, __MetadataB
|
|
|
27
27
|
* <p>If you customized your instance with instance store volumes or Amazon EBS volumes in addition to the root device volume, the
|
|
28
28
|
* new AMI contains block device mapping information for those volumes. When you launch an instance from this new AMI,
|
|
29
29
|
* the instance automatically launches with those additional volumes.</p>
|
|
30
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html">
|
|
31
|
-
*
|
|
30
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html">Create an Amazon EBS-backed Linux
|
|
31
|
+
* AMI</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -12,10 +12,9 @@ export interface DeregisterImageCommandOutput extends __MetadataBearer {
|
|
|
12
12
|
* launch new instances.</p>
|
|
13
13
|
*
|
|
14
14
|
*
|
|
15
|
-
* <p>If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
* Bin</a> in the Amazon Elastic Compute Cloud User Guide.</p>
|
|
15
|
+
* <p>If you deregister an AMI that matches a Recycle Bin retention rule, the AMI is retained
|
|
16
|
+
* in the Recycle Bin for the specified retention period. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin.html">Recycle Bin</a> in
|
|
17
|
+
* the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
19
18
|
*
|
|
20
19
|
* <p>When you deregister an AMI, it doesn't affect any instances that you've already
|
|
21
20
|
* launched from the AMI. You'll continue to incur usage costs for those instances until
|
|
@@ -10,8 +10,8 @@ export interface RegisterImageCommandOutput extends RegisterImageResult, __Metad
|
|
|
10
10
|
/**
|
|
11
11
|
* <p>Registers an AMI. When you're creating an AMI, this is the final step you must complete
|
|
12
12
|
* before you can launch an instance from the AMI. For more information about creating AMIs, see
|
|
13
|
-
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html">
|
|
14
|
-
* own
|
|
13
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html">Create your
|
|
14
|
+
* own AMI</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
15
15
|
* <note>
|
|
16
16
|
* <p>For Amazon EBS-backed instances, <a>CreateImage</a> creates and registers the AMI
|
|
17
17
|
* in a single request, so you don't have to register the AMI yourself. We recommend that you
|
|
@@ -58,8 +58,8 @@ export interface RegisterImageCommandOutput extends RegisterImageResult, __Metad
|
|
|
58
58
|
* from an AMI with a billing product code, make sure that the Reserved Instance has the matching
|
|
59
59
|
* billing product code. If you purchase a Reserved Instance without the matching billing product
|
|
60
60
|
* code, the Reserved Instance will not be applied to the On-Demand Instance. For information
|
|
61
|
-
* about how to obtain the platform details and billing information of an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">
|
|
62
|
-
*
|
|
61
|
+
* about how to obtain the platform details and billing information of an AMI, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">Understand AMI
|
|
62
|
+
* billing information</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
63
63
|
* @example
|
|
64
64
|
* Use a bare-bones client and the command you need to make an API call.
|
|
65
65
|
* ```javascript
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|
|
@@ -3688,8 +3688,9 @@ export interface AuthorizeSecurityGroupIngressResult {
|
|
|
3688
3688
|
*/
|
|
3689
3689
|
export interface S3Storage {
|
|
3690
3690
|
/**
|
|
3691
|
-
* <p>The access key ID of the owner of the bucket. Before you specify a value for your access
|
|
3692
|
-
*
|
|
3691
|
+
* <p>The access key ID of the owner of the bucket. Before you specify a value for your access
|
|
3692
|
+
* key ID, review and follow the guidance in <a href="https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html">Best practices for managing
|
|
3693
|
+
* Amazon Web Services access keys</a>.</p>
|
|
3693
3694
|
*/
|
|
3694
3695
|
AWSAccessKeyId?: string;
|
|
3695
3696
|
/**
|
|
@@ -4322,10 +4323,11 @@ export interface CopyImageRequest {
|
|
|
4322
4323
|
*/
|
|
4323
4324
|
Description?: string;
|
|
4324
4325
|
/**
|
|
4325
|
-
* <p>Specifies whether the destination snapshots of the copied image should be encrypted.
|
|
4326
|
-
*
|
|
4327
|
-
*
|
|
4328
|
-
*
|
|
4326
|
+
* <p>Specifies whether the destination snapshots of the copied image should be encrypted. You
|
|
4327
|
+
* can encrypt a copy of an unencrypted snapshot, but you cannot create an unencrypted copy of an
|
|
4328
|
+
* encrypted snapshot. The default KMS key for Amazon EBS is used unless you specify a non-default
|
|
4329
|
+
* Key Management Service (KMS) KMS key using <code>KmsKeyId</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html">Amazon EBS encryption</a> in the
|
|
4330
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4329
4331
|
*/
|
|
4330
4332
|
Encrypted?: boolean;
|
|
4331
4333
|
/**
|
|
@@ -4371,10 +4373,8 @@ export interface CopyImageRequest {
|
|
|
4371
4373
|
* The AMI must be in the Region of the destination Outpost. You cannot copy an
|
|
4372
4374
|
* AMI from an Outpost to a Region, from one Outpost to another, or within the same
|
|
4373
4375
|
* Outpost.</p>
|
|
4374
|
-
*
|
|
4375
|
-
*
|
|
4376
|
-
* Copying AMIs from an Amazon Web Services Region to an Outpost</a> in the
|
|
4377
|
-
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4376
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#copy-amis"> Copy AMIs from an Amazon Web Services
|
|
4377
|
+
* Region to an Outpost</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4378
4378
|
*/
|
|
4379
4379
|
DestinationOutpostArn?: string;
|
|
4380
4380
|
/**
|
|
@@ -4383,6 +4383,21 @@ export interface CopyImageRequest {
|
|
|
4383
4383
|
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4384
4384
|
*/
|
|
4385
4385
|
DryRun?: boolean;
|
|
4386
|
+
/**
|
|
4387
|
+
* <p>Indicates whether to include your user-defined AMI tags when copying the AMI.</p>
|
|
4388
|
+
* <p>The following tags will not be copied:</p>
|
|
4389
|
+
* <ul>
|
|
4390
|
+
* <li>
|
|
4391
|
+
* <p>System tags (prefixed with <code>aws:</code>)</p>
|
|
4392
|
+
* </li>
|
|
4393
|
+
* <li>
|
|
4394
|
+
* <p>For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services
|
|
4395
|
+
* accounts</p>
|
|
4396
|
+
* </li>
|
|
4397
|
+
* </ul>
|
|
4398
|
+
* <p>Default: Your user-defined AMI tags are not copied.</p>
|
|
4399
|
+
*/
|
|
4400
|
+
CopyImageTags?: boolean;
|
|
4386
4401
|
}
|
|
4387
4402
|
/**
|
|
4388
4403
|
* <p>Contains the output of CopyImage.</p>
|
|
@@ -4611,8 +4611,7 @@ export interface DescribeImagesRequest {
|
|
|
4611
4611
|
* </li>
|
|
4612
4612
|
* <li>
|
|
4613
4613
|
* <p>
|
|
4614
|
-
* <code>platform</code> - The platform.
|
|
4615
|
-
* <code>windows</code>.</p>
|
|
4614
|
+
* <code>platform</code> - The platform. The only supported value is <code>windows</code>.</p>
|
|
4616
4615
|
* </li>
|
|
4617
4616
|
* <li>
|
|
4618
4617
|
* <p>
|
|
@@ -4785,8 +4784,8 @@ export interface Image {
|
|
|
4785
4784
|
Platform?: PlatformValues | string;
|
|
4786
4785
|
/**
|
|
4787
4786
|
* <p>The platform details associated with the billing code of the AMI. For more information,
|
|
4788
|
-
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">
|
|
4789
|
-
* AMI billing</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4787
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html">Understand
|
|
4788
|
+
* AMI billing information</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4790
4789
|
*/
|
|
4791
4790
|
PlatformDetails?: string;
|
|
4792
4791
|
/**
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
-
credentials?: import("@aws-sdk/types").
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
36
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
37
|
signingEscapePath?: boolean | undefined;
|
|
38
38
|
systemClockOffset?: number | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
31
31
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
32
|
tls?: boolean | undefined;
|
|
33
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
-
credentials?: import("@aws-sdk/types").
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
35
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
36
|
signingEscapePath?: boolean | undefined;
|
|
37
37
|
systemClockOffset?: number | undefined;
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -64,8 +64,10 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
65
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
66
|
credentials?:
|
|
67
|
-
| import("@aws-sdk/types").
|
|
68
|
-
| import("@aws-sdk/types").Provider<
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
69
71
|
| undefined;
|
|
70
72
|
signer?:
|
|
71
73
|
| import("@aws-sdk/types").RequestSigner
|
|
@@ -64,8 +64,10 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
65
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
66
|
credentials?:
|
|
67
|
-
| import("@aws-sdk/types").
|
|
68
|
-
| import("@aws-sdk/types").Provider<
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
69
71
|
| undefined;
|
|
70
72
|
signer?:
|
|
71
73
|
| import("@aws-sdk/types").RequestSigner
|
|
@@ -53,8 +53,10 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
53
53
|
tls?: boolean | undefined;
|
|
54
54
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
55
55
|
credentials?:
|
|
56
|
-
| import("@aws-sdk/types").
|
|
57
|
-
| import("@aws-sdk/types").Provider<
|
|
56
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
57
|
+
| import("@aws-sdk/types").Provider<
|
|
58
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
59
|
+
>
|
|
58
60
|
| undefined;
|
|
59
61
|
signer?:
|
|
60
62
|
| import("@aws-sdk/types").RequestSigner
|
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.215.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",
|
|
@@ -19,40 +19,40 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.215.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.215.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.215.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.215.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.215.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.215.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.215.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.215.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.215.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.215.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.215.0",
|
|
34
|
+
"@aws-sdk/middleware-sdk-ec2": "3.215.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.215.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.215.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.215.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.215.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.215.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.215.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.215.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.215.0",
|
|
43
|
+
"@aws-sdk/types": "3.215.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.215.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.215.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.215.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.215.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.215.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.215.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.215.0",
|
|
56
56
|
"fast-xml-parser": "4.0.11",
|
|
57
57
|
"tslib": "^2.3.1",
|
|
58
58
|
"uuid": "^8.3.2"
|