@aws-sdk/client-ec2 3.55.0 → 3.58.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 (48) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/commands/CreateTransitGatewayConnectPeerCommand.js +1 -2
  3. package/dist-cjs/commands/GetHostReservationPurchasePreviewCommand.js +2 -1
  4. package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +1 -2
  5. package/dist-cjs/commands/ResetImageAttributeCommand.js +2 -2
  6. package/dist-cjs/models/models_0.js +18 -17
  7. package/dist-cjs/models/models_1.js +17 -18
  8. package/dist-cjs/models/models_2.js +18 -18
  9. package/dist-cjs/models/models_3.js +18 -6
  10. package/dist-cjs/models/models_4.js +1 -13
  11. package/dist-cjs/models/models_5.js +18 -12
  12. package/dist-cjs/models/models_6.js +8 -2
  13. package/dist-cjs/protocols/Aws_ec2.js +87 -0
  14. package/dist-es/commands/CreateTransitGatewayConnectPeerCommand.js +1 -2
  15. package/dist-es/commands/GetHostReservationPurchasePreviewCommand.js +2 -1
  16. package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +1 -2
  17. package/dist-es/commands/ResetImageAttributeCommand.js +1 -1
  18. package/dist-es/models/models_0.js +8 -11
  19. package/dist-es/models/models_1.js +11 -8
  20. package/dist-es/models/models_2.js +8 -8
  21. package/dist-es/models/models_3.js +8 -0
  22. package/dist-es/models/models_4.js +0 -8
  23. package/dist-es/models/models_5.js +8 -4
  24. package/dist-es/models/models_6.js +4 -0
  25. package/dist-es/protocols/Aws_ec2.js +87 -0
  26. package/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -2
  27. package/dist-types/commands/GetHostReservationPurchasePreviewCommand.d.ts +2 -1
  28. package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +1 -2
  29. package/dist-types/commands/ResetImageAttributeCommand.d.ts +1 -1
  30. package/dist-types/models/models_0.d.ts +83 -17
  31. package/dist-types/models/models_1.d.ts +10 -60
  32. package/dist-types/models/models_2.d.ts +60 -50
  33. package/dist-types/models/models_3.d.ts +71 -8
  34. package/dist-types/models/models_4.d.ts +4 -65
  35. package/dist-types/models/models_5.d.ts +63 -26
  36. package/dist-types/models/models_6.d.ts +26 -0
  37. package/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -2
  38. package/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +2 -1
  39. package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +1 -2
  40. package/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +38 -9
  42. package/dist-types/ts3.4/models/models_1.d.ts +10 -30
  43. package/dist-types/ts3.4/models/models_2.d.ts +30 -27
  44. package/dist-types/ts3.4/models/models_3.d.ts +37 -5
  45. package/dist-types/ts3.4/models/models_4.d.ts +4 -34
  46. package/dist-types/ts3.4/models/models_5.d.ts +32 -14
  47. package/dist-types/ts3.4/models/models_6.d.ts +14 -0
  48. package/package.json +19 -19
@@ -827,6 +827,25 @@ export declare namespace AnalysisComponent {
827
827
  */
828
828
  const filterSensitiveLog: (obj: AnalysisComponent) => any;
829
829
  }
830
+ /**
831
+ * <p>Describes an additional detail for a path analysis.</p>
832
+ */
833
+ export interface AdditionalDetail {
834
+ /**
835
+ * <p>The information type.</p>
836
+ */
837
+ AdditionalDetailType?: string;
838
+ /**
839
+ * <p>The path component.</p>
840
+ */
841
+ Component?: AnalysisComponent;
842
+ }
843
+ export declare namespace AdditionalDetail {
844
+ /**
845
+ * @internal
846
+ */
847
+ const filterSensitiveLog: (obj: AdditionalDetail) => any;
848
+ }
830
849
  /**
831
850
  * <p>Describes a header. Reflects any changes made by a component as traffic passes through.
832
851
  * The fields of an inbound header are null except for the first component of a path.</p>
@@ -892,19 +911,16 @@ export interface AnalysisRouteTableRoute {
892
911
  */
