@aws-sdk/client-ec2 3.918.0 → 3.919.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 (40) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +128 -0
  3. package/dist-es/EC2.js +2 -0
  4. package/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/protocols/Aws_ec2.js +109 -0
  7. package/dist-types/EC2.d.ts +8 -0
  8. package/dist-types/EC2Client.d.ts +3 -2
  9. package/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +122 -0
  10. package/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +7 -6
  11. package/dist-types/commands/DescribeVolumeStatusCommand.d.ts +1 -2
  12. package/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +2 -1
  13. package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +2 -1
  14. package/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +1 -2
  15. package/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +2 -1
  16. package/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/index.d.ts +1 -0
  18. package/dist-types/models/models_4.d.ts +152 -62
  19. package/dist-types/models/models_5.d.ts +56 -201
  20. package/dist-types/models/models_6.d.ts +201 -116
  21. package/dist-types/models/models_7.d.ts +116 -96
  22. package/dist-types/models/models_8.d.ts +94 -0
  23. package/dist-types/protocols/Aws_ec2.d.ts +9 -0
  24. package/dist-types/ts3.4/EC2.d.ts +24 -0
  25. package/dist-types/ts3.4/EC2Client.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +51 -0
  27. package/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +4 -2
  28. package/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +2 -4
  30. package/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +4 -2
  31. package/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_4.d.ts +21 -13
  35. package/dist-types/ts3.4/models/models_5.d.ts +13 -31
  36. package/dist-types/ts3.4/models/models_6.d.ts +31 -26
  37. package/dist-types/ts3.4/models/models_7.d.ts +27 -22
  38. package/dist-types/ts3.4/models/models_8.d.ts +21 -0
  39. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
  40. package/package.json +3 -3
@@ -897,6 +897,140 @@ export interface DescribeCapacityReservationsResult {
897
897
  */
898
898
  CapacityReservations?: CapacityReservation[] | undefined;
899
899
  }
