@aws-sdk/client-ec2 3.410.0 → 3.411.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 (52) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/EC2.js +6 -0
  3. package/dist-cjs/commands/DisableImageBlockPublicAccessCommand.js +46 -0
  4. package/dist-cjs/commands/EnableImageBlockPublicAccessCommand.js +46 -0
  5. package/dist-cjs/commands/GetImageBlockPublicAccessStateCommand.js +46 -0
  6. package/dist-cjs/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +2 -2
  7. package/dist-cjs/commands/RunInstancesCommand.js +2 -2
  8. package/dist-cjs/commands/index.js +3 -0
  9. package/dist-cjs/models/models_5.js +7 -6
  10. package/dist-cjs/models/models_6.js +6 -6
  11. package/dist-cjs/models/models_7.js +6 -1
  12. package/dist-cjs/protocols/Aws_ec2.js +176 -17
  13. package/dist-es/EC2.js +6 -0
  14. package/dist-es/commands/DisableImageBlockPublicAccessCommand.js +42 -0
  15. package/dist-es/commands/EnableImageBlockPublicAccessCommand.js +42 -0
  16. package/dist-es/commands/GetImageBlockPublicAccessStateCommand.js +42 -0
  17. package/dist-es/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +1 -1
  18. package/dist-es/commands/RunInstancesCommand.js +1 -1
  19. package/dist-es/commands/index.js +3 -0
  20. package/dist-es/models/models_5.js +6 -4
  21. package/dist-es/models/models_6.js +4 -4
  22. package/dist-es/models/models_7.js +4 -0
  23. package/dist-es/protocols/Aws_ec2.js +153 -0
  24. package/dist-types/EC2.d.ts +21 -0
  25. package/dist-types/EC2Client.d.ts +5 -2
  26. package/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +82 -0
  27. package/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +82 -0
  28. package/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +76 -0
  29. package/dist-types/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +1 -1
  30. package/dist-types/commands/GetVpnConnectionDeviceTypesCommand.d.ts +1 -1
  31. package/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +1 -1
  32. package/dist-types/commands/RunInstancesCommand.d.ts +1 -1
  33. package/dist-types/commands/index.d.ts +3 -0
  34. package/dist-types/models/models_5.d.ts +111 -204
  35. package/dist-types/models/models_6.d.ts +203 -585
  36. package/dist-types/models/models_7.d.ts +590 -4
  37. package/dist-types/protocols/Aws_ec2.d.ts +27 -0
  38. package/dist-types/ts3.4/EC2.d.ts +51 -0
  39. package/dist-types/ts3.4/EC2Client.d.ts +18 -0
  40. package/dist-types/ts3.4/commands/DisableImageBlockPublicAccessCommand.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/EnableImageBlockPublicAccessCommand.d.ts +42 -0
  42. package/dist-types/ts3.4/commands/GetImageBlockPublicAccessStateCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  48. package/dist-types/ts3.4/models/models_5.d.ts +32 -45
  49. package/dist-types/ts3.4/models/models_6.d.ts +45 -85
  50. package/dist-types/ts3.4/models/models_7.d.ts +109 -4
  51. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +36 -0
  52. package/package.json +1 -1
