@aws-sdk/client-ec2 3.525.1 → 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.
Files changed (32) hide show
  1. package/dist-cjs/index.js +584 -596
  2. package/dist-es/protocols/Aws_ec2.js +22 -34
  3. package/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
  4. package/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -4
  5. package/dist-types/commands/CopyImageCommand.d.ts +24 -16
  6. package/dist-types/commands/CreateImageCommand.d.ts +6 -5
  7. package/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +3 -3
  8. package/dist-types/commands/CreateStoreImageTaskCommand.d.ts +1 -1
  9. package/dist-types/commands/DeregisterImageCommand.d.ts +11 -11
  10. package/dist-types/commands/DescribeBundleTasksCommand.d.ts +8 -1
  11. package/dist-types/commands/DescribeImageAttributeCommand.d.ts +6 -1
  12. package/dist-types/commands/DescribeImagesCommand.d.ts +9 -3
  13. package/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
  14. package/dist-types/commands/DisableFastLaunchCommand.d.ts +6 -4
  15. package/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +2 -2
  16. package/dist-types/commands/EnableFastLaunchCommand.d.ts +8 -7
  17. package/dist-types/commands/EnableImageDeprecationCommand.d.ts +2 -1
  18. package/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +2 -2
  19. package/dist-types/commands/ModifyImageAttributeCommand.d.ts +7 -5
  20. package/dist-types/commands/RegisterImageCommand.d.ts +24 -13
  21. package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +2 -1
  22. package/dist-types/models/models_0.d.ts +42 -22
  23. package/dist-types/models/models_1.d.ts +13 -11
  24. package/dist-types/models/models_2.d.ts +5 -4
  25. package/dist-types/models/models_3.d.ts +86 -76
  26. package/dist-types/models/models_4.d.ts +2 -1
  27. package/dist-types/models/models_5.d.ts +40 -33
  28. package/dist-types/models/models_6.d.ts +66 -42
  29. package/dist-types/models/models_7.d.ts +2 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_6.d.ts +1 -0
  32. package/package.json +4 -5
@@ -5998,20 +5998,22 @@ export interface AuthorizeSecurityGroupIngressResult {
5998
5998
  }
5999
5999
  /**
6000
6000
  * @public
6001
- * <p>Describes the storage parameters for Amazon S3 and Amazon S3 buckets for an instance store-backed AMI.</p>
6001
+ * <p>Describes the storage parameters for Amazon S3 and Amazon S3 buckets for an instance store-backed
6002
+ * AMI.</p>
6002
6003
  */
