@aws-sdk/client-ec2 3.750.0 → 3.756.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 CHANGED
@@ -18383,6 +18383,9 @@ var se_CopyImageRequest = /* @__PURE__ */ __name((input, context) => {
18383
18383
  entries[loc] = value;
18384
18384
  });
18385
18385
  }
18386
+ if (input[_SCCDM] != null) {
18387
+ entries[_SCCDM] = input[_SCCDM];
18388
+ }
18386
18389
  if (input[_DRr] != null) {
18387
18390
  entries[_DRr] = input[_DRr];
18388
18391
  }
@@ -62620,6 +62623,7 @@ var _SC = "SubnetConfigurations";
62620
62623
  var _SCA = "ServerCertificateArn";
62621
62624
  var _SCAE = "SerialConsoleAccessEnabled";
62622
62625
  var _SCB = "SourceCidrBlock";
62626
+ var _SCCDM = "SnapshotCopyCompletionDurationMinutes";
62623
62627
  var _SCR = "SourceCapacityReservation";
62624
62628
  var _SCRI = "SourceCapacityReservationId";
62625
62629
  var _SCRIu = "SubnetCidrReservationId";
@@ -16863,6 +16863,9 @@ const se_CopyImageRequest = (input, context) => {
16863
16863
  entries[loc] = value;
16864
16864
  });
16865
16865
  }
16866
+ if (input[_SCCDM] != null) {
16867
+ entries[_SCCDM] = input[_SCCDM];
16868
+ }
16866
16869
  if (input[_DRr] != null) {
16867
16870
  entries[_DRr] = input[_DRr];
16868
16871
  }
@@ -62556,6 +62559,7 @@ const _SC = "SubnetConfigurations";
62556
62559
  const _SCA = "ServerCertificateArn";
62557
62560
  const _SCAE = "SerialConsoleAccessEnabled";
62558
62561
  const _SCB = "SourceCidrBlock";
62562
+ const _SCCDM = "SnapshotCopyCompletionDurationMinutes";
62559
62563
  const _SCR = "SourceCapacityReservation";
62560
62564
  const _SCRI = "SourceCapacityReservationId";
62561
62565
  const _SCRIu = "SubnetCidrReservationId";
@@ -65,6 +65,7 @@ declare const CopyImageCommand_base: {
65
65
  * ],
66
66
  * },
67
67
  * ],
68
+ * SnapshotCopyCompletionDurationMinutes: Number("long"),
68
69
  * DryRun: true || false,
69
70
  * };
70
71
  * const command = new CopyImageCommand(input);
@@ -7337,6 +7337,18 @@ export interface CopyImageRequest {
7337
7337
  * @public
7338
7338
  */
7339
7339
  TagSpecifications?: TagSpecification[] | undefined;
7340
+ /**
7341
+ * <p>Specify a completion duration, in 15 minute increments, to initiate a time-based
7342
+ * AMI copy. The specified completion duration applies to each of the snapshots associated
7343
+ * with the AMI. Each snapshot associated with the AMI will be completed within the
7344
+ * specified completion duration, regardless of their size.</p>
7345
+ * <p>If you do not specify a value, the AMI copy operation is completed on a best-effort
7346
+ * basis.</p>
7347
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/time-based-copies.html">
7348
+ * Time-based copies</a>.</p>
7349
+ * @public
7350
+ */
7351
+ SnapshotCopyCompletionDurationMinutes?: number | undefined;
7340
7352
  /**
7341
7353
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
7342
7354
  * and provides an error response. If you have the required permissions, the error response is
@@ -5540,7 +5540,7 @@ export interface CreateVerifiedAccessEndpointLoadBalancerOptions {
5540
5540
  */
5541
5541
  LoadBalancerArn?: string | undefined;
5542
5542
  /**
5543
- * <p>The IDs of the subnets.</p>
5543
+ * <p>The IDs of the subnets. You can specify only one subnet per Availability Zone.</p>
5544
5544
  * @public
5545
5545
  */
5546
5546
  SubnetIds?: string[] | undefined;
@@ -5613,7 +5613,7 @@ export interface CreateVerifiedAccessEndpointRdsOptions {
5613
5613
  */
5614
5614
  RdsEndpoint?: string | undefined;
5615
5615
  /**
5616
- * <p>The IDs of the subnets.</p>
5616
+ * <p>The IDs of the subnets. You can specify only one subnet per Availability Zone.</p>
5617
5617
  * @public
5618
5618
  */
5619
5619
  SubnetIds?: string[] | undefined;
@@ -1420,10 +1420,7 @@ export interface SecurityGroupReference {
1420
1420
  */
1421
1421
  VpcPeeringConnectionId?: string | undefined;
1422
1422
  /**
1423
- * <note>
1424
- * <p>This parameter is in preview and may not be available for your account.</p>
1425
- * </note>
1426
- * <p>The ID of the transit gateway (if applicable).</p>
1423
+ * <p>The ID of the transit gateway (if applicable).</p>
1427
1424
  * @public
1428
1425
  */
1429
1426
  TransitGatewayId?: string | undefined;
@@ -1961,6 +1961,7 @@ export interface CopyImageRequest {
1961
1961
  DestinationOutpostArn?: string | undefined;
1962
1962
  CopyImageTags?: boolean | undefined;
1963
1963
  TagSpecifications?: TagSpecification[] | undefined;
1964
+ SnapshotCopyCompletionDurationMinutes?: number | undefined;
1964
1965
  DryRun?: boolean | undefined;
1965
1966
  }
1966
1967
  export interface CopyImageResult {
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.750.0",
4
+ "version": "3.756.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",