@@ -41,16 +41,13 @@ import {
41
41
  ClientConnectOptions,
42
42
  ClientLoginBannerOptions,
43
43
  ConnectionLogOptions,
44
- CreditSpecificationRequest,
45
44
  DiskImageFormat,
46
- ElasticGpuSpecification,
47
45
  FleetExcessCapacityTerminationPolicy,
48
46
  FleetLaunchTemplateConfigRequest,
49
47
  HostnameType,
50
48
  IcmpTypeCode,
51
49
  InstanceEventWindowTimeRangeRequest,
52
50
  InstanceInterruptionBehavior,
53
- InstanceIpv6Address,
54
51
  Ipam,
55
52
  IpamPool,
56
53
  IpamResourceDiscovery,
@@ -151,6 +148,48 @@ import {
151
148
  VerifiedAccessInstanceLoggingConfiguration,
152
149
  VolumeModification,
153
150
  } from "./models_5";
151
+ export interface GetVpnConnectionDeviceSampleConfigurationRequest {
152
+ VpnConnectionId: string | undefined;
153
+ VpnConnectionDeviceTypeId: string | undefined;
154
+ InternetKeyExchangeVersion?: string;
155
+ DryRun?: boolean;
156
+ }
157
+ export interface GetVpnConnectionDeviceSampleConfigurationResult {
158
+ VpnConnectionDeviceSampleConfiguration?: string;
159
+ }
160
+ export interface GetVpnConnectionDeviceTypesRequest {
161
+ MaxResults?: number;
162
+ NextToken?: string;
163
+ DryRun?: boolean;
164
+ }
165
+ export interface VpnConnectionDeviceType {
166
+ VpnConnectionDeviceTypeId?: string;
167
+ Vendor?: string;
168
+ Platform?: string;
169
+ Software?: string;
170
+ }
171
+ export interface GetVpnConnectionDeviceTypesResult {
172
+ VpnConnectionDeviceTypes?: VpnConnectionDeviceType[];
173
+ NextToken?: string;
174
+ }
175
+ export interface GetVpnTunnelReplacementStatusRequest {
176
+ VpnConnectionId: string | undefined;
177
+ VpnTunnelOutsideIpAddress: string | undefined;
178
+ DryRun?: boolean;
179
+ }
180
+ export interface MaintenanceDetails {
181
+ PendingMaintenance?: string;
182
+ MaintenanceAutoAppliedAfter?: Date;
183
+ LastMaintenanceApplied?: Date;
184
+ }
185
+ export interface GetVpnTunnelReplacementStatusResult {
186
+ VpnConnectionId?: string;
187
+ TransitGatewayId?: string;
188
+ CustomerGatewayId?: string;
189
+ VpnGatewayId?: string;
190
+ VpnTunnelOutsideIpAddress?: string;
191
+ MaintenanceDetails?: MaintenanceDetails;
192
+ }
154
193
  export interface ImportClientVpnClientCertificateRevocationListRequest {
155
194
  ClientVpnEndpointId: string | undefined;
156
195
  CertificateRevocationList: string | undefined;
@@ -1793,85 +1832,9 @@ export interface LaunchTemplateSpecification {
1793
1832
  export interface LicenseConfigurationRequest {
1794
1833
  LicenseConfigurationArn?: string;
1795
1834
  }
1796
- export interface InstanceMaintenanceOptionsRequest {
1797
- AutoRecovery?: InstanceAutoRecoveryState | string;
1798
- }
1799
- export interface InstanceMetadataOptionsRequest {
1800
- HttpTokens?: HttpTokensState | string;
1801
- HttpPutResponseHopLimit?: number;
1802
- HttpEndpoint?: InstanceMetadataEndpointState | string;
1803
- HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
1804
- InstanceMetadataTags?: InstanceMetadataTagsState | string;
1805
- }
1806
- export interface PrivateDnsNameOptionsRequest {
1807
- HostnameType?: HostnameType | string;
1808
- EnableResourceNameDnsARecord?: boolean;
1809
- EnableResourceNameDnsAAAARecord?: boolean;
1810
- }
1811
- export interface RunInstancesRequest {
1812
- BlockDeviceMappings?: BlockDeviceMapping[];
1813
- ImageId?: string;
1814
- InstanceType?: _InstanceType | string;
1815
- Ipv6AddressCount?: number;
1816
- Ipv6Addresses?: InstanceIpv6Address[];
1817
- KernelId?: string;
1818
- KeyName?: string;
1819
- MaxCount: number | undefined;
1820
- MinCount: number | undefined;
1821
- Monitoring?: RunInstancesMonitoringEnabled;
1822
- Placement?: Placement;
1823
- RamdiskId?: string;
1824
- SecurityGroupIds?: string[];
1825
- SecurityGroups?: string[];
1826
- SubnetId?: string;
1827
- UserData?: string;
1828
- AdditionalInfo?: string;
1829
- ClientToken?: string;
1830
- DisableApiTermination?: boolean;
1831
- DryRun?: boolean;
1832
- EbsOptimized?: boolean;
1833
- IamInstanceProfile?: IamInstanceProfileSpecification;
1834
- InstanceInitiatedShutdownBehavior?: ShutdownBehavior | string;
1835
- NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
1836
- PrivateIpAddress?: string;
1837
- ElasticGpuSpecification?: ElasticGpuSpecification[];
1838
- ElasticInferenceAccelerators?: ElasticInferenceAccelerator[];
1839
- TagSpecifications?: TagSpecification[];
1840
- LaunchTemplate?: LaunchTemplateSpecification;
1841
- InstanceMarketOptions?: InstanceMarketOptionsRequest;
1842
- CreditSpecification?: CreditSpecificationRequest;
1843
- CpuOptions?: CpuOptionsRequest;
1844
- CapacityReservationSpecification?: CapacityReservationSpecification;
1845
- HibernationOptions?: HibernationOptionsRequest;
1846
- LicenseSpecifications?: LicenseConfigurationRequest[];
1847
- MetadataOptions?: InstanceMetadataOptionsRequest;
1848
- EnclaveOptions?: EnclaveOptionsRequest;
1849
- PrivateDnsNameOptions?: PrivateDnsNameOptionsRequest;
1850
- MaintenanceOptions?: InstanceMaintenanceOptionsRequest;
1851
- DisableApiStop?: boolean;
1852
- EnablePrimaryIpv6?: boolean;
1853
- }
1854
- export interface ScheduledInstancesEbs {
1855
- DeleteOnTermination?: boolean;
1856
- Encrypted?: boolean;
1857
- Iops?: number;
1858
- SnapshotId?: string;
1859
- VolumeSize?: number;
1860
- VolumeType?: string;
1861
- }
1862
- export interface ScheduledInstancesBlockDeviceMapping {
1863
- DeviceName?: string;
1864
- Ebs?: ScheduledInstancesEbs;
1865
- NoDevice?: string;
1866
- VirtualName?: string;
1867
- }
1868
- export interface ScheduledInstancesIamInstanceProfile {
1869
- Arn?: string;
1870
- Name?: string;
1871
- }
1872
- export interface ScheduledInstancesMonitoring {
1873
- Enabled?: boolean;
1874
- }
1835
+ export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
1836
+ obj: GetVpnConnectionDeviceSampleConfigurationResult
1837
+ ) => any;
1875
1838
  export declare const ImageDiskContainerFilterSensitiveLog: (
1876
1839
  obj: ImageDiskContainer
1877
1840
  ) => any;
@@ -1949,6 +1912,3 @@ export declare const RequestSpotInstancesRequestFilterSensitiveLog: (
1949
1912
  export declare const RequestSpotInstancesResultFilterSensitiveLog: (
1950
1913
  obj: RequestSpotInstancesResult
1951
1914
  ) => any;
1952
- export declare const RunInstancesRequestFilterSensitiveLog: (
1953
- obj: RunInstancesRequest
1954
- ) => any;
@@ -1,24 +1,126 @@
1
1
  import {
2
+ _InstanceType,
2
3
  ByoipCidr,
4
+ IamInstanceProfileSpecification,
3
5
  IpPermission,
4
6
  NatGatewayAddress,
5
7
  TagSpecification,
6
8
  TransitGatewayAttachmentResourceType,
7
9
  } from "./models_0";
8
- import { LocalGatewayRoute } from "./models_1";
10
+ import {
11
+ BlockDeviceMapping,
12
+ CreditSpecificationRequest,
13
+ ElasticGpuSpecification,
14
+ HostnameType,
15
+ InstanceIpv6Address,
16
+ LocalGatewayRoute,
17
+ Placement,
18
+ ShutdownBehavior,
19
+ } from "./models_1";
9
20
  import { TransitGatewayRoute } from "./models_2";
10
21
  import { ClientVpnConnectionStatus, Filter } from "./models_3";
11
22
  import {
23
+ HttpTokensState,
24
+ InstanceAutoRecoveryState,
25
+ InstanceMetadataEndpointState,
26
+ InstanceMetadataProtocolState,
27
+ InstanceMetadataTagsState,
28
+ InstanceNetworkInterfaceSpecification,
12
29
  InstanceState,
13
30
  NetworkInsightsAccessScopeAnalysis,
14
31
  NetworkInsightsAnalysis,
32
+ RunInstancesMonitoringEnabled,
15
33
  } from "./models_4";
16
34
  import {
35
+ CapacityReservationSpecification,
36
+ CpuOptionsRequest,
37
+ ElasticInferenceAccelerator,
38
+ EnclaveOptionsRequest,
39
+ HibernationOptionsRequest,
40
+ InstanceMarketOptionsRequest,
17
41
  InstanceMonitoring,
18
- ScheduledInstancesBlockDeviceMapping,
19
- ScheduledInstancesIamInstanceProfile,
20
- ScheduledInstancesMonitoring,
42
+ LaunchTemplateSpecification,
43
+ LicenseConfigurationRequest,
21
44
  } from "./models_6";
45
+ export interface InstanceMaintenanceOptionsRequest {
46
+ AutoRecovery?: InstanceAutoRecoveryState | string;
47
+ }
48
+ export interface InstanceMetadataOptionsRequest {
49
+ HttpTokens?: HttpTokensState | string;
50
+ HttpPutResponseHopLimit?: number;
51
+ HttpEndpoint?: InstanceMetadataEndpointState | string;
52
+ HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
53
+ InstanceMetadataTags?: InstanceMetadataTagsState | string;
54
+ }
55
+ export interface PrivateDnsNameOptionsRequest {
56
+ HostnameType?: HostnameType | string;
57
+ EnableResourceNameDnsARecord?: boolean;
58
+ EnableResourceNameDnsAAAARecord?: boolean;
59
+ }
60
+ export interface RunInstancesRequest {
61
+ BlockDeviceMappings?: BlockDeviceMapping[];
62
+ ImageId?: string;
63
+ InstanceType?: _InstanceType | string;
64
+ Ipv6AddressCount?: number;
65
+ Ipv6Addresses?: InstanceIpv6Address[];
66
+ KernelId?: string;
67
+ KeyName?: string;
68
+ MaxCount: number | undefined;
69
+ MinCount: number | undefined;
70
+ Monitoring?: RunInstancesMonitoringEnabled;
71
+ Placement?: Placement;
72
+ RamdiskId?: string;
73
+ SecurityGroupIds?: string[];
74
+ SecurityGroups?: string[];
75
+ SubnetId?: string;
76
+ UserData?: string;
77
+ AdditionalInfo?: string;
78
+ ClientToken?: string;
79
+ DisableApiTermination?: boolean;
80
+ DryRun?: boolean;
81
+ EbsOptimized?: boolean;
82
+ IamInstanceProfile?: IamInstanceProfileSpecification;
83
+ InstanceInitiatedShutdownBehavior?: ShutdownBehavior | string;
84
+ NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
85
+ PrivateIpAddress?: string;
86
+ ElasticGpuSpecification?: ElasticGpuSpecification[];
87
+ ElasticInferenceAccelerators?: ElasticInferenceAccelerator[];
88
+ TagSpecifications?: TagSpecification[];
89
+ LaunchTemplate?: LaunchTemplateSpecification;
90
+ InstanceMarketOptions?: InstanceMarketOptionsRequest;
91
+ CreditSpecification?: CreditSpecificationRequest;
92
+ CpuOptions?: CpuOptionsRequest;
93
+ CapacityReservationSpecification?: CapacityReservationSpecification;
94
+ HibernationOptions?: HibernationOptionsRequest;
95
+ LicenseSpecifications?: LicenseConfigurationRequest[];
96
+ MetadataOptions?: InstanceMetadataOptionsRequest;
97
+ EnclaveOptions?: EnclaveOptionsRequest;
98
+ PrivateDnsNameOptions?: PrivateDnsNameOptionsRequest;
99
+ MaintenanceOptions?: InstanceMaintenanceOptionsRequest;
100
+ DisableApiStop?: boolean;
101
+ EnablePrimaryIpv6?: boolean;
102
+ }
103
+ export interface ScheduledInstancesEbs {
104
+ DeleteOnTermination?: boolean;
105
+ Encrypted?: boolean;
106
+ Iops?: number;
107
+ SnapshotId?: string;
108
+ VolumeSize?: number;
109
+ VolumeType?: string;
110
+ }
111
+ export interface ScheduledInstancesBlockDeviceMapping {
112
+ DeviceName?: string;
113
+ Ebs?: ScheduledInstancesEbs;
114
+ NoDevice?: string;
115
+ VirtualName?: string;
116
+ }
117
+ export interface ScheduledInstancesIamInstanceProfile {
118
+ Arn?: string;
119
+ Name?: string;
120
+ }
121
+ export interface ScheduledInstancesMonitoring {
122
+ Enabled?: boolean;
123
+ }
22
124
  export interface ScheduledInstancesIpv6Address {
23
125
  Ipv6Address?: string;
24
126
  }
@@ -260,6 +362,9 @@ export interface WithdrawByoipCidrRequest {
260
362
  export interface WithdrawByoipCidrResult {
261
363
  ByoipCidr?: ByoipCidr;
262
364
  }
365
+ export declare const RunInstancesRequestFilterSensitiveLog: (
366
+ obj: RunInstancesRequest
367
+ ) => any;
263
368
  export declare const ScheduledInstancesLaunchSpecificationFilterSensitiveLog: (
264
369
  obj: ScheduledInstancesLaunchSpecification
265
370
  ) => any;
@@ -1495,6 +1495,10 @@ import {
1495
1495
  DisableFastSnapshotRestoresCommandInput,
1496
1496
  DisableFastSnapshotRestoresCommandOutput,
1497
1497
  } from "../commands/DisableFastSnapshotRestoresCommand";
1498
+ import {
1499
+ DisableImageBlockPublicAccessCommandInput,
1500
+ DisableImageBlockPublicAccessCommandOutput,
1501
+ } from "../commands/DisableImageBlockPublicAccessCommand";
1498
1502
  import {
1499
1503
  DisableImageDeprecationCommandInput,
1500
1504
  DisableImageDeprecationCommandOutput,
@@ -1599,6 +1603,10 @@ import {
1599
1603
  EnableFastSnapshotRestoresCommandInput,
1600
1604
  EnableFastSnapshotRestoresCommandOutput,
1601
1605
  } from "../commands/EnableFastSnapshotRestoresCommand";
1606
+ import {
1607
+ EnableImageBlockPublicAccessCommandInput,
1608
+ EnableImageBlockPublicAccessCommandOutput,
1609
+ } from "../commands/EnableImageBlockPublicAccessCommand";
1602
1610
  import {
1603
1611
  EnableImageDeprecationCommandInput,
1604
1612
  EnableImageDeprecationCommandOutput,
@@ -1703,6 +1711,10 @@ import {
1703
1711
  GetHostReservationPurchasePreviewCommandInput,
1704
1712
  GetHostReservationPurchasePreviewCommandOutput,
1705
1713
  } from "../commands/GetHostReservationPurchasePreviewCommand";
1714
+ import {
1715
+ GetImageBlockPublicAccessStateCommandInput,
1716
+ GetImageBlockPublicAccessStateCommandOutput,
1717
+ } from "../commands/GetImageBlockPublicAccessStateCommand";
1706
1718
  import {
1707
1719
  GetInstanceTypesFromInstanceRequirementsCommandInput,
1708
1720
  GetInstanceTypesFromInstanceRequirementsCommandOutput,
@@ -3871,6 +3883,10 @@ export declare const se_DisableFastSnapshotRestoresCommand: (
3871
3883
  input: DisableFastSnapshotRestoresCommandInput,
3872
3884
  context: __SerdeContext
3873
3885
  ) => Promise<__HttpRequest>;
3886
+ export declare const se_DisableImageBlockPublicAccessCommand: (
3887
+ input: DisableImageBlockPublicAccessCommandInput,
3888
+ context: __SerdeContext
3889
+ ) => Promise<__HttpRequest>;
3874
3890
  export declare const se_DisableImageDeprecationCommand: (
3875
3891
  input: DisableImageDeprecationCommandInput,
3876
3892
  context: __SerdeContext
@@ -3975,6 +3991,10 @@ export declare const se_EnableFastSnapshotRestoresCommand: (
3975
3991
  input: EnableFastSnapshotRestoresCommandInput,
3976
3992
  context: __SerdeContext
3977
3993
  ) => Promise<__HttpRequest>;
3994
+ export declare const se_EnableImageBlockPublicAccessCommand: (
3995
+ input: EnableImageBlockPublicAccessCommandInput,
3996
+ context: __SerdeContext
3997
+ ) => Promise<__HttpRequest>;
3978
3998
  export declare const se_EnableImageDeprecationCommand: (
3979
3999
  input: EnableImageDeprecationCommandInput,
3980
4000
  context: __SerdeContext
@@ -4079,6 +4099,10 @@ export declare const se_GetHostReservationPurchasePreviewCommand: (
4079
4099
  input: GetHostReservationPurchasePreviewCommandInput,
4080
4100
  context: __SerdeContext
4081
4101
  ) => Promise<__HttpRequest>;
4102
+ export declare const se_GetImageBlockPublicAccessStateCommand: (
4103
+ input: GetImageBlockPublicAccessStateCommandInput,
4104
+ context: __SerdeContext
4105
+ ) => Promise<__HttpRequest>;
4082
4106
  export declare const se_GetInstanceTypesFromInstanceRequirementsCommand: (
4083
4107
  input: GetInstanceTypesFromInstanceRequirementsCommandInput,
4084
4108
  context: __SerdeContext
@@ -6247,6 +6271,10 @@ export declare const de_DisableFastSnapshotRestoresCommand: (
6247
6271
  output: __HttpResponse,
6248
6272
  context: __SerdeContext
6249
6273
  ) => Promise<DisableFastSnapshotRestoresCommandOutput>;
6274
+ export declare const de_DisableImageBlockPublicAccessCommand: (
6275
+ output: __HttpResponse,
6276
+ context: __SerdeContext
6277
+ ) => Promise<DisableImageBlockPublicAccessCommandOutput>;
6250
6278
  export declare const de_DisableImageDeprecationCommand: (
6251
6279
  output: __HttpResponse,
6252
6280
  context: __SerdeContext
@@ -6351,6 +6379,10 @@ export declare const de_EnableFastSnapshotRestoresCommand: (
6351
6379
  output: __HttpResponse,
6352
6380
  context: __SerdeContext
6353
6381
  ) => Promise<EnableFastSnapshotRestoresCommandOutput>;
6382
+ export declare const de_EnableImageBlockPublicAccessCommand: (
6383
+ output: __HttpResponse,
6384
+ context: __SerdeContext
6385
+ ) => Promise<EnableImageBlockPublicAccessCommandOutput>;
6354
6386
  export declare const de_EnableImageDeprecationCommand: (
6355
6387
  output: __HttpResponse,
6356
6388
  context: __SerdeContext
@@ -6455,6 +6487,10 @@ export declare const de_GetHostReservationPurchasePreviewCommand: (
6455
6487
  output: __HttpResponse,
6456
6488
  context: __SerdeContext
6457
6489
  ) => Promise<GetHostReservationPurchasePreviewCommandOutput>;
6490
+ export declare const de_GetImageBlockPublicAccessStateCommand: (
6491
+ output: __HttpResponse,
6492
+ context: __SerdeContext
6493
+ ) => Promise<GetImageBlockPublicAccessStateCommandOutput>;
6458
6494
  export declare const de_GetInstanceTypesFromInstanceRequirementsCommand: (
6459
6495
  output: __HttpResponse,
6460
6496
  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.410.0",
4
+ "version": "3.411.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",