893
912
  NetworkInterfaceId?: string;
894
913
  /**
895
- * <p>Describes how the route was created. The following are possible values:</p>
914
+ * <p>Describes how the route was created. The following are the possible values:</p>
896
915
  * <ul>
897
916
  * <li>
898
- * <p>
899
- * <code>CreateRouteTable</code> - The route was automatically created when the route table was created.</p>
917
+ * <p>CreateRouteTable - The route was automatically created when the route table was created.</p>
900
918
  * </li>
901
919
  * <li>
902
- * <p>
903
- * <code>CreateRoute</code> - The route was manually added to the route table.</p>
920
+ * <p>CreateRoute - The route was manually added to the route table.</p>
904
921
  * </li>
905
922
  * <li>
906
- * <p>
907
- * <code>EnableVgwRoutePropagation</code> - The route was propagated by route propagation.</p>
923
+ * <p>EnableVgwRoutePropagation - The route was propagated by route propagation.</p>
908
924
  * </li>
909
925
  * </ul>
910
926
  */
@@ -933,7 +949,7 @@ export interface AnalysisSecurityGroupRule {
933
949
  */
934
950
  Cidr?: string;
935
951
  /**
936
- * <p>The direction. The following are possible values:</p>
952
+ * <p>The direction. The following are the possible values:</p>
937
953
  * <ul>
938
954
  * <li>
939
955
  * <p>egress</p>
@@ -967,6 +983,53 @@ export declare namespace AnalysisSecurityGroupRule {
967
983
  */
968
984
  const filterSensitiveLog: (obj: AnalysisSecurityGroupRule) => any;
969
985
  }
986
+ /**
987
+ * <p>Describes a route in a transit gateway route table.</p>
988
+ */
989
+ export interface TransitGatewayRouteTableRoute {
990
+ /**
991
+ * <p>The CIDR block used for destination matches.</p>
992
+ */
993
+ DestinationCidr?: string;
994
+ /**
995
+ * <p>The state of the route.</p>
996
+ */
997
+ State?: string;
998
+ /**
999
+ * <p>The route origin. The following are the possible values:</p>
1000
+ * <ul>
1001
+ * <li>
1002
+ * <p>static</p>
1003
+ * </li>
1004
+ * <li>
1005
+ * <p>propagated</p>
1006
+ * </li>
1007
+ * </ul>
1008
+ */
1009
+ RouteOrigin?: string;
1010
+ /**
1011
+ * <p>The ID of the prefix list.</p>
1012
+ */
1013
+ PrefixListId?: string;
1014
+ /**
1015
+ * <p>The ID of the route attachment.</p>
1016
+ */
1017
+ AttachmentId?: string;
1018
+ /**
1019
+ * <p>The ID of the resource for the route attachment.</p>
1020
+ */
1021
+ ResourceId?: string;
1022
+ /**
1023
+ * <p>The resource type for the route attachment.</p>
1024
+ */
1025
+ ResourceType?: string;
1026
+ }
1027
+ export declare namespace TransitGatewayRouteTableRoute {
1028
+ /**
1029
+ * @internal
1030
+ */
1031
+ const filterSensitiveLog: (obj: TransitGatewayRouteTableRoute) => any;
1032
+ }
970
1033
  /**
971
1034
  * <p>Describes a path component.</p>
972
1035
  */
@@ -1019,6 +1082,18 @@ export interface PathComponent {
1019
1082
  * <p>The component VPC.</p>
1020
1083
  */
1021
1084
  Vpc?: AnalysisComponent;
1085
+ /**
1086
+ * <p>The additional details.</p>
1087
+ */
1088
+ AdditionalDetails?: AdditionalDetail[];
1089
+ /**
1090
+ * <p>Describes a path component.</p>
1091
+ */
1092
+ TransitGateway?: AnalysisComponent;
1093
+ /**
1094
+ * <p>The route in a transit gateway route table.</p>
1095
+ */
1096
+ TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
1022
1097
  }