900
+ /**
901
+ * @public
902
+ */
903
+ export interface DescribeCapacityReservationTopologyRequest {
904
+ /**
905
+ * <p>Checks whether you have the required permissions for the operation, without actually making the
906
+ * request, and provides an error response. If you have the required permissions, the error response is
907
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
908
+ * @public
909
+ */
910
+ DryRun?: boolean | undefined;
911
+ /**
912
+ * <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
913
+ * @public
914
+ */
915
+ NextToken?: string | undefined;
916
+ /**
917
+ * <p>The maximum number of items to return for this request.
918
+ * To get the next page of items, make another request with the token returned in the output.
919
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
920
+ * <p>You can't specify this parameter and the Capacity Reservation IDs parameter in the
921
+ * same request.</p>
922
+ * <p>Default: <code>10</code>
923
+ * </p>
924
+ * @public
925
+ */
926
+ MaxResults?: number | undefined;
927
+ /**
928
+ * <p>The Capacity Reservation IDs.</p>
929
+ * <p>Default: Describes all your Capacity Reservations.</p>
930
+ * <p>Constraints: Maximum 100 explicitly specified Capacity Reservation IDs.</p>
931
+ * @public
932
+ */
933
+ CapacityReservationIds?: string[] | undefined;
934
+ /**
935
+ * <p>The filters.</p>
936
+ * <ul>
937
+ * <li>
938
+ * <p>
939
+ * <code>availability-zone</code> - The name of the Availability Zone (for
940
+ * example, <code>us-west-2a</code>) or Local Zone (for example,
941
+ * <code>us-west-2-lax-1b</code>) that the Capacity Reservation is in.</p>
942
+ * </li>
943
+ * <li>
944
+ * <p>
945
+ * <code>instance-type</code> - The instance type (for example,
946
+ * <code>p4d.24xlarge</code>) or instance family (for example,
947
+ * <code>p4d*</code>). You can use the <code>*</code> wildcard to match zero or
948
+ * more characters, or the <code>?</code> wildcard to match zero or one
949
+ * character.</p>
950
+ * </li>
951
+ * </ul>
952
+ * @public
953
+ */
954
+ Filters?: Filter[] | undefined;
955
+ }
956
+ /**
957
+ * <p>Information about the Capacity Reservation topology.</p>
958
+ * @public
959
+ */
960
+ export interface CapacityReservationTopology {
961
+ /**
962
+ * <p>The ID of the Capacity Reservation.</p>
963
+ * @public
964
+ */
965
+ CapacityReservationId?: string | undefined;
966
+ /**
967
+ * <p>The ID of the Capacity Block. This parameter is only supported for UltraServer
968
+ * instances and identifies instances within the UltraServer domain.</p>
969
+ * @public
970
+ */
971
+ CapacityBlockId?: string | undefined;
972
+ /**
973
+ * <p>The current state of the Capacity Reservation. For the list of possible states, see
974
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeCapacityReservations.html">DescribeCapacityReservations</a>.</p>
975
+ * @public
976
+ */
977
+ State?: string | undefined;
978
+ /**
979
+ * <p>The instance type.</p>
980
+ * @public
981
+ */
982
+ InstanceType?: string | undefined;
983
+ /**
984
+ * <p>The name of the placement group that the Capacity Reservation is in.</p>
985
+ * @public
986
+ */
987
+ GroupName?: string | undefined;
988
+ /**
989
+ * <p>The network nodes. The nodes are hashed based on your account. Capacity Reservations
990
+ * from different accounts running under the same server will return a different hashed
991
+ * list of strings.</p>
992
+ * <p>The value is <code>null</code> or empty if:</p>
993
+ * <ul>
994
+ * <li>
995
+ * <p>The instance type is not supported.</p>
996
+ * </li>
997
+ * <li>
998
+ * <p>The Capacity Reservation is in a state other than <code>active</code> or
999
+ * <code>pending</code>.</p>
1000
+ * </li>
1001
+ * </ul>
1002
+ * @public
1003
+ */
1004
+ NetworkNodes?: string[] | undefined;
1005
+ /**
1006
+ * <p>The ID of the Availability Zone or Local Zone that the Capacity Reservation is
1007
+ * in.</p>
1008
+ * @public
1009
+ */
1010
+ AvailabilityZoneId?: string | undefined;
1011
+ /**
1012
+ * <p>The name of the Availability Zone or Local Zone that the Capacity Reservation is
1013
+ * in.</p>
1014
+ * @public
1015
+ */
1016
+ AvailabilityZone?: string | undefined;
1017
+ }
1018
+ /**
1019
+ * @public
1020
+ */
1021
+ export interface DescribeCapacityReservationTopologyResult {
1022
+ /**
1023
+ * <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
1024
+ * are no more items to return.</p>
1025
+ * @public
1026
+ */
1027
+ NextToken?: string | undefined;
1028
+ /**
1029
+ * <p>Information about the topology of each Capacity Reservation.</p>
1030
+ * @public
1031
+ */
1032
+ CapacityReservations?: CapacityReservationTopology[] | undefined;
1033
+ }
900
1034
  /**
901
1035
  * @public
902
1036
  */
@@ -10257,7 +10391,8 @@ export interface DescribeInstanceTopologyRequest {
10257
10391
  * <p>The maximum number of items to return for this request.
10258
10392
  * To get the next page of items, make another request with the token returned in the output.
10259
10393
  * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
10260
- * <p>You can't specify this parameter and the instance IDs parameter in the same request.</p>
10394
+ * <p>You can't specify this parameter and the instance IDs parameter in the same
10395
+ * request.</p>
10261
10396
  * <p>Default: <code>20</code>
10262
10397
  * </p>
10263
10398
  * @public
@@ -10283,21 +10418,21 @@ export interface DescribeInstanceTopologyRequest {
10283
10418
  * <p>
10284
10419
  * <code>availability-zone</code> - The name of the Availability Zone (for
10285
10420
  * example, <code>us-west-2a</code>) or Local Zone (for example,
10286
- * <code>us-west-2-lax-1b</code>) that the instance is in.</p>
10421
+ * <code>us-west-2-lax-1b</code>) that the instance is in.</p>
10287
10422
  * </li>
10288
10423
  * <li>
10289
10424
  * <p>
10290
10425
  * <code>instance-type</code> - The instance type (for example,
10291
- * <code>p4d.24xlarge</code>) or instance family (for example,
10292
- * <code>p4d*</code>). You can use the <code>*</code> wildcard to match zero or
10426
+ * <code>p4d.24xlarge</code>) or instance family (for example,
10427
+ * <code>p4d*</code>). You can use the <code>*</code> wildcard to match zero or
10293
10428
  * more characters, or the <code>?</code> wildcard to match zero or one
