You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.</p>
3134
3151
* <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
3135
3152
* results that match all of the specified filters.</p>
3153
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Filtering.html#Filtering_Resources_CLI">List and filter using the CLI and API</a> in the <i>Amazon EC2 User Guide</i>.</p>
* <p>Contains the parameters for DescribeReservedInstances.</p>
12399
-
* @public
12400
-
*/
12401
-
exportinterfaceDescribeReservedInstancesRequest{
12402
-
/**
12403
-
* <p>Describes whether the Reserved Instance is Standard or Convertible.</p>
12404
-
* @public
12405
-
*/
12406
-
OfferingClass?: OfferingClassType|undefined;
12407
-
12408
-
/**
12409
-
* <p>One or more Reserved Instance IDs.</p>
12410
-
* <p>Default: Describes all your Reserved Instances, or only those otherwise specified.</p>
12411
-
* @public
12412
-
*/
12413
-
ReservedInstancesIds?: string[]|undefined;
12414
-
12415
-
/**
12416
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
12417
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
12418
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
12419
-
* @public
12420
-
*/
12421
-
DryRun?: boolean|undefined;
12422
-
12423
-
/**
12424
-
* <p>One or more filters.</p>
12425
-
* <ul>
12426
-
* <li>
12427
-
* <p>
12428
-
* <code>availability-zone</code> - The Availability Zone where the Reserved Instance can be used.</p>
12429
-
* </li>
12430
-
* <li>
12431
-
* <p>
12432
-
* <code>duration</code> - The duration of the Reserved Instance (one year or three years), in seconds (<code>31536000</code> | <code>94608000</code>).</p>
12433
-
* </li>
12434
-
* <li>
12435
-
* <p>
12436
-
* <code>end</code> - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z).</p>
12437
-
* </li>
12438
-
* <li>
12439
-
* <p>
12440
-
* <code>fixed-price</code> - The purchase price of the Reserved Instance (for example, 9800.0).</p>
12441
-
* </li>
12442
-
* <li>
12443
-
* <p>
12444
-
* <code>instance-type</code> - The instance type that is covered by the reservation.</p>
12445
-
* </li>
12446
-
* <li>
12447
-
* <p>
12448
-
* <code>scope</code> - The scope of the Reserved Instance (<code>Region</code> or <code>Availability Zone</code>).</p>
12449
-
* </li>
12450
-
* <li>
12451
-
* <p>
12452
-
* <code>product-description</code> - The Reserved Instance product platform description
12453
-
* (<code>Linux/UNIX</code> | <code>Linux with SQL Server Standard</code> |
12454
-
* <code>Linux with SQL Server Web</code> | <code>Linux with SQL Server Enterprise</code> |
12455
-
* <code>SUSE Linux</code> |
12456
-
* <code>Red Hat Enterprise Linux</code> | <code>Red Hat Enterprise Linux with HA</code> |
12457
-
* <code>Windows</code> | <code>Windows with SQL Server Standard</code> |
12458
-
* <code>Windows with SQL Server Web</code> | <code>Windows with SQL Server Enterprise</code>).</p>
12459
-
* </li>
12460
-
* <li>
12461
-
* <p>
12462
-
* <code>reserved-instances-id</code> - The ID of the Reserved Instance.</p>
12463
-
* </li>
12464
-
* <li>
12465
-
* <p>
12466
-
* <code>start</code> - The time at which the Reserved Instance purchase request was placed (for example, 2014-08-07T11:54:42.000Z).</p>
12467
-
* </li>
12468
-
* <li>
12469
-
* <p>
12470
-
* <code>state</code> - The state of the Reserved Instance (<code>payment-pending</code> | <code>active</code> | <code>payment-failed</code> | <code>retired</code>).</p>
12471
-
* </li>
12472
-
* <li>
12473
-
* <p>
12474
-
* <code>tag:<key></code> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
12475
-
* For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
12476
-
* </li>
12477
-
* <li>
12478
-
* <p>
12479
-
* <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
12480
-
* </li>
12481
-
* <li>
12482
-
* <p>
12483
-
* <code>usage-price</code> - The usage price of the Reserved Instance, per hour (for example, 0.84).</p>
12484
-
* </li>
12485
-
* </ul>
12486
-
* @public
12487
-
*/
12488
-
Filters?: Filter[]|undefined;
12489
-
12490
-
/**
12491
-
* <p>The Reserved Instance offering type. If you are using tools that predate the 2011-11-01 API
12492
-
* version, you only have access to the <code>Medium Utilization</code> Reserved Instance
0 commit comments