1023
1098
  export declare namespace PathComponent {
1024
1099
  /**
@@ -6521,12 +6596,3 @@ export declare enum CpuManufacturer {
6521
6596
  AMD = "amd",
6522
6597
  INTEL = "intel"
6523
6598
  }
6524
- export declare enum InstanceGeneration {
6525
- CURRENT = "current",
6526
- PREVIOUS = "previous"
6527
- }
6528
- export declare enum LocalStorage {
6529
- EXCLUDED = "excluded",
6530
- INCLUDED = "included",
6531
- REQUIRED = "required"
6532
- }
@@ -1,4 +1,13 @@
1
- import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, BareMetal, BaselineEbsBandwidthMbpsRequest, BurstablePerformance, CpuManufacturer, CurrencyCodeValues, DnsSupportValue, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateSpecificationRequest, HostnameType, InstanceEventWindow, InstanceGeneration, InternetGatewayAttachment, Ipv4PrefixSpecification, LocalStorage, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentState, UnsuccessfulItem, WeekDay } from "./models_0";
1
+ import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, BareMetal, BaselineEbsBandwidthMbpsRequest, BurstablePerformance, CpuManufacturer, CurrencyCodeValues, DnsSupportValue, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateSpecificationRequest, HostnameType, InstanceEventWindow, InternetGatewayAttachment, Ipv4PrefixSpecification, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentState, UnsuccessfulItem, WeekDay } from "./models_0";
2
+ export declare enum InstanceGeneration {
3
+ CURRENT = "current",
4
+ PREVIOUS = "previous"
5
+ }
6
+ export declare enum LocalStorage {
7
+ EXCLUDED = "excluded",
8
+ INCLUDED = "included",
9
+ REQUIRED = "required"
10
+ }
2
11
  export declare enum LocalStorageType {
3
12
  HDD = "hdd",
4
13
  SSD = "ssd"
@@ -8370,62 +8379,3 @@ export declare namespace CreateTransitGatewayConnectResult {
8370
8379
  */
8371
8380
  const filterSensitiveLog: (obj: CreateTransitGatewayConnectResult) => any;
8372
8381
  }
8373
- /**
8374
- * <p>The BGP options for the Connect attachment.</p>
8375
- */
8376
- export interface TransitGatewayConnectRequestBgpOptions {
8377
- /**
8378
- * <p>The peer Autonomous System Number (ASN).</p>
8379
- */
8380
- PeerAsn?: number;
8381
- }
8382
- export declare namespace TransitGatewayConnectRequestBgpOptions {
8383
- /**
8384
- * @internal
8385
- */
8386
- const filterSensitiveLog: (obj: TransitGatewayConnectRequestBgpOptions) => any;
8387
- }
8388
- export interface CreateTransitGatewayConnectPeerRequest {
8389
- /**
8390
- * <p>The ID of the Connect attachment.</p>
8391
- */
8392
- TransitGatewayAttachmentId: string | undefined;
8393
- /**
8394
- * <p>The peer IP address (GRE outer IP address) on the transit gateway side of the Connect peer, which must be
8395
- * specified from a transit gateway CIDR block. If not specified, Amazon automatically assigns
8396
- * the first available IP address from the transit gateway CIDR block.</p>
8397
- */
8398
- TransitGatewayAddress?: string;
8399
- /**
8400
- * <p>The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.</p>
8401
- */
8402
- PeerAddress: string | undefined;
8403
- /**
8404
- * <p>The BGP options for the Connect peer.</p>
8405
- */
8406
- BgpOptions?: TransitGatewayConnectRequestBgpOptions;
8407
- /**
8408
- * <p>The range of inside IP addresses that are used for BGP peering. You must specify a
8409
- * size /29 IPv4 CIDR block from the <code>169.254.0.0/16</code> range. The first address
8410
- * from the range must be configured on the appliance as the BGP IP address. You can also
8411
- * optionally specify a size /125 IPv6 CIDR block from the <code>fd00::/8</code>
8412
- * range.</p>
8413
- */
8414
- InsideCidrBlocks: string[] | undefined;
8415
- /**
8416
- * <p>The tags to apply to the Connect peer.</p>
8417
- */
8418
- TagSpecifications?: TagSpecification[];
8419
- /**
8420
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
8421
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
8422
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
8423
- */
8424
- DryRun?: boolean;
8425
- }
8426
- export declare namespace CreateTransitGatewayConnectPeerRequest {
8427
- /**
8428
- * @internal
8429
- */
8430
- const filterSensitiveLog: (obj: CreateTransitGatewayConnectPeerRequest) => any;
8431
- }
@@ -1,5 +1,64 @@
1
1
  import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, ApplianceModeSupportValue, AssociationStatus, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthenticationType, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, DnsSupportValue, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, GatewayType, InstanceEventWindowState, Ipv6SupportValue, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentResourceType, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TransportProtocol, UnsuccessfulItem, VolumeAttachment, Vpc, VpcAttachment, VpcPeeringConnection } from "./models_0";