6003
6004
  export interface S3Storage {
6004
6005
  /**
6005
6006
  * @public
6006
6007
  * <p>The access key ID of the owner of the bucket. Before you specify a value for your access
6007
- * key ID, review and follow the guidance in <a href="https://docs.aws.amazon.com/accounts/latest/reference/best-practices.html">Best
6008
- * Practices for Amazon Web Services accounts</a> in the <i>Account ManagementReference
6009
- * Guide</i>.</p>
6008
+ * key ID, review and follow the guidance in <a href="https://docs.aws.amazon.com/accounts/latest/reference/best-practices.html">Best Practices for Amazon Web Services
6009
+ * accounts</a> in the <i>Account ManagementReference Guide</i>.</p>
6010
6010
  */
6011
6011
  AWSAccessKeyId?: string;
6012
6012
  /**
6013
6013
  * @public
6014
- * <p>The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.</p>
6014
+ * <p>The bucket in which to store the AMI. You can specify a bucket that you already own or a
6015
+ * new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone
6016
+ * else, Amazon EC2 returns an error.</p>
6015
6017
  */
6016
6018
  Bucket?: string;
6017
6019
  /**
@@ -6021,7 +6023,8 @@ export interface S3Storage {
6021
6023
  Prefix?: string;
6022
6024
  /**
6023
6025
  * @public
6024
- * <p>An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your behalf.</p>
6026
+ * <p>An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your
6027
+ * behalf.</p>
6025
6028
  */
6026
6029
  UploadPolicy?: Uint8Array;
6027
6030
  /**
@@ -6049,14 +6052,14 @@ export interface BundleInstanceRequest {
6049
6052
  /**
6050
6053
  * @public
6051
6054
  * <p>The ID of the instance to bundle.</p>
6052
- * <p>Type: String</p>
6053
6055
  * <p>Default: None</p>
6054
- * <p>Required: Yes</p>
6055
6056
  */
6056
6057
  InstanceId: string | undefined;
6057
6058
  /**
6058
6059
  * @public
6059
- * <p>The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.</p>
6060
+ * <p>The bucket in which to store the AMI. You can specify a bucket that you already own or a
6061
+ * new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone
6062
+ * else, Amazon EC2 returns an error.</p>
6060
6063
  */
6061
6064
  Storage: Storage | undefined;
6062
6065
  /**
@@ -6858,9 +6861,9 @@ export interface CopyFpgaImageResult {
6858
6861
  export interface CopyImageRequest {
6859
6862
  /**
6860
6863
  * @public
6861
- * <p>Unique, case-sensitive identifier you provide to ensure
6862
- * idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>
6863
- * in the <i>Amazon EC2 API Reference</i>.</p>
6864
+ * <p>Unique, case-sensitive identifier you provide to ensure idempotency of the request. For
6865
+ * more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>
6866
+ * in the <i>Amazon EC2 API Reference</i>.</p>
6864
6867
  */
6865
6868
  ClientToken?: string;
6866
6869
  /**
@@ -6879,9 +6882,9 @@ export interface CopyImageRequest {
6879
6882
  Encrypted?: boolean;
6880
6883
  /**
6881
6884
  * @public
6882
- * <p>The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating
6883
- * encrypted volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used.
6884
- * If you specify a KMS key, you must also set the encrypted state to <code>true</code>.</p>
6885
+ * <p>The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes.
6886
+ * If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you
6887
+ * specify a KMS key, you must also set the encrypted state to <code>true</code>.</p>
6885
6888
  * <p>You can specify a KMS key using any of the following:</p>
6886
6889
  * <ul>
6887
6890
  * <li>
@@ -6897,8 +6900,8 @@ export interface CopyImageRequest {
6897
6900
  * <p>Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.</p>
6898
6901
  * </li>
6899
6902
  * </ul>
6900
- * <p>Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not valid,
6901
- * the action can appear to complete, but eventually fails.</p>
6903
+ * <p>Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier
6904
+ * that is not valid, the action can appear to complete, but eventually fails.</p>
6902
6905
  * <p>The specified KMS key must exist in the destination Region.</p>
6903
6906
  * <p>Amazon EBS does not support asymmetric KMS keys.</p>
6904
6907
  */
@@ -6920,11 +6923,10 @@ export interface CopyImageRequest {
6920
6923
  SourceRegion: string | undefined;
6921
6924
  /**
6922
6925
  * @public
6923
- * <p>The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only
6924
- * specify this parameter when copying an AMI from an Amazon Web Services Region to an Outpost.
6925
- * The AMI must be in the Region of the destination Outpost. You cannot copy an
6926
- * AMI from an Outpost to a Region, from one Outpost to another, or within the same
6927
- * Outpost.</p>
6926
+ * <p>The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this
6927
+ * parameter when copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the
6928
+ * Region of the destination Outpost. You cannot copy an AMI from an Outpost to a Region, from
6929
+ * one Outpost to another, or within the same Outpost.</p>
6928
6930
  * <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
6929
6931
  * Region to an Outpost</a> in the <i>Amazon EC2 User Guide</i>.</p>
6930
6932
  */
@@ -6952,6 +6954,24 @@ export interface CopyImageRequest {
6952
6954
  * <p>Default: Your user-defined AMI tags are not copied.</p>
6953
6955
  */
6954
6956
  CopyImageTags?: boolean;
6957
+ /**
6958
+ * @public
6959
+ * <p>The tags to apply to the new AMI and new snapshots. You can tag the AMI, the snapshots, or
6960
+ * both.</p>
6961
+ * <ul>
6962
+ * <li>
6963
+ * <p>To tag the new AMI, the value for <code>ResourceType</code> must be
6964
+ * <code>image</code>.</p>
6965
+ * </li>
6966
+ * <li>
6967
+ * <p>To tag the new snapshots, the value for <code>ResourceType</code> must be
6968
+ * <code>snapshot</code>. The same tag is applied to all the new snapshots.</p>
6969
+ * </li>
6970
+ * </ul>
6971
+ * <p>If you specify other values for <code>ResourceType</code>, the request fails.</p>
6972
+ * <p>To tag an AMI or snapshot after it has been created, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
6973
+ */
6974
+ TagSpecifications?: TagSpecification[];
6955
6975
  }
6956
6976
  /**
6957
6977
  * @public
@@ -3979,26 +3979,28 @@ export interface CreateImageRequest {
3979
3979
  /**
3980
3980
  * @public
3981
3981
  * <p>A name for the new image.</p>
3982
- * <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or underscores(_)</p>
3982
+ * <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces
3983
+ * ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or
3984
+ * underscores(_)</p>
3983
3985
  */
3984
3986
  Name: string | undefined;
3985
3987
  /**
3986
3988
  * @public
3987
- * <p>Indicates whether or not the instance should be automatically rebooted before creating
3988
- * the image. Specify one of the following values:</p>
3989
+ * <p>Indicates whether or not the instance should be automatically rebooted before creating the
3990
+ * image. Specify one of the following values:</p>
3989
3991
  * <ul>
3990
3992
  * <li>
3991
3993
  * <p>
3992
3994
  * <code>true</code> - The instance is not rebooted before creating the image. This
3993
- * creates crash-consistent snapshots that include only the data that has been written
3994
- * to the volumes at the time the snapshots are created. Buffered data and data in
3995
- * memory that has not yet been written to the volumes is not included in the snapshots.</p>
3995
+ * creates crash-consistent snapshots that include only the data that has been written to the
3996
+ * volumes at the time the snapshots are created. Buffered data and data in memory that has
3997
+ * not yet been written to the volumes is not included in the snapshots.</p>
3996
3998
  * </li>
3997
3999
  * <li>
3998
4000
  * <p>
3999
- * <code>false</code> - The instance is rebooted before creating the image. This
4000
- * ensures that all buffered data and data in memory is written to the volumes before the
4001
- * snapshots are created.</p>
4001
+ * <code>false</code> - The instance is rebooted before creating the image. This ensures
4002
+ * that all buffered data and data in memory is written to the volumes before the snapshots
4003
+ * are created.</p>
4002
4004
  * </li>
4003
4005
  * </ul>
4004
4006
  * <p>Default: <code>false</code>
@@ -4015,8 +4017,8 @@ export interface CreateImageRequest {
4015
4017
  * <code>image</code>.</p>
4016
4018
  * </li>
4017
4019
  * <li>
4018
- * <p>To tag the snapshots that are created of the root volume and of other Amazon EBS volumes that
4019
- * are attached to the instance, the value for <code>ResourceType</code> must be
4020
+ * <p>To tag the snapshots that are created of the root volume and of other Amazon EBS volumes
4021
+ * that are attached to the instance, the value for <code>ResourceType</code> must be
4020
4022
  * <code>snapshot</code>. The same tag is applied to all of the snapshots that are
4021
4023
  * created.</p>
4022
4024
  * </li>
@@ -781,12 +781,13 @@ export interface CreateRestoreImageTaskRequest {
781
781
  * snapshots, or both.</p>
782
782
  * <ul>
783
783
  * <li>
784
- * <p>To tag the AMI, the value for <code>ResourceType</code> must be <code>image</code>.</p>
784
+ * <p>To tag the AMI, the value for <code>ResourceType</code> must be
785
+ * <code>image</code>.</p>
785
786
  * </li>
786
787
  * <li>
787
- * <p>To
788
- * tag the snapshots, the value for <code>ResourceType</code> must be <code>snapshot</code>. The
789
- * same tag is applied to all of the snapshots that are created.</p>
788
+ * <p>To tag the snapshots, the value for <code>ResourceType</code> must be
789
+ * <code>snapshot</code>. The same tag is applied to all of the snapshots that are
790
+ * created.</p>
790
791
  * </li>
791
792
  * </ul>
792
793
  */
@@ -2357,7 +2357,8 @@ export interface DescribeBundleTasksRequest {
2357
2357
  * </li>
2358
2358
  * <li>
2359
2359
  * <p>
2360
- * <code>progress</code> - The level of task completion, as a percentage (for example, 20%).</p>
2360
+ * <code>progress</code> - The level of task completion, as a percentage (for example,
2361
+ * 20%).</p>
2361
2362
  * </li>
2362
2363
  * <li>
2363
2364
  * <p>
@@ -2369,12 +2370,14 @@ export interface DescribeBundleTasksRequest {
2369
2370
  * </li>
2370
2371
  * <li>
2371
2372
  * <p>
2372
- * <code>start-time</code> - The time the task started (for example, 2013-09-15T17:15:20.000Z).</p>
2373
+ * <code>start-time</code> - The time the task started (for example,
2374
+ * 2013-09-15T17:15:20.000Z).</p>
2373
2375
  * </li>
2374
2376
  * <li>
2375
2377
  * <p>
2376
- * <code>state</code> - The state of the task (<code>pending</code> | <code>waiting-for-shutdown</code> | <code>bundling</code> |
2377
- * <code>storing</code> | <code>cancelling</code> | <code>complete</code> | <code>failed</code>).</p>
2378
+ * <code>state</code> - The state of the task (<code>pending</code> |
2379
+ * <code>waiting-for-shutdown</code> | <code>bundling</code> | <code>storing</code> |
2380
+ * <code>cancelling</code> | <code>complete</code> | <code>failed</code>).</p>
2378
2381
  * </li>
2379
2382
  * <li>
2380
2383
  * <p>
@@ -4823,14 +4826,14 @@ export declare const FastLaunchResourceType: {
4823
4826
  export type FastLaunchResourceType = (typeof FastLaunchResourceType)[keyof typeof FastLaunchResourceType];
4824
4827
  /**
4825
4828
  * @public
4826
- * <p>Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch
4827
- * enabled Windows AMI.</p>
4829
+ * <p>Configuration settings for creating and managing pre-provisioned snapshots for a Windows
4830
+ * fast launch enabled Windows AMI.</p>
4828
4831
  */
4829
4832
  export interface FastLaunchSnapshotConfigurationResponse {
4830
4833
  /**
4831
4834
  * @public
4832
- * <p>The number of pre-provisioned snapshots requested to keep on hand for a Windows fast launch
4833
- * enabled AMI.</p>
4835
+ * <p>The number of pre-provisioned snapshots requested to keep on hand for a Windows fast
4836
+ * launch enabled AMI.</p>
4834
4837
  */
4835
4838
  TargetResourceCount?: number;
4836
4839
  }
@@ -4852,8 +4855,9 @@ export declare const FastLaunchStateCode: {
4852
4855
  export type FastLaunchStateCode = (typeof FastLaunchStateCode)[keyof typeof FastLaunchStateCode];
4853
4856
  /**
4854
4857
  * @public
4855
- * <p>Describe details about a Windows image with Windows fast launch enabled that meets the requested
4856
- * criteria. Criteria are defined by the <code>DescribeFastLaunchImages</code> action filters.</p>
4858
+ * <p>Describe details about a Windows image with Windows fast launch enabled that meets the
4859
+ * requested criteria. Criteria are defined by the <code>DescribeFastLaunchImages</code> action
4860
+ * filters.</p>
4857
4861
  */
4858
4862
  export interface DescribeFastLaunchImagesSuccessItem {
4859
4863
  /**
@@ -4864,25 +4868,25 @@ export interface DescribeFastLaunchImagesSuccessItem {
4864
4868
  /**
4865
4869
  * @public
4866
4870
  * <p>The resource type that Amazon EC2 uses for pre-provisioning the Windows AMI. Supported values
4867
- * include: <code>snapshot</code>.</p>
4871
+ * include: <code>snapshot</code>.</p>
4868
4872
  */
4869
4873
  ResourceType?: FastLaunchResourceType;
4870
4874
  /**
4871
4875
  * @public
4872
- * <p>A group of parameters that are used for pre-provisioning the associated
4873
- * Windows AMI using snapshots.</p>
4876
+ * <p>A group of parameters that are used for pre-provisioning the associated Windows AMI using
4877
+ * snapshots.</p>
4874
4878
  */
4875
4879
  SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
4876
4880
  /**
4877
4881
  * @public
4878
- * <p>The launch template that the Windows fast launch enabled AMI uses when it launches
4879
- * Windows instances from pre-provisioned snapshots.</p>
4882
+ * <p>The launch template that the Windows fast launch enabled AMI uses when it launches Windows
4883
+ * instances from pre-provisioned snapshots.</p>
4880
4884
  */
4881
4885
  LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
4882
4886
  /**
4883
4887
  * @public
4884
4888
  * <p>The maximum number of instances that Amazon EC2 can launch at the same time to create
4885
- * pre-provisioned snapshots for Windows fast launch.</p>
4889
+ * pre-provisioned snapshots for Windows fast launch.</p>
4886
4890
  */
4887
4891
  MaxParallelLaunches?: number;
4888
4892
  /**
@@ -4912,8 +4916,8 @@ export interface DescribeFastLaunchImagesSuccessItem {
4912
4916
  export interface DescribeFastLaunchImagesResult {
4913
4917
  /**
4914
4918
  * @public
4915
- * <p>A collection of details about the fast-launch enabled Windows images that meet
4916
- * the requested criteria.</p>
4919
+ * <p>A collection of details about the fast-launch enabled Windows images that meet the
4920
+ * requested criteria.</p>
4917
4921
  */
4918
4922
  FastLaunchImages?: DescribeFastLaunchImagesSuccessItem[];
4919
4923
  /**
@@ -7355,9 +7359,9 @@ export interface DescribeImageAttributeRequest {
7355
7359
  * @public
7356
7360
  * <p>The AMI attribute.</p>
7357
7361
  * <p>
7358
- * <b>Note</b>: The <code>blockDeviceMapping</code> attribute is deprecated.
7359
- * Using this attribute returns the <code>Client.AuthFailure</code> error. To get information about
7360
- * the block device mappings for an AMI, use the <a>DescribeImages</a> action.</p>
7362
+ * <b>Note</b>: The <code>blockDeviceMapping</code> attribute is
7363
+ * deprecated. Using this attribute returns the <code>Client.AuthFailure</code> error. To get
7364
+ * information about the block device mappings for an AMI, use the <a>DescribeImages</a> action.</p>
7361
7365
  */
7362
7366
  Attribute: ImageAttributeName | undefined;
7363
7367
  /**
@@ -7442,7 +7446,8 @@ export interface ImageAttribute {
7442
7446
  RamdiskId?: AttributeValue;
7443
7447
  /**
7444
7448
  * @public
7445
- * <p>Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.</p>
7449
+ * <p>Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is
7450
+ * enabled.</p>
7446
7451
  */
7447
7452
  SriovNetSupport?: AttributeValue;
7448
7453
  /**
@@ -7459,9 +7464,9 @@ export interface ImageAttribute {
7459
7464
  * @public
7460
7465
  * <p>Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data,
7461
7466
  * use the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceUefiData">GetInstanceUefiData</a> command. You can inspect and modify the UEFI data by using the
7462
- * <a href="https://github.com/awslabs/python-uefivars">python-uefivars tool</a> on
7467
+ * <a href="https://github.com/awslabs/python-uefivars">python-uefivars tool</a> on
7463
7468
  * GitHub. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/uefi-secure-boot.html">UEFI Secure Boot</a> in the
7464
- * <i>Amazon EC2 User Guide</i>.</p>
7469
+ * <i>Amazon EC2 User Guide</i>.</p>
7465
7470
  */
7466
7471
  UefiData?: AttributeValue;
7467
7472
  /**
@@ -7481,8 +7486,7 @@ export interface ImageAttribute {
7481
7486
  * from this AMI will have <code>HttpTokens</code> automatically set to <code>required</code> so
7482
7487
  * that, by default, the instance requires that IMDSv2 is used when requesting instance metadata.
7483
7488
  * In addition, <code>HttpPutResponseHopLimit</code> is set to <code>2</code>. For more
7484
- * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration">Configure
7485
- * the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
7489
+ * 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>
7486
7490
  */
7487
7491
  ImdsSupport?: AttributeValue;
7488
7492
  }
@@ -7492,14 +7496,13 @@ export interface ImageAttribute {
7492
7496
  export interface DescribeImagesRequest {
7493
7497
  /**
7494
7498
  * @public
7495
- * <p>Scopes the images by users with explicit launch permissions.
7496
- * Specify an Amazon Web Services account ID, <code>self</code> (the sender of the request),
7497
- * or <code>all</code> (public AMIs).</p>
7499
+ * <p>Scopes the images by users with explicit launch permissions. Specify an Amazon Web Services account ID, <code>self</code> (the sender of the request), or <code>all</code>
7500
+ * (public AMIs).</p>
7498
7501
  * <ul>
7499
7502
  * <li>
7500
- * <p>If you specify an Amazon Web Services account ID that is not your own, only AMIs
7501
- * shared with that specific Amazon Web Services account ID are returned. However, AMIs that
7502
- * are shared with the account’s organization or organizational unit (OU) are not
7503
+ * <p>If you specify an Amazon Web Services account ID that is not your own, only AMIs shared
7504
+ * with that specific Amazon Web Services account ID are returned. However, AMIs that are
7505
+ * shared with the account’s organization or organizational unit (OU) are not
7503
7506
  * returned.</p>
7504
7507
  * </li>
7505
7508
  * <li>
@@ -7519,18 +7522,19 @@ export interface DescribeImagesRequest {
7519
7522
  * <ul>
7520
7523
  * <li>
7521
7524
  * <p>
7522
- * <code>architecture</code> - The image architecture (<code>i386</code> | <code>x86_64</code> |
7523
- * <code>arm64</code> | <code>x86_64_mac</code> | <code>arm64_mac</code>).</p>
7525
+ * <code>architecture</code> - The image architecture (<code>i386</code> |
7526
+ * <code>x86_64</code> | <code>arm64</code> | <code>x86_64_mac</code> |
7527
+ * <code>arm64_mac</code>).</p>
7524
7528
  * </li>
7525
7529
  * <li>
7526
7530
  * <p>
7527
7531
  * <code>block-device-mapping.delete-on-termination</code> - A Boolean value that indicates
7528
- * whether the Amazon EBS volume is deleted on instance termination.</p>
7532
+ * whether the Amazon EBS volume is deleted on instance termination.</p>
7529
7533
  * </li>
7530
7534
  * <li>
7531
7535
  * <p>
7532
- * <code>block-device-mapping.device-name</code> - The device name specified in the block device mapping (for
7533
- * example, <code>/dev/sdh</code> or <code>xvdh</code>).</p>
7536
+ * <code>block-device-mapping.device-name</code> - The device name specified in the block
7537
+ * device mapping (for example, <code>/dev/sdh</code> or <code>xvdh</code>).</p>
7534
7538
  * </li>
7535
7539
  * <li>
7536
7540
  * <p>
@@ -7539,7 +7543,8 @@ export interface DescribeImagesRequest {
7539
7543
  * </li>
7540
7544
  * <li>
7541
7545
  * <p>
7542
- * <code>block-device-mapping.volume-size</code> - The volume size of the Amazon EBS volume, in GiB.</p>
7546
+ * <code>block-device-mapping.volume-size</code> - The volume size of the Amazon EBS volume, in
7547
+ * GiB.</p>
7543
7548
  * </li>
7544
7549
  * <li>
7545
7550
  * <p>
@@ -7549,7 +7554,8 @@ export interface DescribeImagesRequest {
7549
7554
  * </li>
7550
7555
  * <li>
7551
7556
  * <p>
7552
- * <code>block-device-mapping.encrypted</code> - A Boolean that indicates whether the Amazon EBS volume is encrypted.</p>
7557
+ * <code>block-device-mapping.encrypted</code> - A Boolean that indicates whether the Amazon EBS
7558
+ * volume is encrypted.</p>
7553
7559
  * </li>
7554
7560
  * <li>
7555
7561
  * <p>
@@ -7565,8 +7571,8 @@ export interface DescribeImagesRequest {
7565
7571
  * </li>
7566
7572
  * <li>
7567
7573
  * <p>
7568
- * <code>ena-support</code> - A Boolean that indicates whether enhanced networking
7569
- * with ENA is enabled.</p>
7574
+ * <code>ena-support</code> - A Boolean that indicates whether enhanced networking with
7575
+ * ENA is enabled.</p>
7570
7576
  * </li>
7571
7577
  * <li>
7572
7578
  * <p>
@@ -7600,19 +7606,22 @@ export interface DescribeImagesRequest {
7600
7606
  * </li>
7601
7607
  * <li>
7602
7608
  * <p>
7603
- * <code>owner-alias</code> - The owner alias (<code>amazon</code> | <code>aws-marketplace</code>).
7604
- * The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be
7605
- * set using the IAM console. We recommend that you use the <b>Owner</b>
7606
- * request parameter instead of this filter.</p>
7609
+ * <code>owner-alias</code> - The owner alias (<code>amazon</code> |
7610
+ * <code>aws-marketplace</code>). The valid aliases are defined in an Amazon-maintained
7611
+ * list. This is not the Amazon Web Services account alias that can be set using the IAM
7612
+ * console. We recommend that you use the <b>Owner</b> request
7613
+ * parameter instead of this filter.</p>
7607
7614
  * </li>
7608
7615
  * <li>
7609
7616
  * <p>
7610
- * <code>owner-id</code> - The Amazon Web Services account ID of the owner. We recommend that you use the
7611
- * <b>Owner</b> request parameter instead of this filter.</p>
7617
+ * <code>owner-id</code> - The Amazon Web Services account ID of the owner. We recommend
7618
+ * that you use the <b>Owner</b> request parameter instead of this
7619
+ * filter.</p>
7612
7620
  * </li>
7613
7621
  * <li>
7614
7622
  * <p>
7615
- * <code>platform</code> - The platform. The only supported value is <code>windows</code>.</p>
7623
+ * <code>platform</code> - The platform. The only supported value is
7624
+ * <code>windows</code>.</p>
7616
7625
  * </li>
7617
7626
  * <li>
7618
7627
  * <p>
@@ -7620,7 +7629,8 @@ export interface DescribeImagesRequest {
7620
7629
  * </li>
7621
7630
  * <li>
7622
7631
  * <p>
7623
- * <code>product-code.type</code> - The type of the product code (<code>marketplace</code>).</p>
7632
+ * <code>product-code.type</code> - The type of the product code
7633
+ * (<code>marketplace</code>).</p>
7624
7634
  * </li>
7625
7635
  * <li>
7626
7636
  * <p>
@@ -7628,7 +7638,8 @@ export interface DescribeImagesRequest {
7628
7638
  * </li>
7629
7639
  * <li>
7630
7640
  * <p>
7631
- * <code>root-device-name</code> - The device name of the root device volume (for example, <code>/dev/sda1</code>).</p>
7641
+ * <code>root-device-name</code> - The device name of the root device volume (for example,
7642
+ * <code>/dev/sda1</code>).</p>
7632
7643
  * </li>
7633
7644
  * <li>
7634
7645
  * <p>
@@ -7656,8 +7667,8 @@ export interface DescribeImagesRequest {
7656
7667
  * </li>
7657
7668
  * <li>
7658
7669
  * <p>
7659
- * <code>sriov-net-support</code> - A value of <code>simple</code> indicates
7660
- * that enhanced networking with the Intel 82599 VF interface is enabled.</p>
7670
+ * <code>sriov-net-support</code> - A value of <code>simple</code> indicates that
7671
+ * enhanced networking with the Intel 82599 VF interface is enabled.</p>
7661
7672
  * </li>
7662
7673
  * <li>
7663
7674
  * <p>
@@ -7685,9 +7696,9 @@ export interface DescribeImagesRequest {
7685
7696
  /**
7686
7697
  * @public
7687
7698
  * <p>Scopes the results to images with the specified owners. You can specify a combination of
7688
- * Amazon Web Services account IDs, <code>self</code>, <code>amazon</code>, and <code>aws-marketplace</code>.
7689
- * If you omit this parameter, the results include all images for which you have launch permissions,
7690
- * regardless of ownership.</p>
7699
+ * Amazon Web Services account IDs, <code>self</code>, <code>amazon</code>, and
7700
+ * <code>aws-marketplace</code>. If you omit this parameter, the results include all images for
7701
+ * which you have launch permissions, regardless of ownership.</p>
7691
7702
  */
7692
7703
  Owners?: string[];
7693
7704
  /**
@@ -7875,9 +7886,9 @@ export interface Image {
7875
7886
  ImageType?: ImageTypeValues;
7876
7887
  /**
7877
7888
  * @public
7878
- * <p>Indicates whether the image has public launch permissions. The value is <code>true</code> if
7879
- * this image has public launch permissions or <code>false</code>
7880
- * if it has only implicit and explicit launch permissions.</p>
7889
+ * <p>Indicates whether the image has public launch permissions. The value is <code>true</code>
7890
+ * if this image has public launch permissions or <code>false</code> if it has only implicit and
7891
+ * explicit launch permissions.</p>
7881
7892
  */
7882
7893
  Public?: boolean;
7883
7894
  /**
@@ -7906,11 +7917,10 @@ export interface Image {
7906
7917
  * @public
7907
7918
  * <p>The operation of the Amazon EC2 instance and the billing code that is associated with the AMI.
7908
7919
  * <code>usageOperation</code> corresponds to the <a href="https://docs.aws.amazon.com/cur/latest/userguide/Lineitem-columns.html#Lineitem-details-O-Operation">lineitem/Operation</a> column on your Amazon Web Services Cost and Usage Report and in the <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/price-changes.html">Amazon Web Services Price
7909
- * List API</a>. You can view these fields on the <b>Instances</b> or
7910
- * <b>AMIs</b> pages in the Amazon EC2 console, or in the responses that are
7911
- * returned by the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html">DescribeImages</a>
7912
- * command in the Amazon EC2 API, or the <a href="https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html">describe-images</a>
7913
- * command in the CLI.</p>
7920
+ * List API</a>. You can view these fields on the <b>Instances</b> or <b>AMIs</b> pages in the Amazon EC2 console,
7921
+ * or in the responses that are returned by the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html">DescribeImages</a> command in
7922
+ * the Amazon EC2 API, or the <a href="https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html">describe-images</a> command in the
7923
+ * CLI.</p>
7914
7924
  */
7915
7925
  UsageOperation?: string;
7916
7926
  /**
@@ -7925,7 +7935,8 @@ export interface Image {
7925
7935
  RamdiskId?: string;
7926
7936
  /**
7927
7937
  * @public
7928
- * <p>The current state of the AMI. If the state is <code>available</code>, the image is successfully registered and can be used to launch an instance.</p>
7938
+ * <p>The current state of the AMI. If the state is <code>available</code>, the image is
7939
+ * successfully registered and can be used to launch an instance.</p>
7929
7940
  */
7930
7941
  State?: ImageState;
7931
7942
  /**
@@ -7951,8 +7962,8 @@ export interface Image {
7951
7962
  Hypervisor?: HypervisorType;
7952
7963
  /**
7953
7964
  * @public
7954
- * <p>The Amazon Web Services account alias (for example, <code>amazon</code>, <code>self</code>) or
7955
- * the Amazon Web Services account ID of the AMI owner.</p>
7965
+ * <p>The Amazon Web Services account alias (for example, <code>amazon</code>, <code>self</code>)
7966
+ * or the Amazon Web Services account ID of the AMI owner.</p>
7956
7967
  */
7957
7968
  ImageOwnerAlias?: string;
7958
7969
  /**
@@ -7967,12 +7978,14 @@ export interface Image {
7967
7978
  RootDeviceName?: string;
7968
7979
  /**
7969
7980
  * @public
7970
- * <p>The type of root device used by the AMI. The AMI can use an Amazon EBS volume or an instance store volume.</p>
7981
+ * <p>The type of root device used by the AMI. The AMI can use an Amazon EBS volume or an instance
7982
+ * store volume.</p>
7971
7983
  */
7972
7984
  RootDeviceType?: DeviceType;
7973
7985
  /**
7974
7986
  * @public
7975
- * <p>Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.</p>
7987
+ * <p>Specifies whether enhanced networking with the Intel 82599 Virtual Function interface is
7988
+ * enabled.</p>
7976
7989
  */
7977
7990
  SriovNetSupport?: string;
7978
7991
  /**
@@ -7998,17 +8011,15 @@ export interface Image {
7998
8011
  BootMode?: BootModeValues;
7999
8012
  /**
8000
8013
  * @public
8001
- * <p>If the image is configured for NitroTPM support, the value is <code>v2.0</code>.
8002
- * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html">NitroTPM</a> in the
8003
- * <i>Amazon EC2 User Guide</i>.</p>
8014
+ * <p>If the image is configured for NitroTPM support, the value is <code>v2.0</code>. For more
8015
+ * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html">NitroTPM</a> in the <i>Amazon EC2 User Guide</i>.</p>
8004
8016
  */
8005
8017
  TpmSupport?: TpmSupportValues;
8006
8018
  /**
8007
8019
  * @public
8008
8020
  * <p>The date and time to deprecate the AMI, in UTC, in the following format:
8009
- * <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z.
8010
- * If you specified a value for seconds, Amazon EC2 rounds the seconds to the
8011
- * nearest minute.</p>
8021
+ * <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>Z.
8022
+ * If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.</p>
8012
8023
  */
8013
8024
  DeprecationTime?: string;
8014
8025
  /**
@@ -8017,8 +8028,7 @@ export interface Image {
8017
8028
  * from this AMI will have <code>HttpTokens</code> automatically set to <code>required</code> so
8018
8029
  * that, by default, the instance requires that IMDSv2 is used when requesting instance metadata.
8019
8030
  * In addition, <code>HttpPutResponseHopLimit</code> is set to <code>2</code>. For more
8020
- * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration">Configure
8021
- * the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
8031
+ * 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>
8022
8032
  */
8023
8033
  ImdsSupport?: ImdsSupportValues;
8024
8034
  /**
@@ -11349,7 +11349,8 @@ export interface DescribeStaleSecurityGroupsResult {
11349
11349
  export interface DescribeStoreImageTasksRequest {
11350
11350
  /**
11351
11351
  * @public
11352
- * <p>The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a request.</p>
11352
+ * <p>The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a
11353
+ * request.</p>
11353
11354
  */
11354
11355
  ImageIds?: string[];
11355
11356
  /**