@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
@@ -264,6 +264,7 @@ import { DescribeCapacityManagerDataExportsCommandInput, DescribeCapacityManager
264
264
  import { DescribeCapacityReservationBillingRequestsCommandInput, DescribeCapacityReservationBillingRequestsCommandOutput } from "../commands/DescribeCapacityReservationBillingRequestsCommand";
265
265
  import { DescribeCapacityReservationFleetsCommandInput, DescribeCapacityReservationFleetsCommandOutput } from "../commands/DescribeCapacityReservationFleetsCommand";
266
266
  import { DescribeCapacityReservationsCommandInput, DescribeCapacityReservationsCommandOutput } from "../commands/DescribeCapacityReservationsCommand";
267
+ import { DescribeCapacityReservationTopologyCommandInput, DescribeCapacityReservationTopologyCommandOutput } from "../commands/DescribeCapacityReservationTopologyCommand";
267
268
  import { DescribeCarrierGatewaysCommandInput, DescribeCarrierGatewaysCommandOutput } from "../commands/DescribeCarrierGatewaysCommand";
268
269
  import { DescribeClassicLinkInstancesCommandInput, DescribeClassicLinkInstancesCommandOutput } from "../commands/DescribeClassicLinkInstancesCommand";
269
270
  import { DescribeClientVpnAuthorizationRulesCommandInput, DescribeClientVpnAuthorizationRulesCommandOutput } from "../commands/DescribeClientVpnAuthorizationRulesCommand";
@@ -1760,6 +1761,10 @@ export declare const se_DescribeCapacityReservationFleetsCommand: (input: Descri
1760
1761
  * serializeAws_ec2DescribeCapacityReservationsCommand
1761
1762
  */
1762
1763
  export declare const se_DescribeCapacityReservationsCommand: (input: DescribeCapacityReservationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
1764
+ /**
1765
+ * serializeAws_ec2DescribeCapacityReservationTopologyCommand
1766
+ */
1767
+ export declare const se_DescribeCapacityReservationTopologyCommand: (input: DescribeCapacityReservationTopologyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
1763
1768
  /**
1764
1769
  * serializeAws_ec2DescribeCarrierGatewaysCommand
1765
1770
  */
@@ -4576,6 +4581,10 @@ export declare const de_DescribeCapacityReservationFleetsCommand: (output: __Htt
4576
4581
  * deserializeAws_ec2DescribeCapacityReservationsCommand
4577
4582
  */
4578
4583
  export declare const de_DescribeCapacityReservationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCapacityReservationsCommandOutput>;
4584
+ /**
4585
+ * deserializeAws_ec2DescribeCapacityReservationTopologyCommand
4586
+ */
4587
+ export declare const de_DescribeCapacityReservationTopologyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCapacityReservationTopologyCommandOutput>;
4579
4588
  /**
4580
4589
  * deserializeAws_ec2DescribeCarrierGatewaysCommand
4581
4590
  */
@@ -1055,6 +1055,10 @@ import {
1055
1055
  DescribeCapacityReservationsCommandInput,
1056
1056
  DescribeCapacityReservationsCommandOutput,
1057
1057
  } from "./commands/DescribeCapacityReservationsCommand";
1058
+ import {
1059
+ DescribeCapacityReservationTopologyCommandInput,
1060
+ DescribeCapacityReservationTopologyCommandOutput,
1061
+ } from "./commands/DescribeCapacityReservationTopologyCommand";
1058
1062
  import {
1059
1063
  DescribeCarrierGatewaysCommandInput,
1060
1064
  DescribeCarrierGatewaysCommandOutput,
@@ -6608,6 +6612,26 @@ export interface EC2 {
6608
6612
  options: __HttpHandlerOptions,
6609
6613
  cb: (err: any, data?: DescribeCapacityReservationsCommandOutput) => void
6610
6614
  ): void;
6615
+ describeCapacityReservationTopology(): Promise<DescribeCapacityReservationTopologyCommandOutput>;
6616
+ describeCapacityReservationTopology(
6617
+ args: DescribeCapacityReservationTopologyCommandInput,
6618
+ options?: __HttpHandlerOptions
6619
+ ): Promise<DescribeCapacityReservationTopologyCommandOutput>;
6620
+ describeCapacityReservationTopology(
6621
+ args: DescribeCapacityReservationTopologyCommandInput,
6622
+ cb: (
6623
+ err: any,
6624
+ data?: DescribeCapacityReservationTopologyCommandOutput
6625
+ ) => void
6626
+ ): void;
6627
+ describeCapacityReservationTopology(
6628
+ args: DescribeCapacityReservationTopologyCommandInput,
6629
+ options: __HttpHandlerOptions,
6630
+ cb: (
6631
+ err: any,
6632
+ data?: DescribeCapacityReservationTopologyCommandOutput
6633
+ ) => void
6634
+ ): void;
6611
6635
  describeCarrierGateways(): Promise<DescribeCarrierGatewaysCommandOutput>;
6612
6636
  describeCarrierGateways(
6613
6637
  args: DescribeCarrierGatewaysCommandInput,
@@ -1101,6 +1101,10 @@ import {
1101
1101
  DescribeCapacityReservationsCommandInput,
1102
1102
  DescribeCapacityReservationsCommandOutput,
1103
1103
  } from "./commands/DescribeCapacityReservationsCommand";
1104
+ import {
1105
+ DescribeCapacityReservationTopologyCommandInput,
1106
+ DescribeCapacityReservationTopologyCommandOutput,
1107
+ } from "./commands/DescribeCapacityReservationTopologyCommand";
1104
1108
  import {
1105
1109
  DescribeCarrierGatewaysCommandInput,
1106
1110
  DescribeCarrierGatewaysCommandOutput,
@@ -3132,6 +3136,7 @@ export type ServiceInputTypes =
3132
3136
  | DescribeCapacityManagerDataExportsCommandInput
3133
3137
  | DescribeCapacityReservationBillingRequestsCommandInput
3134
3138
  | DescribeCapacityReservationFleetsCommandInput
3139
+ | DescribeCapacityReservationTopologyCommandInput
3135
3140
  | DescribeCapacityReservationsCommandInput
3136
3141
  | DescribeCarrierGatewaysCommandInput
3137
3142
  | DescribeClassicLinkInstancesCommandInput
@@ -3837,6 +3842,7 @@ export type ServiceOutputTypes =
3837
3842
  | DescribeCapacityManagerDataExportsCommandOutput
3838
3843
  | DescribeCapacityReservationBillingRequestsCommandOutput
3839
3844
  | DescribeCapacityReservationFleetsCommandOutput
3845
+ | DescribeCapacityReservationTopologyCommandOutput
3840
3846
  | DescribeCapacityReservationsCommandOutput
3841
3847
  | DescribeCarrierGatewaysCommandOutput
3842
3848
  | DescribeClassicLinkInstancesCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EC2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EC2Client";
8
+ import {
9
+ DescribeCapacityReservationTopologyRequest,
10
+ DescribeCapacityReservationTopologyResult,
11
+ } from "../models/models_4";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeCapacityReservationTopologyCommandInput
15
+ extends DescribeCapacityReservationTopologyRequest {}
16
+ export interface DescribeCapacityReservationTopologyCommandOutput
17
+ extends DescribeCapacityReservationTopologyResult,
18
+ __MetadataBearer {}
19
+ declare const DescribeCapacityReservationTopologyCommand_base: {
20
+ new (
21
+ input: DescribeCapacityReservationTopologyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeCapacityReservationTopologyCommandInput,
24
+ DescribeCapacityReservationTopologyCommandOutput,
25
+ EC2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [DescribeCapacityReservationTopologyCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeCapacityReservationTopologyCommandInput,
33
+ DescribeCapacityReservationTopologyCommandOutput,
34
+ EC2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeCapacityReservationTopologyCommand extends DescribeCapacityReservationTopologyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeCapacityReservationTopologyRequest;
44
+ output: DescribeCapacityReservationTopologyResult;
45
+ };
46
+ sdk: {
47
+ input: DescribeCapacityReservationTopologyCommandInput;
48
+ output: DescribeCapacityReservationTopologyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { DescribeVolumeStatusRequest } from "../models/models_5";
9
- import { DescribeVolumeStatusResult } from "../models/models_6";
8
+ import {
9
+ DescribeVolumeStatusRequest,
10
+ DescribeVolumeStatusResult,
11
+ } from "../models/models_6";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface DescribeVolumeStatusCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- DescribeVolumesModificationsRequest,
10
- DescribeVolumesModificationsResult,
11
- } from "../models/models_5";
8
+ import { DescribeVolumesModificationsRequest } from "../models/models_5";
9
+ import { DescribeVolumesModificationsResult } from "../models/models_6";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DescribeVolumesModificationsCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- GetIpamAddressHistoryRequest,
10
- GetIpamAddressHistoryResult,
11
- } from "../models/models_6";
8
+ import { GetIpamAddressHistoryRequest } from "../models/models_6";
9
+ import { GetIpamAddressHistoryResult } from "../models/models_7";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface GetIpamAddressHistoryCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { GetIpamDiscoveredAccountsRequest } from "../models/models_6";
9
- import { GetIpamDiscoveredAccountsResult } from "../models/models_7";
8
+ import {
9
+ GetIpamDiscoveredAccountsRequest,
10
+ GetIpamDiscoveredAccountsResult,
11
+ } from "../models/models_7";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface GetIpamDiscoveredAccountsCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- ModifyVpcEndpointConnectionNotificationRequest,
10
- ModifyVpcEndpointConnectionNotificationResult,
11
- } from "../models/models_7";
8
+ import { ModifyVpcEndpointConnectionNotificationRequest } from "../models/models_7";
9
+ import { ModifyVpcEndpointConnectionNotificationResult } from "../models/models_8";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ModifyVpcEndpointConnectionNotificationCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ModifyVpcEndpointServiceConfigurationRequest,
10
10
  ModifyVpcEndpointServiceConfigurationResult,
11
- } from "../models/models_7";
11
+ } from "../models/models_8";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ModifyVpcEndpointServiceConfigurationCommandInput
@@ -261,6 +261,7 @@ export * from "./DescribeCapacityBlocksCommand";
261
261
  export * from "./DescribeCapacityManagerDataExportsCommand";
262
262
  export * from "./DescribeCapacityReservationBillingRequestsCommand";
263
263
  export * from "./DescribeCapacityReservationFleetsCommand";
264
+ export * from "./DescribeCapacityReservationTopologyCommand";
264
265
  export * from "./DescribeCapacityReservationsCommand";
265
266
  export * from "./DescribeCarrierGatewaysCommand";
266
267
  export * from "./DescribeClassicLinkInstancesCommand";
@@ -226,6 +226,27 @@ export interface DescribeCapacityReservationsResult {
226
226
  NextToken?: string | undefined;
227
227
  CapacityReservations?: CapacityReservation[] | undefined;
228
228
  }
229
+ export interface DescribeCapacityReservationTopologyRequest {
230
+ DryRun?: boolean | undefined;
231
+ NextToken?: string | undefined;
232
+ MaxResults?: number | undefined;
233
+ CapacityReservationIds?: string[] | undefined;
234
+ Filters?: Filter[] | undefined;
235
+ }
236
+ export interface CapacityReservationTopology {
237
+ CapacityReservationId?: string | undefined;
238
+ CapacityBlockId?: string | undefined;
239
+ State?: string | undefined;
240
+ InstanceType?: string | undefined;
241
+ GroupName?: string | undefined;
242
+ NetworkNodes?: string[] | undefined;
243
+ AvailabilityZoneId?: string | undefined;
244
+ AvailabilityZone?: string | undefined;
245
+ }
246
+ export interface DescribeCapacityReservationTopologyResult {
247
+ NextToken?: string | undefined;
248
+ CapacityReservations?: CapacityReservationTopology[] | undefined;
249
+ }
229
250
  export interface DescribeCarrierGatewaysRequest {
230
251
  CarrierGatewayIds?: string[] | undefined;
231
252
  Filters?: Filter[] | undefined;
@@ -2118,19 +2139,6 @@ export interface InstanceStorageInfo {
2118
2139
  NvmeSupport?: EphemeralNvmeSupport | undefined;
2119
2140
  EncryptionSupport?: InstanceStorageEncryptionSupport | undefined;
2120
2141
  }
2121
- export interface MediaDeviceMemoryInfo {
2122
- SizeInMiB?: number | undefined;
2123
- }
2124
- export interface MediaDeviceInfo {
2125
- Count?: number | undefined;
2126
- Name?: string | undefined;
2127
- Manufacturer?: string | undefined;
2128
- MemoryInfo?: MediaDeviceMemoryInfo | undefined;
2129
- }
2130
- export interface MediaAcceleratorInfo {
2131
- Accelerators?: MediaDeviceInfo[] | undefined;
2132
- TotalMediaMemoryInMiB?: number | undefined;
2133
- }
2134
2142
  export declare const DiskImageDescriptionFilterSensitiveLog: (
2135
2143
  obj: DiskImageDescription
2136
2144
  ) => any;
@@ -53,7 +53,6 @@ import {
53
53
  TargetCapacityUnitType,
54
54
  Tenancy,
55
55
  Volume,
56
- VolumeType,
57
56
  } from "./models_1";
58
57
  import {
59
58
  GroupIdentifier,
@@ -107,11 +106,23 @@ import {
107
106
  InferenceAcceleratorInfo,
108
107
  InstanceStorageInfo,
109
108
  InstanceTypeHypervisor,
110
- MediaAcceleratorInfo,
111
109
  PermissionGroup,
112
110
  ProductCode,
113
111
  VirtualizationType,
114
112
  } from "./models_4";
113
+ export interface MediaDeviceMemoryInfo {
114
+ SizeInMiB?: number | undefined;
115
+ }
116
+ export interface MediaDeviceInfo {
117
+ Count?: number | undefined;
118
+ Name?: string | undefined;
119
+ Manufacturer?: string | undefined;
120
+ MemoryInfo?: MediaDeviceMemoryInfo | undefined;
121
+ }
122
+ export interface MediaAcceleratorInfo {
123
+ Accelerators?: MediaDeviceInfo[] | undefined;
124
+ TotalMediaMemoryInMiB?: number | undefined;
125
+ }
115
126
  export interface MemoryInfo {
116
127
  SizeInMiB?: number | undefined;
117
128
  }
@@ -2052,35 +2063,6 @@ export declare const VolumeModificationState: {
2052
2063
  };
2053
2064
  export type VolumeModificationState =
2054
2065
  (typeof VolumeModificationState)[keyof typeof VolumeModificationState];
2055
- export interface VolumeModification {
2056
- VolumeId?: string | undefined;
2057
- ModificationState?: VolumeModificationState | undefined;
2058
- StatusMessage?: string | undefined;
2059
- TargetSize?: number | undefined;
2060
- TargetIops?: number | undefined;
2061
- TargetVolumeType?: VolumeType | undefined;
2062
- TargetThroughput?: number | undefined;
2063
- TargetMultiAttachEnabled?: boolean | undefined;
2064
- OriginalSize?: number | undefined;
2065
- OriginalIops?: number | undefined;
2066
- OriginalVolumeType?: VolumeType | undefined;
2067
- OriginalThroughput?: number | undefined;
2068
- OriginalMultiAttachEnabled?: boolean | undefined;
2069
- Progress?: number | undefined;
2070
- StartTime?: Date | undefined;
2071
- EndTime?: Date | undefined;
2072
- }
2073
- export interface DescribeVolumesModificationsResult {
2074
- NextToken?: string | undefined;
2075
- VolumesModifications?: VolumeModification[] | undefined;
2076
- }
2077
- export interface DescribeVolumeStatusRequest {
2078
- MaxResults?: number | undefined;
2079
- NextToken?: string | undefined;
2080
- VolumeIds?: string[] | undefined;
2081
- DryRun?: boolean | undefined;
2082
- Filters?: Filter[] | undefined;
2083
- }
2084
2066
  export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
2085
2067
  obj: DescribeLaunchTemplateVersionsResult
2086
2068
  ) => any;
@@ -34,6 +34,7 @@ import {
34
34
  InstanceRequirementsRequest,
35
35
  IpAddressType,
36
36
  SSEType,
37
+ VolumeType,
37
38
  Vpc,
38
39
  } from "./models_1";
39
40
  import {
@@ -69,7 +70,36 @@ import {
69
70
  ReservationState,
70
71
  VirtualizationType,
71
72
  } from "./models_4";
72
- import { ArchitectureType } from "./models_5";
73
+ import { ArchitectureType, VolumeModificationState } from "./models_5";
74
+ export interface VolumeModification {
75
+ VolumeId?: string | undefined;
76
+ ModificationState?: VolumeModificationState | undefined;
77
+ StatusMessage?: string | undefined;
78
+ TargetSize?: number | undefined;
79
+ TargetIops?: number | undefined;
80
+ TargetVolumeType?: VolumeType | undefined;
81
+ TargetThroughput?: number | undefined;
82
+ TargetMultiAttachEnabled?: boolean | undefined;
83
+ OriginalSize?: number | undefined;
84
+ OriginalIops?: number | undefined;
85
+ OriginalVolumeType?: VolumeType | undefined;
86
+ OriginalThroughput?: number | undefined;
87
+ OriginalMultiAttachEnabled?: boolean | undefined;
88
+ Progress?: number | undefined;
89
+ StartTime?: Date | undefined;
90
+ EndTime?: Date | undefined;
91
+ }
92
+ export interface DescribeVolumesModificationsResult {
93
+ NextToken?: string | undefined;
94
+ VolumesModifications?: VolumeModification[] | undefined;
95
+ }
96
+ export interface DescribeVolumeStatusRequest {
97
+ MaxResults?: number | undefined;
98
+ NextToken?: string | undefined;
99
+ VolumeIds?: string[] | undefined;
100
+ DryRun?: boolean | undefined;
101
+ Filters?: Filter[] | undefined;
102
+ }
73
103
  export interface VolumeStatusAction {
74
104
  Code?: string | undefined;
75
105
  Description?: string | undefined;
@@ -1664,31 +1694,6 @@ export declare const IpamAddressHistoryResourceType: {
1664
1694
  };
1665
1695
  export type IpamAddressHistoryResourceType =
1666
1696
  (typeof IpamAddressHistoryResourceType)[keyof typeof IpamAddressHistoryResourceType];
1667
- export interface IpamAddressHistoryRecord {
1668
- ResourceOwnerId?: string | undefined;
1669
- ResourceRegion?: string | undefined;
1670
- ResourceType?: IpamAddressHistoryResourceType | undefined;
1671
- ResourceId?: string | undefined;
1672
- ResourceCidr?: string | undefined;
1673
- ResourceName?: string | undefined;
1674
- ResourceComplianceStatus?: IpamComplianceStatus | undefined;
1675
- ResourceOverlapStatus?: IpamOverlapStatus | undefined;
1676
- VpcId?: string | undefined;
1677
- SampledStartTime?: Date | undefined;
1678
- SampledEndTime?: Date | undefined;
1679
- }
1680
- export interface GetIpamAddressHistoryResult {
1681
- HistoryRecords?: IpamAddressHistoryRecord[] | undefined;
1682
- NextToken?: string | undefined;
1683
- }
1684
- export interface GetIpamDiscoveredAccountsRequest {
1685
- DryRun?: boolean | undefined;
1686
- IpamResourceDiscoveryId: string | undefined;
1687
- DiscoveryRegion: string | undefined;
1688
- Filters?: Filter[] | undefined;
1689
- NextToken?: string | undefined;
1690
- MaxResults?: number | undefined;
1691
- }
1692
1697
  export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
1693
1698
  obj: DescribeVpnConnectionsResult
1694
1699
  ) => any;
@@ -133,11 +133,11 @@ import {
133
133
  ReservedInstancesConfiguration,
134
134
  SnapshotAttributeName,
135
135
  VerifiedAccessInstanceLoggingConfiguration,
136
- VolumeModification,
137
136
  } from "./models_5";
138
137
  import {
139
138
  InstanceFamilyCreditSpecification,
140
139
  InternetGatewayBlockMode,
140
+ IpamAddressHistoryResourceType,
141
141
  IpamComplianceStatus,
142
142
  IpamOverlapStatus,
143
143
  ManagedBy,
@@ -145,8 +145,34 @@ import {
145
145
  SnapshotBlockPublicAccessState,
146
146
  TransitGatewayPropagationState,
147
147
  UnlimitedSupportedInstanceFamily,
148
+ VolumeModification,
148
149
  VpcBlockPublicAccessOptions,
149
150
  } from "./models_6";
151
+ export interface IpamAddressHistoryRecord {
152
+ ResourceOwnerId?: string | undefined;
153
+ ResourceRegion?: string | undefined;
154
+ ResourceType?: IpamAddressHistoryResourceType | undefined;
155
+ ResourceId?: string | undefined;
156
+ ResourceCidr?: string | undefined;
157
+ ResourceName?: string | undefined;
158
+ ResourceComplianceStatus?: IpamComplianceStatus | undefined;
159
+ ResourceOverlapStatus?: IpamOverlapStatus | undefined;
160
+ VpcId?: string | undefined;
161
+ SampledStartTime?: Date | undefined;
162
+ SampledEndTime?: Date | undefined;
163
+ }
164
+ export interface GetIpamAddressHistoryResult {
165
+ HistoryRecords?: IpamAddressHistoryRecord[] | undefined;
166
+ NextToken?: string | undefined;
167
+ }
168
+ export interface GetIpamDiscoveredAccountsRequest {
169
+ DryRun?: boolean | undefined;
170
+ IpamResourceDiscoveryId: string | undefined;
171
+ DiscoveryRegion: string | undefined;
172
+ Filters?: Filter[] | undefined;
173
+ NextToken?: string | undefined;
174
+ MaxResults?: number | undefined;
175
+ }
150
176
  export declare const IpamDiscoveryFailureCode: {
151
177
  readonly assume_role_failure: "assume-role-failure";
152
178
  readonly throttling_failure: "throttling-failure";
@@ -1940,27 +1966,6 @@ export interface ModifyVpcEndpointConnectionNotificationRequest {
1940
1966
  ConnectionNotificationArn?: string | undefined;
1941
1967
  ConnectionEvents?: string[] | undefined;
1942
1968
  }
1943
- export interface ModifyVpcEndpointConnectionNotificationResult {
1944
- ReturnValue?: boolean | undefined;
1945
- }
1946
- export interface ModifyVpcEndpointServiceConfigurationRequest {
1947
- DryRun?: boolean | undefined;
1948
- ServiceId: string | undefined;
1949
- PrivateDnsName?: string | undefined;
1950
- RemovePrivateDnsName?: boolean | undefined;
1951
- AcceptanceRequired?: boolean | undefined;
1952
- AddNetworkLoadBalancerArns?: string[] | undefined;
1953
- RemoveNetworkLoadBalancerArns?: string[] | undefined;
1954
- AddGatewayLoadBalancerArns?: string[] | undefined;
1955
- RemoveGatewayLoadBalancerArns?: string[] | undefined;
1956
- AddSupportedIpAddressTypes?: string[] | undefined;
1957
- RemoveSupportedIpAddressTypes?: string[] | undefined;
1958
- AddSupportedRegions?: string[] | undefined;
1959
- RemoveSupportedRegions?: string[] | undefined;
1960
- }
1961
- export interface ModifyVpcEndpointServiceConfigurationResult {
1962
- Return?: boolean | undefined;
1963
- }
1964
1969
  export declare const GetLaunchTemplateDataResultFilterSensitiveLog: (
1965
1970
  obj: GetLaunchTemplateDataResult
1966
1971
  ) => any;
@@ -92,6 +92,27 @@ import {
92
92
  } from "./models_5";
93
93
  import { CapacityManagerStatus, Purchase } from "./models_6";
94
94
  import { CapacityReservationSpecification } from "./models_7";
95
+ export interface ModifyVpcEndpointConnectionNotificationResult {
96
+ ReturnValue?: boolean | undefined;
97
+ }
98
+ export interface ModifyVpcEndpointServiceConfigurationRequest {
99
+ DryRun?: boolean | undefined;
100
+ ServiceId: string | undefined;
101
+ PrivateDnsName?: string | undefined;
102
+ RemovePrivateDnsName?: boolean | undefined;
103
+ AcceptanceRequired?: boolean | undefined;
104
+ AddNetworkLoadBalancerArns?: string[] | undefined;
105
+ RemoveNetworkLoadBalancerArns?: string[] | undefined;
106
+ AddGatewayLoadBalancerArns?: string[] | undefined;
107
+ RemoveGatewayLoadBalancerArns?: string[] | undefined;
108
+ AddSupportedIpAddressTypes?: string[] | undefined;
109
+ RemoveSupportedIpAddressTypes?: string[] | undefined;
110
+ AddSupportedRegions?: string[] | undefined;
111
+ RemoveSupportedRegions?: string[] | undefined;
112
+ }
113
+ export interface ModifyVpcEndpointServiceConfigurationResult {
114
+ Return?: boolean | undefined;
115
+ }
95
116
  export interface ModifyVpcEndpointServicePayerResponsibilityRequest {
96
117
  DryRun?: boolean | undefined;
97
118
  ServiceId: string | undefined;
@@ -1059,6 +1059,10 @@ import {
1059
1059
  DescribeCapacityReservationsCommandInput,
1060
1060
  DescribeCapacityReservationsCommandOutput,
1061
1061
  } from "../commands/DescribeCapacityReservationsCommand";
1062
+ import {
1063
+ DescribeCapacityReservationTopologyCommandInput,
1064
+ DescribeCapacityReservationTopologyCommandOutput,
1065
+ } from "../commands/DescribeCapacityReservationTopologyCommand";
1062
1066
  import {
1063
1067
  DescribeCarrierGatewaysCommandInput,
1064
1068
  DescribeCarrierGatewaysCommandOutput,
@@ -3875,6 +3879,10 @@ export declare const se_DescribeCapacityReservationsCommand: (
3875
3879
  input: DescribeCapacityReservationsCommandInput,
3876
3880
  context: __SerdeContext
3877
3881
  ) => Promise<__HttpRequest>;
3882
+ export declare const se_DescribeCapacityReservationTopologyCommand: (
3883
+ input: DescribeCapacityReservationTopologyCommandInput,
3884
+ context: __SerdeContext
3885
+ ) => Promise<__HttpRequest>;
3878
3886
  export declare const se_DescribeCarrierGatewaysCommand: (
3879
3887
  input: DescribeCarrierGatewaysCommandInput,
3880
3888
  context: __SerdeContext
@@ -6691,6 +6699,10 @@ export declare const de_DescribeCapacityReservationsCommand: (
6691
6699
  output: __HttpResponse,
6692
6700
  context: __SerdeContext
6693
6701
  ) => Promise<DescribeCapacityReservationsCommandOutput>;
6702
+ export declare const de_DescribeCapacityReservationTopologyCommand: (
6703
+ output: __HttpResponse,
6704
+ context: __SerdeContext
6705
+ ) => Promise<DescribeCapacityReservationTopologyCommandOutput>;
6694
6706
  export declare const de_DescribeCarrierGatewaysCommand: (
6695
6707
  output: __HttpResponse,
6696
6708
  context: __SerdeContext
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.918.0",
4
+ "version": "3.919.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",
@@ -21,10 +21,10 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.916.0",
24
- "@aws-sdk/credential-provider-node": "3.918.0",
24
+ "@aws-sdk/credential-provider-node": "3.919.0",
25
25
  "@aws-sdk/middleware-host-header": "3.914.0",
26
26
  "@aws-sdk/middleware-logger": "3.914.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.914.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.919.0",
28
28
  "@aws-sdk/middleware-sdk-ec2": "3.916.0",
29
29
  "@aws-sdk/middleware-user-agent": "3.916.0",
30
30
  "@aws-sdk/region-config-resolver": "3.914.0",