2
- import { DiskImageFormat, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, ProtocolValue, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
2
+ import { GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, ProtocolValue, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
3
+ /**
4
+ * <p>The BGP options for the Connect attachment.</p>
5
+ */
6
+ export interface TransitGatewayConnectRequestBgpOptions {
7
+ /**
8
+ * <p>The peer Autonomous System Number (ASN).</p>
9
+ */
10
+ PeerAsn?: number;
11
+ }
12
+ export declare namespace TransitGatewayConnectRequestBgpOptions {
13
+ /**
14
+ * @internal
15
+ */
16
+ const filterSensitiveLog: (obj: TransitGatewayConnectRequestBgpOptions) => any;
17
+ }
18
+ export interface CreateTransitGatewayConnectPeerRequest {
19
+ /**
20
+ * <p>The ID of the Connect attachment.</p>
21
+ */
22
+ TransitGatewayAttachmentId: string | undefined;
23
+ /**
24
+ * <p>The peer IP address (GRE outer IP address) on the transit gateway side of the Connect peer, which must be
25
+ * specified from a transit gateway CIDR block. If not specified, Amazon automatically assigns
26
+ * the first available IP address from the transit gateway CIDR block.</p>
27
+ */
28
+ TransitGatewayAddress?: string;
29
+ /**
30
+ * <p>The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.</p>
31
+ */
32
+ PeerAddress: string | undefined;
33
+ /**
34
+ * <p>The BGP options for the Connect peer.</p>
35
+ */
36
+ BgpOptions?: TransitGatewayConnectRequestBgpOptions;
37
+ /**
38
+ * <p>The range of inside IP addresses that are used for BGP peering. You must specify a
39
+ * size /29 IPv4 CIDR block from the <code>169.254.0.0/16</code> range. The first address
40
+ * from the range must be configured on the appliance as the BGP IP address. You can also
41
+ * optionally specify a size /125 IPv6 CIDR block from the <code>fd00::/8</code>
42
+ * range.</p>
43
+ */
44
+ InsideCidrBlocks: string[] | undefined;
45
+ /**
46
+ * <p>The tags to apply to the Connect peer.</p>
47
+ */
48
+ TagSpecifications?: TagSpecification[];
49
+ /**
50
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
51
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
52
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
53
+ */
54
+ DryRun?: boolean;
55
+ }
56
+ export declare namespace CreateTransitGatewayConnectPeerRequest {
57
+ /**
58
+ * @internal
59
+ */
60
+ const filterSensitiveLog: (obj: CreateTransitGatewayConnectPeerRequest) => any;
61
+ }
3
62
  export declare type BgpStatus = "down" | "up";
4
63
  /**
5
64
  * <p>The BGP configuration information.</p>
@@ -6847,52 +6906,3 @@ export declare namespace DescribeConversionTasksRequest {
6847
6906
  */
6848
6907
  const filterSensitiveLog: (obj: DescribeConversionTasksRequest) => any;
6849
6908
  }
6850
- /**
6851
- * <p>Describes a disk image.</p>
6852
- */
6853
- export interface DiskImageDescription {
6854
- /**
6855
- * <p>The checksum computed for the disk image.</p>
6856
- */
6857
- Checksum?: string;
6858
- /**
6859
- * <p>The disk image format.</p>
6860
- */
6861
- Format?: DiskImageFormat | string;
6862
- /**
6863
- * <p>A presigned URL for the import manifest stored in Amazon S3. For information about creating a presigned URL for
6864
- * an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html">Authenticating REST Requests</a> topic in
6865
- * the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
6866
- * <p>For information about the import manifest referenced by this API action, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html">VM Import Manifest</a>.</p>
6867
- */
6868
- ImportManifestUrl?: string;
6869
- /**
6870
- * <p>The size of the disk image, in GiB.</p>
6871
- */
6872
- Size?: number;
6873
- }
6874
- export declare namespace DiskImageDescription {
6875
- /**
6876
- * @internal
6877
- */
6878
- const filterSensitiveLog: (obj: DiskImageDescription) => any;
6879
- }
6880
- /**
6881
- * <p>Describes a disk image volume.</p>
6882
- */
6883
- export interface DiskImageVolumeDescription {
6884
- /**
6885
- * <p>The volume identifier.</p>
6886
- */
6887
- Id?: string;
6888
- /**
6889
- * <p>The size of the volume, in GiB.</p>
6890
- */
6891
- Size?: number;
6892
- }
6893
- export declare namespace DiskImageVolumeDescription {
6894
- /**
6895
- * @internal
6896
- */
6897
- const filterSensitiveLog: (obj: DiskImageVolumeDescription) => any;
6898
- }
@@ -1,6 +1,55 @@
1
- import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AttachmentStatus, AttributeValue, AutoPlacement, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, Tag } from "./models_0";
2
- import { BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, DefaultTargetCapacityType, DestinationFileFormat, ExportTask, FleetCapacityReservationUsageStrategy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceIpv6Address, InstanceLifecycle, InternetGateway, Ipam, IpamPool, IpamScope, KeyType, LaunchTemplate, LaunchTemplateAndOverridesResponse, LaunchTemplateVersion, LocalGatewayRouteTableVpcAssociation, LogDestinationType, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, ReplaceRootVolumeTask, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType } from "./models_1";
3
- import { DiskImageDescription, DiskImageVolumeDescription, Filter, FleetStateCode, IdFormat, InstanceTagNotificationAttribute } from "./models_2";
1
+ import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AttachmentStatus, AttributeValue, AutoPlacement, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, Tag, TransitGatewayRouteTableRoute } from "./models_0";
2
+ import { BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, ExportTask, FleetCapacityReservationUsageStrategy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceIpv6Address, InstanceLifecycle, InternetGateway, Ipam, IpamPool, IpamScope, KeyType, LaunchTemplate, LaunchTemplateAndOverridesResponse, LaunchTemplateVersion, LocalGatewayRouteTableVpcAssociation, LogDestinationType, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, ReplaceRootVolumeTask, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType } from "./models_1";
3
+ import { Filter, FleetStateCode, IdFormat, InstanceTagNotificationAttribute } from "./models_2";
4
+ /**
5
+ * <p>Describes a disk image.</p>
6
+ */
7
+ export interface DiskImageDescription {
8
+ /**
9
+ * <p>The checksum computed for the disk image.</p>
10
+ */
11
+ Checksum?: string;
12
+ /**
13
+ * <p>The disk image format.</p>
14
+ */
15
+ Format?: DiskImageFormat | string;
16
+ /**
17
+ * <p>A presigned URL for the import manifest stored in Amazon S3. For information about creating a presigned URL for
18
+ * an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html">Authenticating REST Requests</a> topic in
19
+ * the <i>Amazon Simple Storage Service Developer Guide</i>.</p>
20
+ * <p>For information about the import manifest referenced by this API action, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html">VM Import Manifest</a>.</p>
21
+ */
22
+ ImportManifestUrl?: string;
23
+ /**
24
+ * <p>The size of the disk image, in GiB.</p>
25
+ */
26
+ Size?: number;
27
+ }
28
+ export declare namespace DiskImageDescription {
29
+ /**
30
+ * @internal
31
+ */
32
+ const filterSensitiveLog: (obj: DiskImageDescription) => any;
33
+ }
34
+ /**
35
+ * <p>Describes a disk image volume.</p>
36
+ */
37
+ export interface DiskImageVolumeDescription {
38
+ /**
39
+ * <p>The volume identifier.</p>
40
+ */
41
+ Id?: string;
42
+ /**
43
+ * <p>The size of the volume, in GiB.</p>
44
+ */
45
+ Size?: number;
46
+ }
47
+ export declare namespace DiskImageVolumeDescription {
48
+ /**
49
+ * @internal
50
+ */
51
+ const filterSensitiveLog: (obj: DiskImageVolumeDescription) => any;
52
+ }
4
53
  /**
5
54
  * <p>Describes an import volume task.</p>
6
55
  */