10294
10429
  * character.</p>
10295
10430
  * </li>
10296
10431
  * <li>
10297
10432
  * <p>
10298
10433
  * <code>zone-id</code> - The ID of the Availability Zone (for example,
10299
- * <code>usw2-az2</code>) or Local Zone (for example,
10300
- * <code>usw2-lax1-az1</code>) that the instance is in.</p>
10434
+ * <code>usw2-az2</code>) or Local Zone (for example,
10435
+ * <code>usw2-lax1-az1</code>) that the instance is in.</p>
10301
10436
  * </li>
10302
10437
  * </ul>
10303
10438
  * @public
@@ -10328,6 +10463,15 @@ export interface InstanceTopology {
10328
10463
  * <p>The network nodes. The nodes are hashed based on your account. Instances from
10329
10464
  * different accounts running under the same server will return a different hashed list of
10330
10465
  * strings.</p>
10466
+ * <p>The value is <code>null</code> or empty if:</p>
10467
+ * <ul>
10468
+ * <li>
10469
+ * <p>The instance type is not supported.</p>
10470
+ * </li>
10471
+ * <li>
10472
+ * <p>The instance is in a state other than <code>running</code>.</p>
10473
+ * </li>
10474
+ * </ul>
10331
10475
  * @public
10332
10476
  */
10333
10477
  NetworkNodes?: string[] | undefined;
@@ -10342,8 +10486,8 @@ export interface InstanceTopology {
10342
10486
  */
10343
10487
  ZoneId?: string | undefined;
10344
10488
  /**
10345
- * <p>The ID of the Capacity Block. This parameter is only supported for Ultraserver
10346
- * instances and identifies instances within the Ultraserver domain.</p>
10489
+ * <p>The ID of the Capacity Block. This parameter is only supported for UltraServer
10490
+ * instances and identifies instances within the UltraServer domain.</p>
10347
10491
  * @public
10348
10492
  */
10349
10493
  CapacityBlockId?: string | undefined;
@@ -11197,60 +11341,6 @@ export interface InstanceStorageInfo {
11197
11341
  */
11198
11342
  EncryptionSupport?: InstanceStorageEncryptionSupport | undefined;
11199
11343
  }
11200
- /**
11201
- * <p>Describes the memory available to the media accelerator.</p>
11202
- * @public
11203
- */
11204
- export interface MediaDeviceMemoryInfo {
11205
- /**
11206
- * <p>The size of the memory available to each media accelerator, in MiB.</p>
11207
- * @public
11208
- */
11209
- SizeInMiB?: number | undefined;
11210
- }
11211
- /**
11212
- * <p>Describes the media accelerators for the instance type.</p>
11213
- * @public
11214
- */
11215
- export interface MediaDeviceInfo {
11216
- /**
11217
- * <p>The number of media accelerators for the instance type.</p>
11218
- * @public
11219
- */
11220
- Count?: number | undefined;
11221
- /**
11222
- * <p>The name of the media accelerator.</p>
11223
- * @public
11224
- */
11225
- Name?: string | undefined;
11226
- /**
11227
- * <p>The manufacturer of the media accelerator.</p>
11228
- * @public
11229
- */
11230
- Manufacturer?: string | undefined;
11231
- /**
11232
- * <p>Describes the memory available to the media accelerator.</p>
11233
- * @public
11234
- */
11235
- MemoryInfo?: MediaDeviceMemoryInfo | undefined;
11236
- }
11237
- /**
11238
- * <p>Describes the media accelerators for the instance type.</p>
11239
- * @public
11240
- */
11241
- export interface MediaAcceleratorInfo {
11242
- /**
11243
- * <p>Describes the media accelerators for the instance type.</p>
11244
- * @public
11245
- */
11246
- Accelerators?: MediaDeviceInfo[] | undefined;
11247
- /**
11248
- * <p>The total size of the memory for the media accelerators for the instance type, in
11249
- * MiB.</p>
11250
- * @public
11251
- */
11252
- TotalMediaMemoryInMiB?: number | undefined;
11253
- }
11254
11344
  /**
11255
11345
  * @internal
11256
11346
  */
@@ -1,8 +1,62 @@
1
1
  import { ActiveInstance, ActivityStatus, AllocationStrategy, AlternatePathHint, BatchState, CurrencyCodeValues, Explanation, IamInstanceProfileSpecification, IpamResourceDiscoveryAssociation, IpPermission, PathComponent, ReservedInstancesListing, ResourceType, SecurityGroupRule, SecurityGroupVpcAssociationState, Tag, TagSpecification, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
2
- import { _InstanceType, AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, FleetType, InstanceInterruptionBehavior, InstanceRequirements, InternetGateway, Ipam, IpamExternalResourceVerificationToken, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, MacModificationTask, PrivateIpAddressSpecification, SpotInstanceType, Subnet, TargetCapacityUnitType, Tenancy, Volume, VolumeType } from "./models_1";
2
+ import { _InstanceType, AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, FleetType, InstanceInterruptionBehavior, InstanceRequirements, InternetGateway, Ipam, IpamExternalResourceVerificationToken, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, MacModificationTask, PrivateIpAddressSpecification, SpotInstanceType, Subnet, TargetCapacityUnitType, Tenancy, Volume } from "./models_1";
3
3
  import { GroupIdentifier, InstanceIpv6Address, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, PlacementGroup, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup } from "./models_2";
4
4
  import { Byoasn, Filter, IdFormat } from "./models_3";
5
- import { AttributeBooleanValue, EbsInfo, EventInformation, FpgaInfo, GpuInfo, InferenceAcceleratorInfo, InstanceStorageInfo, InstanceTypeHypervisor, MediaAcceleratorInfo, PermissionGroup, ProductCode, VirtualizationType } from "./models_4";
5
+ import { AttributeBooleanValue, EbsInfo, EventInformation, FpgaInfo, GpuInfo, InferenceAcceleratorInfo, InstanceStorageInfo, InstanceTypeHypervisor, PermissionGroup, ProductCode, VirtualizationType } from "./models_4";
6
+ /**
7
+ * <p>Describes the memory available to the media accelerator.</p>
8
+ * @public
9
+ */
10
+ export interface MediaDeviceMemoryInfo {
11
+ /**
12
+ * <p>The size of the memory available to each media accelerator, in MiB.</p>
13
+ * @public
14
+ */
15
+ SizeInMiB?: number | undefined;
16
+ }
17
+ /**
18
+ * <p>Describes the media accelerators for the instance type.</p>
19
+ * @public
20
+ */
21
+ export interface MediaDeviceInfo {
22
+ /**
23
+ * <p>The number of media accelerators for the instance type.</p>
24
+ * @public
25
+ */
26
+ Count?: number | undefined;
27
+ /**
28
+ * <p>The name of the media accelerator.</p>
29
+ * @public
30
+ */
31
+ Name?: string | undefined;
32
+ /**
33
+ * <p>The manufacturer of the media accelerator.</p>
34
+ * @public
35
+ */
36
+ Manufacturer?: string | undefined;
37
+ /**
38
+ * <p>Describes the memory available to the media accelerator.</p>
39
+ * @public
40
+ */
41
+ MemoryInfo?: MediaDeviceMemoryInfo | undefined;
42
+ }
43
+ /**
44
+ * <p>Describes the media accelerators for the instance type.</p>
45
+ * @public
46
+ */
47
+ export interface MediaAcceleratorInfo {
48
+ /**
49
+ * <p>Describes the media accelerators for the instance type.</p>
50
+ * @public
51
+ */
52
+ Accelerators?: MediaDeviceInfo[] | undefined;
53
+ /**
54
+ * <p>The total size of the memory for the media accelerators for the instance type, in
55
+ * MiB.</p>
56
+ * @public
57
+ */
58
+ TotalMediaMemoryInMiB?: number | undefined;
59
+ }
6
60
  /**
7
61
  * <p>Describes the memory for the instance type.</p>
8
62
  * @public
@@ -11012,205 +11066,6 @@ export declare const VolumeModificationState: {
11012
11066
  * @public
11013
11067
  */
11014
11068
  export type VolumeModificationState = (typeof VolumeModificationState)[keyof typeof VolumeModificationState];
11015
- /**
11016
- * <p>Describes the modification status of an EBS volume.</p>
11017
- * @public
11018
- */
11019
- export interface VolumeModification {
11020
- /**
11021
- * <p>The ID of the volume.</p>
11022
- * @public
11023
- */
11024
- VolumeId?: string | undefined;
11025
- /**
11026
- * <p>The current modification state.</p>
11027
- * @public
11028
- */
11029
- ModificationState?: VolumeModificationState | undefined;
11030
- /**
11031
- * <p>A status message about the modification progress or failure.</p>
11032
- * @public
11033
- */
11034
- StatusMessage?: string | undefined;
11035
- /**
11036
- * <p>The target size of the volume, in GiB.</p>
11037
- * @public
11038
- */
11039
- TargetSize?: number | undefined;
11040
- /**
11041
- * <p>The target IOPS rate of the volume.</p>
11042
- * @public
11043
- */
11044
- TargetIops?: number | undefined;
11045
- /**
11046
- * <p>The target EBS volume type of the volume.</p>
11047
- * @public
11048
- */
11049
- TargetVolumeType?: VolumeType | undefined;
11050
- /**
11051
- * <p>The target throughput of the volume, in MiB/s.</p>
11052
- * @public
11053
- */
11054
- TargetThroughput?: number | undefined;
11055
- /**
11056
- * <p>The target setting for Amazon EBS Multi-Attach.</p>
11057
- * @public
11058
- */
11059
- TargetMultiAttachEnabled?: boolean | undefined;
11060
- /**
11061
- * <p>The original size of the volume, in GiB.</p>
11062
- * @public
11063
- */
11064
- OriginalSize?: number | undefined;
11065
- /**
11066
- * <p>The original IOPS rate of the volume.</p>
11067
- * @public
11068
- */
11069
- OriginalIops?: number | undefined;
11070
- /**
11071
- * <p>The original EBS volume type of the volume.</p>
11072
- * @public
11073
- */
11074
- OriginalVolumeType?: VolumeType | undefined;
11075
- /**
11076
- * <p>The original throughput of the volume, in MiB/s.</p>
11077
- * @public
11078
- */
11079
- OriginalThroughput?: number | undefined;
11080
- /**
11081
- * <p>The original setting for Amazon EBS Multi-Attach.</p>
11082
- * @public
11083
- */
11084
- OriginalMultiAttachEnabled?: boolean | undefined;
11085
- /**
11086
- * <p>The modification progress, from 0 to 100 percent complete.</p>
11087
- * @public
11088
- */
11089
- Progress?: number | undefined;
11090
- /**
11091
- * <p>The modification start time.</p>
11092
- * @public
11093
- */
11094
- StartTime?: Date | undefined;
11095
- /**
11096
- * <p>The modification completion or failure time.</p>
11097
- * @public
11098
- */
11099
- EndTime?: Date | undefined;
11100
- }
11101
- /**
11102
- * @public
11103
- */
11104
- export interface DescribeVolumesModificationsResult {
11105
- /**
11106
- * <p>The token to include in another request to get the next page of items.
11107
- * This value is <code>null</code> when there are no more items to return.</p>
11108
- * @public
11109
- */
11110
- NextToken?: string | undefined;
11111
- /**
11112
- * <p>Information about the volume modifications.</p>
11113
- * @public
11114
- */
11115
- VolumesModifications?: VolumeModification[] | undefined;
11116
- }
11117
- /**
11118
- * @public
11119
- */
11120
- export interface DescribeVolumeStatusRequest {
11121
- /**
11122
- * <p>The maximum number of items to return for this request.
11123
- * To get the next page of items, make another request with the token returned in the output.
11124
- * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
11125
- * @public
11126
- */
11127
- MaxResults?: number | undefined;
11128
- /**
11129
- * <p>The token returned from a previous paginated request.
11130
- * Pagination continues from the end of the items returned by the previous request.</p>
11131
- * @public
11132
- */
11133
- NextToken?: string | undefined;
11134
- /**
11135
- * <p>The IDs of the volumes.</p>
11136
- * <p>Default: Describes all your volumes.</p>
11137
- * @public
11138
- */
11139
- VolumeIds?: string[] | undefined;
11140
- /**
11141
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
11142
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
11143
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
11144
- * @public
11145
- */
11146
- DryRun?: boolean | undefined;
11147
- /**
11148
- * <p>The filters.</p>
11149
- * <ul>
11150
- * <li>
11151
- * <p>
11152
- * <code>action.code</code> - The action code for the event (for example,
11153
- * <code>enable-volume-io</code>).</p>
11154
- * </li>
11155
- * <li>
11156
- * <p>
11157
- * <code>action.description</code> - A description of the action.</p>
11158
- * </li>
11159
- * <li>
11160
- * <p>
11161
- * <code>action.event-id</code> - The event ID associated with the action.</p>
11162
- * </li>
11163
- * <li>
11164
- * <p>
11165
- * <code>availability-zone</code> - The Availability Zone of the instance.</p>
11166
- * </li>
11167
- * <li>
11168
- * <p>
11169
- * <code>event.description</code> - A description of the event.</p>
11170
- * </li>
11171
- * <li>
11172
- * <p>
11173
- * <code>event.event-id</code> - The event ID.</p>
11174
- * </li>
11175
- * <li>
11176
- * <p>
11177
- * <code>event.event-type</code> - The event type (for <code>io-enabled</code>:
11178
- * <code>passed</code> | <code>failed</code>; for <code>io-performance</code>:
11179
- * <code>io-performance:degraded</code> | <code>io-performance:severely-degraded</code> |
11180
- * <code>io-performance:stalled</code>).</p>
11181
- * </li>
11182
- * <li>
11183
- * <p>
11184
- * <code>event.not-after</code> - The latest end time for the event.</p>
11185
- * </li>
11186
- * <li>
11187
- * <p>
11188
- * <code>event.not-before</code> - The earliest start time for the event.</p>
11189
- * </li>
11190
- * <li>
11191
- * <p>
11192
- * <code>volume-status.details-name</code> - The cause for
11193
- * <code>volume-status.status</code> (<code>io-enabled</code> |
11194
- * <code>io-performance</code>).</p>
11195
- * </li>
11196
- * <li>
11197
- * <p>
11198
- * <code>volume-status.details-status</code> - The status of
11199
- * <code>volume-status.details-name</code> (for <code>io-enabled</code>:
11200
- * <code>passed</code> | <code>failed</code>; for <code>io-performance</code>:
11201
- * <code>normal</code> | <code>degraded</code> | <code>severely-degraded</code> |
11202
- * <code>stalled</code>).</p>
11203
- * </li>
11204
- * <li>
11205
- * <p>
11206
- * <code>volume-status.status</code> - The status of the volume (<code>ok</code> |
11207
- * <code>impaired</code> | <code>warning</code> | <code>insufficient-data</code>).</p>
11208
- * </li>
11209
- * </ul>
11210
- * @public
11211
- */
11212
- Filters?: Filter[] | undefined;
11213
- }
11214
11069
  /**
11215
11070
  * @internal
11216
11071
  */