@aws-sdk/client-ec2 3.840.0 → 3.841.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
@@ -29768,6 +29768,9 @@ var se_GetInstanceTypesFromInstanceRequirementsRequest = /* @__PURE__ */ __name(
29768
29768
  if (input[_NT] != null) {
29769
29769
  entries[_NT] = input[_NT];
29770
29770
  }
29771
+ if (input[_Con] != null) {
29772
+ entries[_Con] = input[_Con];
29773
+ }
29771
29774
  return entries;
29772
29775
  }, "se_GetInstanceTypesFromInstanceRequirementsRequest");
29773
29776
  var se_GetInstanceUefiDataRequest = /* @__PURE__ */ __name((input, context) => {
@@ -28186,6 +28186,9 @@ const se_GetInstanceTypesFromInstanceRequirementsRequest = (input, context) => {
28186
28186
  if (input[_NT] != null) {
28187
28187
  entries[_NT] = input[_NT];
28188
28188
  }
28189
+ if (input[_Con] != null) {
28190
+ entries[_Con] = input[_Con];
28191
+ }
28189
28192
  return entries;
28190
28193
  };
28191
28194
  const se_GetInstanceUefiDataRequest = (input, context) => {
@@ -131,6 +131,7 @@ declare const GetInstanceTypesFromInstanceRequirementsCommand_base: {
131
131
  * },
132
132
  * MaxResults: Number("int"),
133
133
  * NextToken: "STRING_VALUE",
134
+ * Context: "STRING_VALUE",
134
135
  * };
135
136
  * const command = new GetInstanceTypesFromInstanceRequirementsCommand(input);
136
137
  * const response = await client.send(command);
@@ -7241,10 +7241,10 @@ export interface EbsBlockDevice {
7241
7241
  OutpostArn?: string | undefined;
7242
7242
  /**
7243
7243
  * <p>The Availability Zone where the EBS volume will be created (for example,
7244
- * <code>us-east-1a</code>).</p>
7244
+ * <code>us-east-1a</code>).</p>
7245
7245
  * <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified,
7246
- * but not both. If neither is specified, Amazon EC2 automatically selects an Availability Zone within
7247
- * the Region.</p>
7246
+ * but not both. If neither is specified, Amazon EC2 automatically selects an Availability Zone within
7247
+ * the Region.</p>
7248
7248
  * <p>This parameter is not supported when using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>.</p>
7249
7249
  * @public
7250
7250
  */
@@ -7320,10 +7320,10 @@ export interface EbsBlockDevice {
7320
7320
  VolumeInitializationRate?: number | undefined;
7321
7321
  /**
7322
7322
  * <p>The ID of the Availability Zone where the EBS volume will be created (for example,
7323
- * <code>use1-az1</code>).</p>
7323
+ * <code>use1-az1</code>).</p>
7324
7324
  * <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified,
7325
- * but not both. If neither is specified, Amazon EC2 automatically selects an Availability Zone within
7326
- * the Region.</p>
7325
+ * but not both. If neither is specified, Amazon EC2 automatically selects an Availability Zone within
7326
+ * the Region.</p>
7327
7327
  * <p>This parameter is not supported when using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>.</p>
7328
7328
  * @public
7329
7329
  */
@@ -4576,6 +4576,11 @@ export interface GetInstanceTypesFromInstanceRequirementsRequest {
4576
4576
  * @public
4577
4577
  */
4578
4578
  NextToken?: string | undefined;
4579
+ /**
4580
+ * <p>Reserved.</p>
4581
+ * @public
4582
+ */
4583
+ Context?: string | undefined;
4579
4584
  }
4580
4585
  /**
4581
4586
  * <p>The list of instance types with the specified instance attributes.</p>
@@ -1082,6 +1082,7 @@ export interface GetInstanceTypesFromInstanceRequirementsRequest {
1082
1082
  InstanceRequirements: InstanceRequirementsRequest | undefined;
1083
1083
  MaxResults?: number | undefined;
1084
1084
  NextToken?: string | undefined;
1085
+ Context?: string | undefined;
1085
1086
  }
1086
1087
  export interface InstanceTypeInfoFromInstanceRequirements {
1087
1088
  InstanceType?: string | undefined;
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.840.0",
4
+ "version": "3.841.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",