@@ -8670,7 +8719,7 @@ export interface DescribeNetworkInsightsAnalysesRequest {
8670
8719
  */
8671
8720
  AnalysisEndTime?: Date;
8672
8721
  /**
8673
- * <p>The filters. The following are possible values:</p>
8722
+ * <p>The filters. The following are the possible values:</p>
8674
8723
  * <ul>
8675
8724
  * <li>
8676
8725
  * <p>PathFound - A Boolean value that indicates whether a feasible path is found.</p>
@@ -8798,7 +8847,7 @@ export interface Explanation {
8798
8847
  */
8799
8848
  DestinationVpc?: AnalysisComponent;
8800
8849
  /**
8801
- * <p>The direction. The following are possible values:</p>
8850
+ * <p>The direction. The following are the possible values:</p>
8802
8851
  * <ul>
8803
8852
  * <li>
8804
8853
  * <p>egress</p>
@@ -8941,6 +8990,22 @@ export interface Explanation {
8941
8990
  * <p>The VPN gateway.</p>
8942
8991
  */
8943
8992
  VpnGateway?: AnalysisComponent;
8993
+ /**
8994
+ * <p>The transit gateway.</p>
8995
+ */
8996
+ TransitGateway?: AnalysisComponent;
8997
+ /**
8998
+ * <p>The transit gateway route table.</p>
8999
+ */
9000
+ TransitGatewayRouteTable?: AnalysisComponent;
9001
+ /**
9002
+ * <p>The transit gateway route table route.</p>
9003
+ */
9004
+ TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
9005
+ /**
9006
+ * <p>The transit gateway attachment.</p>
9007
+ */
9008
+ TransitGatewayAttachment?: AnalysisComponent;
8944
9009
  }
8945
9010
  export declare namespace Explanation {
8946
9011
  /**
@@ -9037,7 +9102,7 @@ export interface DescribeNetworkInsightsPathsRequest {
9037
9102
  */
9038
9103
  NetworkInsightsPathIds?: string[];
9039
9104
  /**
9040
- * <p>The filters. The following are possible values:</p>
9105
+ * <p>The filters. The following are the possible values:</p>
9041
9106
  * <ul>
9042
9107
  * <li>
9043
9108
  * <p>Destination - The ID of the resource.</p>
@@ -10026,5 +10091,3 @@ export declare namespace DescribeReservedInstancesRequest {
10026
10091
  */
10027
10092
  const filterSensitiveLog: (obj: DescribeReservedInstancesRequest) => any;
10028
10093
  }
10029
- export declare type RIProductDescription = "Linux/UNIX" | "Linux/UNIX (Amazon VPC)" | "Windows" | "Windows (Amazon VPC)";
10030
- export declare type RecurringChargeFrequency = "Hourly";
@@ -1,7 +1,9 @@
1
1
  import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, ReservedInstancesListing, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
2
- import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
2
+ import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
3
3
  import { ConnectionNotification, DnsEntry, DnsNameState, Filter, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
4
- import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringChargeFrequency, RIProductDescription, VirtualizationType } from "./models_3";
4
+ import { AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode } from "./models_3";
5
+ export declare type RIProductDescription = "Linux/UNIX" | "Linux/UNIX (Amazon VPC)" | "Windows" | "Windows (Amazon VPC)";
6
+ export declare type RecurringChargeFrequency = "Hourly";
5
7
  /**
6
8
  * <p>Describes a recurring charge.</p>
7
9
  */
@@ -9274,66 +9276,3 @@ export declare namespace Purchase {
9274
9276
  */
9275
9277
  const filterSensitiveLog: (obj: Purchase) => any;
9276
9278
  }
9277
- export interface GetHostReservationPurchasePreviewResult {
9278
- /**
9279
- * <p>The currency in which the <code>totalUpfrontPrice</code> and
9280
- * <code>totalHourlyPrice</code> amounts are specified. At this time, the only
9281
- * supported currency is <code>USD</code>.</p>
9282
- */
9283
- CurrencyCode?: CurrencyCodeValues | string;
9284
- /**
9285
- * <p>The purchase information of the Dedicated Host reservation and the Dedicated Hosts
9286
- * associated with it.</p>
9287
- */
9288
- Purchase?: Purchase[];
9289
- /**
9290
- * <p>The potential total hourly price of the reservation per hour.</p>
9291
- */
9292
- TotalHourlyPrice?: string;
9293
- /**
9294
- * <p>The potential total upfront price. This is billed immediately.</p>
9295
- */
9296
- TotalUpfrontPrice?: string;
9297
- }
9298
- export declare namespace GetHostReservationPurchasePreviewResult {
9299
- /**
9300
- * @internal
9301
- */
9302
- const filterSensitiveLog: (obj: GetHostReservationPurchasePreviewResult) => any;
9303
- }
9304
- export interface GetInstanceTypesFromInstanceRequirementsRequest {
9305
- /**
9306
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
9307
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
9308
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
9309
- */
9310
- DryRun?: boolean;
9311
- /**
9312
- * <p>The processor architecture type.</p>
9313
- */
9314
- ArchitectureTypes: (ArchitectureType | string)[] | undefined;
9315
- /**
9316
- * <p>The virtualization type.</p>
9317
- */
9318
- VirtualizationTypes: (VirtualizationType | string)[] | undefined;
9319
- /**
9320
- * <p>The attributes required for the instance types.</p>
9321
- */
9322
- InstanceRequirements: InstanceRequirementsRequest | undefined;
9323
- /**
9324
- * <p>The maximum number of results to return in a single call. Specify a value between 1 and
9325
- * 1000. The default value is 1000. To retrieve the remaining results, make another call with
9326
- * the returned <code>NextToken</code> value.</p>
9327
- */
9328
- MaxResults?: number;
9329
- /**
9330
- * <p>The token for the next set of results.</p>
9331
- */
9332
- NextToken?: string;
9333
- }
9334
- export declare namespace GetInstanceTypesFromInstanceRequirementsRequest {
9335
- /**
9336
- * @internal
9337
- */
9338
- const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsRequest) => any;
9339
- }
@@ -3,6 +3,69 @@ import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservati
3
3
  import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
4
4
  import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_3";
5
5
  import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification, LaunchTemplateConfig, Purchase, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification } from "./models_4";
6
+ export interface GetHostReservationPurchasePreviewResult {
7
+ /**
8
+ * <p>The currency in which the <code>totalUpfrontPrice</code> and
9
+ * <code>totalHourlyPrice</code> amounts are specified. At this time, the only
10
+ * supported currency is <code>USD</code>.</p>
11
+ */
12
+ CurrencyCode?: CurrencyCodeValues | string;
13
+ /**
14
+ * <p>The purchase information of the Dedicated Host reservation and the Dedicated Hosts
15
+ * associated with it.</p>
16
+ */
17
+ Purchase?: Purchase[];
18
+ /**
19
+ * <p>The potential total hourly price of the reservation per hour.</p>
20
+ */
21
+ TotalHourlyPrice?: string;
22
+ /**
23
+ * <p>The potential total upfront price. This is billed immediately.</p>
24
+ */
25
+ TotalUpfrontPrice?: string;
26
+ }
27
+ export declare namespace GetHostReservationPurchasePreviewResult {
28
+ /**
29
+ * @internal
30
+ */
31
+ const filterSensitiveLog: (obj: GetHostReservationPurchasePreviewResult) => any;
32
+ }
33
+ export interface GetInstanceTypesFromInstanceRequirementsRequest {
34
+ /**
35
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
36
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
37
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
38
+ */
39
+ DryRun?: boolean;
40
+ /**
41
+ * <p>The processor architecture type.</p>
42
+ */
43
+ ArchitectureTypes: (ArchitectureType | string)[] | undefined;
44
+ /**
45
+ * <p>The virtualization type.</p>
46
+ */
47
+ VirtualizationTypes: (VirtualizationType | string)[] | undefined;
48
+ /**
49
+ * <p>The attributes required for the instance types.</p>
50
+ */
51
+ InstanceRequirements: InstanceRequirementsRequest | undefined;
52
+ /**
53
+ * <p>The maximum number of results to return in a single call. Specify a value between 1 and
54
+ * 1000. The default value is 1000. To retrieve the remaining results, make another call with
55
+ * the returned <code>NextToken</code> value.</p>
56
+ */
57
+ MaxResults?: number;
58
+ /**
59
+ * <p>The token for the next set of results.</p>
60
+ */
61
+ NextToken?: string;
62
+ }
63
+ export declare namespace GetInstanceTypesFromInstanceRequirementsRequest {
64
+ /**
65
+ * @internal
66
+ */
67
+ const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsRequest) => any;
68
+ }
6
69
  /**
7
70
  * <p>The list of instance types with the specified instance attributes.</p>
8
71
  */
@@ -7725,29 +7788,3 @@ export declare namespace ResetFpgaImageAttributeResult {
7725
7788
  */
7726
7789
  const filterSensitiveLog: (obj: ResetFpgaImageAttributeResult) => any;
7727
7790
  }
7728
- export declare type ResetImageAttributeName = "launchPermission";
7729
- /**
7730
- * <p>Contains the parameters for ResetImageAttribute.</p>
7731
- */
7732
- export interface ResetImageAttributeRequest {
7733
- /**
7734
- * <p>The attribute to reset (currently you can only reset the launch permission attribute).</p>
7735
- */
7736
- Attribute: ResetImageAttributeName | string | undefined;
7737
- /**
7738
- * <p>The ID of the AMI.</p>
7739
- */
7740
- ImageId: string | undefined;
7741
- /**
7742
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
7743
- * and provides an error response. If you have the required permissions, the error response is
7744
- * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
7745
- */
7746
- DryRun?: boolean;
7747
- }
7748
- export declare namespace ResetImageAttributeRequest {
7749
- /**
7750
- * @internal
7751
- */
7752
- const filterSensitiveLog: (obj: ResetImageAttributeRequest) => any;
7753
- }