@aws-sdk/client-ec2 3.47.2 → 3.48.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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/EC2.js +45 -0
- package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
- package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
- package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
- package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
- package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +14 -7
- package/dist-cjs/models/models_1.js +11 -6
- package/dist-cjs/models/models_2.js +7 -13
- package/dist-cjs/models/models_3.js +61 -53
- package/dist-cjs/models/models_4.js +89 -101
- package/dist-cjs/models/models_5.js +101 -96
- package/dist-cjs/models/models_6.js +92 -2
- package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +501 -17
- package/dist-es/EC2.js +45 -0
- package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
- package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
- package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
- package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
- package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
- package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
- package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
- package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -5
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/models/models_2.js +4 -8
- package/dist-es/models/models_3.js +41 -33
- package/dist-es/models/models_4.js +57 -75
- package/dist-es/models/models_5.js +75 -60
- package/dist-es/models/models_6.js +60 -0
- package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +1498 -991
- package/dist-types/EC2.d.ts +28 -0
- package/dist-types/EC2Client.d.ts +5 -2
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +37 -0
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +40 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +25 -11
- package/dist-types/models/models_1.d.ts +11 -8
- package/dist-types/models/models_2.d.ts +18 -71
- package/dist-types/models/models_3.d.ts +240 -298
- package/dist-types/models/models_4.d.ts +500 -334
- package/dist-types/models/models_5.d.ts +334 -420
- package/dist-types/models/models_6.d.ts +413 -3
- package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +15 -0
- package/dist-types/ts3.4/EC2Client.d.ts +5 -2
- package/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -2
- package/dist-types/ts3.4/models/models_2.d.ts +12 -37
- package/dist-types/ts3.4/models/models_3.d.ts +122 -122
- package/dist-types/ts3.4/models/models_4.d.ts +224 -194
- package/dist-types/ts3.4/models/models_5.d.ts +196 -219
- package/dist-types/ts3.4/models/models_6.d.ts +218 -3
- package/dist-types/ts3.4/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +9 -0
- package/package.json +3 -3
|
@@ -1,8 +1,198 @@
|
|
|
1
|
-
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions,
|
|
2
|
-
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior,
|
|
1
|
+
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions, ClientLoginBannerOptions, ConnectionLogOptions, CurrencyCodeValues, DnsSupportValue, EndDateType, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, Ipv6SupportValue, PortRange, RouteTableAssociationState, SelfServicePortal, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem } from "./models_0";
|
|
2
|
+
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior, SpotInstanceType, SubnetCidrReservation, TargetCapacitySpecificationRequest, TargetCapacityUnitType, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, VolumeType, VpnEcmpSupportValue } from "./models_1";
|
|
3
3
|
import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
|
|
4
|
-
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange,
|
|
5
|
-
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification,
|
|
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
|
+
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification, LaunchTemplateConfig, Purchase, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification } from "./models_4";
|
|
6
|
+
|
|
7
|
+
export interface InstanceTypeInfoFromInstanceRequirements {
|
|
8
|
+
|
|
9
|
+
InstanceType?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare namespace InstanceTypeInfoFromInstanceRequirements {
|
|
12
|
+
|
|
13
|
+
const filterSensitiveLog: (obj: InstanceTypeInfoFromInstanceRequirements) => any;
|
|
14
|
+
}
|
|
15
|
+
export interface GetInstanceTypesFromInstanceRequirementsResult {
|
|
16
|
+
|
|
17
|
+
InstanceTypes?: InstanceTypeInfoFromInstanceRequirements[];
|
|
18
|
+
|
|
19
|
+
NextToken?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace GetInstanceTypesFromInstanceRequirementsResult {
|
|
22
|
+
|
|
23
|
+
const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsResult) => any;
|
|
24
|
+
}
|
|
25
|
+
export interface GetIpamAddressHistoryRequest {
|
|
26
|
+
|
|
27
|
+
DryRun?: boolean;
|
|
28
|
+
|
|
29
|
+
Cidr: string | undefined;
|
|
30
|
+
|
|
31
|
+
IpamScopeId: string | undefined;
|
|
32
|
+
|
|
33
|
+
VpcId?: string;
|
|
34
|
+
|
|
35
|
+
StartTime?: Date;
|
|
36
|
+
|
|
37
|
+
EndTime?: Date;
|
|
38
|
+
|
|
39
|
+
MaxResults?: number;
|
|
40
|
+
|
|
41
|
+
NextToken?: string;
|
|
42
|
+
}
|
|
43
|
+
export declare namespace GetIpamAddressHistoryRequest {
|
|
44
|
+
|
|
45
|
+
const filterSensitiveLog: (obj: GetIpamAddressHistoryRequest) => any;
|
|
46
|
+
}
|
|
47
|
+
export declare enum IpamComplianceStatus {
|
|
48
|
+
compliant = "compliant",
|
|
49
|
+
ignored = "ignored",
|
|
50
|
+
noncompliant = "noncompliant",
|
|
51
|
+
unmanaged = "unmanaged"
|
|
52
|
+
}
|
|
53
|
+
export declare enum IpamOverlapStatus {
|
|
54
|
+
ignored = "ignored",
|
|
55
|
+
nonoverlapping = "nonoverlapping",
|
|
56
|
+
overlapping = "overlapping"
|
|
57
|
+
}
|
|
58
|
+
export declare enum IpamAddressHistoryResourceType {
|
|
59
|
+
eip = "eip",
|
|
60
|
+
instance = "instance",
|
|
61
|
+
network_interface = "network-interface",
|
|
62
|
+
subnet = "subnet",
|
|
63
|
+
vpc = "vpc"
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export interface IpamAddressHistoryRecord {
|
|
67
|
+
|
|
68
|
+
ResourceOwnerId?: string;
|
|
69
|
+
|
|
70
|
+
ResourceRegion?: string;
|
|
71
|
+
|
|
72
|
+
ResourceType?: IpamAddressHistoryResourceType | string;
|
|
73
|
+
|
|
74
|
+
ResourceId?: string;
|
|
75
|
+
|
|
76
|
+
ResourceCidr?: string;
|
|
77
|
+
|
|
78
|
+
ResourceName?: string;
|
|
79
|
+
|
|
80
|
+
ResourceComplianceStatus?: IpamComplianceStatus | string;
|
|
81
|
+
|
|
82
|
+
ResourceOverlapStatus?: IpamOverlapStatus | string;
|
|
83
|
+
|
|
84
|
+
VpcId?: string;
|
|
85
|
+
|
|
86
|
+
SampledStartTime?: Date;
|
|
87
|
+
|
|
88
|
+
SampledEndTime?: Date;
|
|
89
|
+
}
|
|
90
|
+
export declare namespace IpamAddressHistoryRecord {
|
|
91
|
+
|
|
92
|
+
const filterSensitiveLog: (obj: IpamAddressHistoryRecord) => any;
|
|
93
|
+
}
|
|
94
|
+
export interface GetIpamAddressHistoryResult {
|
|
95
|
+
|
|
96
|
+
HistoryRecords?: IpamAddressHistoryRecord[];
|
|
97
|
+
|
|
98
|
+
NextToken?: string;
|
|
99
|
+
}
|
|
100
|
+
export declare namespace GetIpamAddressHistoryResult {
|
|
101
|
+
|
|
102
|
+
const filterSensitiveLog: (obj: GetIpamAddressHistoryResult) => any;
|
|
103
|
+
}
|
|
104
|
+
export interface GetIpamPoolAllocationsRequest {
|
|
105
|
+
|
|
106
|
+
DryRun?: boolean;
|
|
107
|
+
|
|
108
|
+
IpamPoolId: string | undefined;
|
|
109
|
+
|
|
110
|
+
IpamPoolAllocationId?: string;
|
|
111
|
+
|
|
112
|
+
Filters?: Filter[];
|
|
113
|
+
|
|
114
|
+
MaxResults?: number;
|
|
115
|
+
|
|
116
|
+
NextToken?: string;
|
|
117
|
+
}
|
|
118
|
+
export declare namespace GetIpamPoolAllocationsRequest {
|
|
119
|
+
|
|
120
|
+
const filterSensitiveLog: (obj: GetIpamPoolAllocationsRequest) => any;
|
|
121
|
+
}
|
|
122
|
+
export interface GetIpamPoolAllocationsResult {
|
|
123
|
+
|
|
124
|
+
IpamPoolAllocations?: IpamPoolAllocation[];
|
|
125
|
+
|
|
126
|
+
NextToken?: string;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace GetIpamPoolAllocationsResult {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: GetIpamPoolAllocationsResult) => any;
|
|
131
|
+
}
|
|
132
|
+
export interface GetIpamPoolCidrsRequest {
|
|
133
|
+
|
|
134
|
+
DryRun?: boolean;
|
|
135
|
+
|
|
136
|
+
IpamPoolId: string | undefined;
|
|
137
|
+
|
|
138
|
+
Filters?: Filter[];
|
|
139
|
+
|
|
140
|
+
MaxResults?: number;
|
|
141
|
+
|
|
142
|
+
NextToken?: string;
|
|
143
|
+
}
|
|
144
|
+
export declare namespace GetIpamPoolCidrsRequest {
|
|
145
|
+
|
|
146
|
+
const filterSensitiveLog: (obj: GetIpamPoolCidrsRequest) => any;
|
|
147
|
+
}
|
|
148
|
+
export interface GetIpamPoolCidrsResult {
|
|
149
|
+
|
|
150
|
+
IpamPoolCidrs?: IpamPoolCidr[];
|
|
151
|
+
|
|
152
|
+
NextToken?: string;
|
|
153
|
+
}
|
|
154
|
+
export declare namespace GetIpamPoolCidrsResult {
|
|
155
|
+
|
|
156
|
+
const filterSensitiveLog: (obj: GetIpamPoolCidrsResult) => any;
|
|
157
|
+
}
|
|
158
|
+
export declare enum IpamResourceType {
|
|
159
|
+
eip = "eip",
|
|
160
|
+
ipv6_pool = "ipv6-pool",
|
|
161
|
+
public_ipv4_pool = "public-ipv4-pool",
|
|
162
|
+
subnet = "subnet",
|
|
163
|
+
vpc = "vpc"
|
|
164
|
+
}
|
|
165
|
+
export interface GetIpamResourceCidrsRequest {
|
|
166
|
+
|
|
167
|
+
DryRun?: boolean;
|
|
168
|
+
|
|
169
|
+
Filters?: Filter[];
|
|
170
|
+
|
|
171
|
+
MaxResults?: number;
|
|
172
|
+
|
|
173
|
+
NextToken?: string;
|
|
174
|
+
|
|
175
|
+
IpamScopeId: string | undefined;
|
|
176
|
+
|
|
177
|
+
IpamPoolId?: string;
|
|
178
|
+
|
|
179
|
+
ResourceId?: string;
|
|
180
|
+
|
|
181
|
+
ResourceType?: IpamResourceType | string;
|
|
182
|
+
|
|
183
|
+
ResourceTag?: RequestIpamResourceTag;
|
|
184
|
+
|
|
185
|
+
ResourceOwner?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace GetIpamResourceCidrsRequest {
|
|
188
|
+
|
|
189
|
+
const filterSensitiveLog: (obj: GetIpamResourceCidrsRequest) => any;
|
|
190
|
+
}
|
|
191
|
+
export declare enum IpamManagementState {
|
|
192
|
+
ignored = "ignored",
|
|
193
|
+
managed = "managed",
|
|
194
|
+
unmanaged = "unmanaged"
|
|
195
|
+
}
|
|
6
196
|
|
|
7
197
|
export interface IpamResourceCidr {
|
|
8
198
|
|
|
@@ -1165,6 +1355,8 @@ export interface ModifyClientVpnEndpointRequest {
|
|
|
1165
1355
|
SelfServicePortal?: SelfServicePortal | string;
|
|
1166
1356
|
|
|
1167
1357
|
ClientConnectOptions?: ClientConnectOptions;
|
|
1358
|
+
SessionTimeoutHours?: number;
|
|
1359
|
+
ClientLoginBannerOptions?: ClientLoginBannerOptions;
|
|
1168
1360
|
}
|
|
1169
1361
|
export declare namespace ModifyClientVpnEndpointRequest {
|
|
1170
1362
|
|
|
@@ -3637,218 +3829,3 @@ export declare namespace ResetSnapshotAttributeRequest {
|
|
|
3637
3829
|
|
|
3638
3830
|
const filterSensitiveLog: (obj: ResetSnapshotAttributeRequest) => any;
|
|
3639
3831
|
}
|
|
3640
|
-
export interface RestoreAddressToClassicRequest {
|
|
3641
|
-
|
|
3642
|
-
DryRun?: boolean;
|
|
3643
|
-
|
|
3644
|
-
PublicIp: string | undefined;
|
|
3645
|
-
}
|
|
3646
|
-
export declare namespace RestoreAddressToClassicRequest {
|
|
3647
|
-
|
|
3648
|
-
const filterSensitiveLog: (obj: RestoreAddressToClassicRequest) => any;
|
|
3649
|
-
}
|
|
3650
|
-
export interface RestoreAddressToClassicResult {
|
|
3651
|
-
|
|
3652
|
-
PublicIp?: string;
|
|
3653
|
-
|
|
3654
|
-
Status?: Status | string;
|
|
3655
|
-
}
|
|
3656
|
-
export declare namespace RestoreAddressToClassicResult {
|
|
3657
|
-
|
|
3658
|
-
const filterSensitiveLog: (obj: RestoreAddressToClassicResult) => any;
|
|
3659
|
-
}
|
|
3660
|
-
export interface RestoreManagedPrefixListVersionRequest {
|
|
3661
|
-
|
|
3662
|
-
DryRun?: boolean;
|
|
3663
|
-
|
|
3664
|
-
PrefixListId: string | undefined;
|
|
3665
|
-
|
|
3666
|
-
PreviousVersion: number | undefined;
|
|
3667
|
-
|
|
3668
|
-
CurrentVersion: number | undefined;
|
|
3669
|
-
}
|
|
3670
|
-
export declare namespace RestoreManagedPrefixListVersionRequest {
|
|
3671
|
-
|
|
3672
|
-
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionRequest) => any;
|
|
3673
|
-
}
|
|
3674
|
-
export interface RestoreManagedPrefixListVersionResult {
|
|
3675
|
-
|
|
3676
|
-
PrefixList?: ManagedPrefixList;
|
|
3677
|
-
}
|
|
3678
|
-
export declare namespace RestoreManagedPrefixListVersionResult {
|
|
3679
|
-
|
|
3680
|
-
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionResult) => any;
|
|
3681
|
-
}
|
|
3682
|
-
export interface RestoreSnapshotFromRecycleBinRequest {
|
|
3683
|
-
|
|
3684
|
-
SnapshotId: string | undefined;
|
|
3685
|
-
|
|
3686
|
-
DryRun?: boolean;
|
|
3687
|
-
}
|
|
3688
|
-
export declare namespace RestoreSnapshotFromRecycleBinRequest {
|
|
3689
|
-
|
|
3690
|
-
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinRequest) => any;
|
|
3691
|
-
}
|
|
3692
|
-
export interface RestoreSnapshotFromRecycleBinResult {
|
|
3693
|
-
|
|
3694
|
-
SnapshotId?: string;
|
|
3695
|
-
|
|
3696
|
-
OutpostArn?: string;
|
|
3697
|
-
|
|
3698
|
-
Description?: string;
|
|
3699
|
-
|
|
3700
|
-
Encrypted?: boolean;
|
|
3701
|
-
|
|
3702
|
-
OwnerId?: string;
|
|
3703
|
-
|
|
3704
|
-
Progress?: string;
|
|
3705
|
-
|
|
3706
|
-
StartTime?: Date;
|
|
3707
|
-
|
|
3708
|
-
State?: SnapshotState | string;
|
|
3709
|
-
|
|
3710
|
-
VolumeId?: string;
|
|
3711
|
-
|
|
3712
|
-
VolumeSize?: number;
|
|
3713
|
-
}
|
|
3714
|
-
export declare namespace RestoreSnapshotFromRecycleBinResult {
|
|
3715
|
-
|
|
3716
|
-
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinResult) => any;
|
|
3717
|
-
}
|
|
3718
|
-
export interface RestoreSnapshotTierRequest {
|
|
3719
|
-
|
|
3720
|
-
SnapshotId: string | undefined;
|
|
3721
|
-
|
|
3722
|
-
TemporaryRestoreDays?: number;
|
|
3723
|
-
|
|
3724
|
-
PermanentRestore?: boolean;
|
|
3725
|
-
|
|
3726
|
-
DryRun?: boolean;
|
|
3727
|
-
}
|
|
3728
|
-
export declare namespace RestoreSnapshotTierRequest {
|
|
3729
|
-
|
|
3730
|
-
const filterSensitiveLog: (obj: RestoreSnapshotTierRequest) => any;
|
|
3731
|
-
}
|
|
3732
|
-
export interface RestoreSnapshotTierResult {
|
|
3733
|
-
|
|
3734
|
-
SnapshotId?: string;
|
|
3735
|
-
|
|
3736
|
-
RestoreStartTime?: Date;
|
|
3737
|
-
|
|
3738
|
-
RestoreDuration?: number;
|
|
3739
|
-
|
|
3740
|
-
IsPermanentRestore?: boolean;
|
|
3741
|
-
}
|
|
3742
|
-
export declare namespace RestoreSnapshotTierResult {
|
|
3743
|
-
|
|
3744
|
-
const filterSensitiveLog: (obj: RestoreSnapshotTierResult) => any;
|
|
3745
|
-
}
|
|
3746
|
-
export interface RevokeClientVpnIngressRequest {
|
|
3747
|
-
|
|
3748
|
-
ClientVpnEndpointId: string | undefined;
|
|
3749
|
-
|
|
3750
|
-
TargetNetworkCidr: string | undefined;
|
|
3751
|
-
|
|
3752
|
-
AccessGroupId?: string;
|
|
3753
|
-
|
|
3754
|
-
RevokeAllGroups?: boolean;
|
|
3755
|
-
|
|
3756
|
-
DryRun?: boolean;
|
|
3757
|
-
}
|
|
3758
|
-
export declare namespace RevokeClientVpnIngressRequest {
|
|
3759
|
-
|
|
3760
|
-
const filterSensitiveLog: (obj: RevokeClientVpnIngressRequest) => any;
|
|
3761
|
-
}
|
|
3762
|
-
export interface RevokeClientVpnIngressResult {
|
|
3763
|
-
|
|
3764
|
-
Status?: ClientVpnAuthorizationRuleStatus;
|
|
3765
|
-
}
|
|
3766
|
-
export declare namespace RevokeClientVpnIngressResult {
|
|
3767
|
-
|
|
3768
|
-
const filterSensitiveLog: (obj: RevokeClientVpnIngressResult) => any;
|
|
3769
|
-
}
|
|
3770
|
-
export interface RevokeSecurityGroupEgressRequest {
|
|
3771
|
-
|
|
3772
|
-
DryRun?: boolean;
|
|
3773
|
-
|
|
3774
|
-
GroupId: string | undefined;
|
|
3775
|
-
|
|
3776
|
-
IpPermissions?: IpPermission[];
|
|
3777
|
-
|
|
3778
|
-
SecurityGroupRuleIds?: string[];
|
|
3779
|
-
|
|
3780
|
-
CidrIp?: string;
|
|
3781
|
-
|
|
3782
|
-
FromPort?: number;
|
|
3783
|
-
|
|
3784
|
-
IpProtocol?: string;
|
|
3785
|
-
|
|
3786
|
-
ToPort?: number;
|
|
3787
|
-
|
|
3788
|
-
SourceSecurityGroupName?: string;
|
|
3789
|
-
|
|
3790
|
-
SourceSecurityGroupOwnerId?: string;
|
|
3791
|
-
}
|
|
3792
|
-
export declare namespace RevokeSecurityGroupEgressRequest {
|
|
3793
|
-
|
|
3794
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressRequest) => any;
|
|
3795
|
-
}
|
|
3796
|
-
export interface RevokeSecurityGroupEgressResult {
|
|
3797
|
-
|
|
3798
|
-
Return?: boolean;
|
|
3799
|
-
|
|
3800
|
-
UnknownIpPermissions?: IpPermission[];
|
|
3801
|
-
}
|
|
3802
|
-
export declare namespace RevokeSecurityGroupEgressResult {
|
|
3803
|
-
|
|
3804
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressResult) => any;
|
|
3805
|
-
}
|
|
3806
|
-
export interface RevokeSecurityGroupIngressRequest {
|
|
3807
|
-
|
|
3808
|
-
CidrIp?: string;
|
|
3809
|
-
|
|
3810
|
-
FromPort?: number;
|
|
3811
|
-
|
|
3812
|
-
GroupId?: string;
|
|
3813
|
-
|
|
3814
|
-
GroupName?: string;
|
|
3815
|
-
|
|
3816
|
-
IpPermissions?: IpPermission[];
|
|
3817
|
-
|
|
3818
|
-
IpProtocol?: string;
|
|
3819
|
-
|
|
3820
|
-
SourceSecurityGroupName?: string;
|
|
3821
|
-
|
|
3822
|
-
SourceSecurityGroupOwnerId?: string;
|
|
3823
|
-
|
|
3824
|
-
ToPort?: number;
|
|
3825
|
-
|
|
3826
|
-
DryRun?: boolean;
|
|
3827
|
-
|
|
3828
|
-
SecurityGroupRuleIds?: string[];
|
|
3829
|
-
}
|
|
3830
|
-
export declare namespace RevokeSecurityGroupIngressRequest {
|
|
3831
|
-
|
|
3832
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressRequest) => any;
|
|
3833
|
-
}
|
|
3834
|
-
export interface RevokeSecurityGroupIngressResult {
|
|
3835
|
-
|
|
3836
|
-
Return?: boolean;
|
|
3837
|
-
|
|
3838
|
-
UnknownIpPermissions?: IpPermission[];
|
|
3839
|
-
}
|
|
3840
|
-
export declare namespace RevokeSecurityGroupIngressResult {
|
|
3841
|
-
|
|
3842
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressResult) => any;
|
|
3843
|
-
}
|
|
3844
|
-
|
|
3845
|
-
export interface CpuOptionsRequest {
|
|
3846
|
-
|
|
3847
|
-
CoreCount?: number;
|
|
3848
|
-
|
|
3849
|
-
ThreadsPerCore?: number;
|
|
3850
|
-
}
|
|
3851
|
-
export declare namespace CpuOptionsRequest {
|
|
3852
|
-
|
|
3853
|
-
const filterSensitiveLog: (obj: CpuOptionsRequest) => any;
|
|
3854
|
-
}
|
|
@@ -1,9 +1,224 @@
|
|
|
1
|
-
import { _InstanceType, ByoipCidr, HostnameType, IamInstanceProfileSpecification, IpPermission, TagSpecification, TransitGatewayAttachmentResourceType } from "./models_0";
|
|
2
|
-
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, MarketType, Placement, ShutdownBehavior, SpotInstanceType } from "./models_1";
|
|
1
|
+
import { _InstanceType, ByoipCidr, ClientVpnAuthorizationRuleStatus, HostnameType, IamInstanceProfileSpecification, IpPermission, TagSpecification, TransitGatewayAttachmentResourceType } from "./models_0";
|
|
2
|
+
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, ManagedPrefixList, MarketType, Placement, ShutdownBehavior, SnapshotState, SpotInstanceType } from "./models_1";
|
|
3
3
|
import { ClientVpnConnectionStatus, Filter, TransitGatewayRoute } from "./models_2";
|
|
4
4
|
import { HttpTokensState, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_3";
|
|
5
5
|
import { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled } from "./models_4";
|
|
6
|
-
import { CapacityReservationSpecification,
|
|
6
|
+
import { CapacityReservationSpecification, InstanceMonitoring, Status } from "./models_5";
|
|
7
|
+
export interface RestoreAddressToClassicRequest {
|
|
8
|
+
|
|
9
|
+
DryRun?: boolean;
|
|
10
|
+
|
|
11
|
+
PublicIp: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
export declare namespace RestoreAddressToClassicRequest {
|
|
14
|
+
|
|
15
|
+
const filterSensitiveLog: (obj: RestoreAddressToClassicRequest) => any;
|
|
16
|
+
}
|
|
17
|
+
export interface RestoreAddressToClassicResult {
|
|
18
|
+
|
|
19
|
+
PublicIp?: string;
|
|
20
|
+
|
|
21
|
+
Status?: Status | string;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace RestoreAddressToClassicResult {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: RestoreAddressToClassicResult) => any;
|
|
26
|
+
}
|
|
27
|
+
export interface RestoreManagedPrefixListVersionRequest {
|
|
28
|
+
|
|
29
|
+
DryRun?: boolean;
|
|
30
|
+
|
|
31
|
+
PrefixListId: string | undefined;
|
|
32
|
+
|
|
33
|
+
PreviousVersion: number | undefined;
|
|
34
|
+
|
|
35
|
+
CurrentVersion: number | undefined;
|
|
36
|
+
}
|
|
37
|
+
export declare namespace RestoreManagedPrefixListVersionRequest {
|
|
38
|
+
|
|
39
|
+
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionRequest) => any;
|
|
40
|
+
}
|
|
41
|
+
export interface RestoreManagedPrefixListVersionResult {
|
|
42
|
+
|
|
43
|
+
PrefixList?: ManagedPrefixList;
|
|
44
|
+
}
|
|
45
|
+
export declare namespace RestoreManagedPrefixListVersionResult {
|
|
46
|
+
|
|
47
|
+
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionResult) => any;
|
|
48
|
+
}
|
|
49
|
+
export interface RestoreSnapshotFromRecycleBinRequest {
|
|
50
|
+
|
|
51
|
+
SnapshotId: string | undefined;
|
|
52
|
+
|
|
53
|
+
DryRun?: boolean;
|
|
54
|
+
}
|
|
55
|
+
export declare namespace RestoreSnapshotFromRecycleBinRequest {
|
|
56
|
+
|
|
57
|
+
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinRequest) => any;
|
|
58
|
+
}
|
|
59
|
+
export interface RestoreSnapshotFromRecycleBinResult {
|
|
60
|
+
|
|
61
|
+
SnapshotId?: string;
|
|
62
|
+
|
|
63
|
+
OutpostArn?: string;
|
|
64
|
+
|
|
65
|
+
Description?: string;
|
|
66
|
+
|
|
67
|
+
Encrypted?: boolean;
|
|
68
|
+
|
|
69
|
+
OwnerId?: string;
|
|
70
|
+
|
|
71
|
+
Progress?: string;
|
|
72
|
+
|
|
73
|
+
StartTime?: Date;
|
|
74
|
+
|
|
75
|
+
State?: SnapshotState | string;
|
|
76
|
+
|
|
77
|
+
VolumeId?: string;
|
|
78
|
+
|
|
79
|
+
VolumeSize?: number;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace RestoreSnapshotFromRecycleBinResult {
|
|
82
|
+
|
|
83
|
+
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinResult) => any;
|
|
84
|
+
}
|
|
85
|
+
export interface RestoreSnapshotTierRequest {
|
|
86
|
+
|
|
87
|
+
SnapshotId: string | undefined;
|
|
88
|
+
|
|
89
|
+
TemporaryRestoreDays?: number;
|
|
90
|
+
|
|
91
|
+
PermanentRestore?: boolean;
|
|
92
|
+
|
|
93
|
+
DryRun?: boolean;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace RestoreSnapshotTierRequest {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: RestoreSnapshotTierRequest) => any;
|
|
98
|
+
}
|
|
99
|
+
export interface RestoreSnapshotTierResult {
|
|
100
|
+
|
|
101
|
+
SnapshotId?: string;
|
|
102
|
+
|
|
103
|
+
RestoreStartTime?: Date;
|
|
104
|
+
|
|
105
|
+
RestoreDuration?: number;
|
|
106
|
+
|
|
107
|
+
IsPermanentRestore?: boolean;
|
|
108
|
+
}
|
|
109
|
+
export declare namespace RestoreSnapshotTierResult {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: RestoreSnapshotTierResult) => any;
|
|
112
|
+
}
|
|
113
|
+
export interface RevokeClientVpnIngressRequest {
|
|
114
|
+
|
|
115
|
+
ClientVpnEndpointId: string | undefined;
|
|
116
|
+
|
|
117
|
+
TargetNetworkCidr: string | undefined;
|
|
118
|
+
|
|
119
|
+
AccessGroupId?: string;
|
|
120
|
+
|
|
121
|
+
RevokeAllGroups?: boolean;
|
|
122
|
+
|
|
123
|
+
DryRun?: boolean;
|
|
124
|
+
}
|
|
125
|
+
export declare namespace RevokeClientVpnIngressRequest {
|
|
126
|
+
|
|
127
|
+
const filterSensitiveLog: (obj: RevokeClientVpnIngressRequest) => any;
|
|
128
|
+
}
|
|
129
|
+
export interface RevokeClientVpnIngressResult {
|
|
130
|
+
|
|
131
|
+
Status?: ClientVpnAuthorizationRuleStatus;
|
|
132
|
+
}
|
|
133
|
+
export declare namespace RevokeClientVpnIngressResult {
|
|
134
|
+
|
|
135
|
+
const filterSensitiveLog: (obj: RevokeClientVpnIngressResult) => any;
|
|
136
|
+
}
|
|
137
|
+
export interface RevokeSecurityGroupEgressRequest {
|
|
138
|
+
|
|
139
|
+
DryRun?: boolean;
|
|
140
|
+
|
|
141
|
+
GroupId: string | undefined;
|
|
142
|
+
|
|
143
|
+
IpPermissions?: IpPermission[];
|
|
144
|
+
|
|
145
|
+
SecurityGroupRuleIds?: string[];
|
|
146
|
+
|
|
147
|
+
CidrIp?: string;
|
|
148
|
+
|
|
149
|
+
FromPort?: number;
|
|
150
|
+
|
|
151
|
+
IpProtocol?: string;
|
|
152
|
+
|
|
153
|
+
ToPort?: number;
|
|
154
|
+
|
|
155
|
+
SourceSecurityGroupName?: string;
|
|
156
|
+
|
|
157
|
+
SourceSecurityGroupOwnerId?: string;
|
|
158
|
+
}
|
|
159
|
+
export declare namespace RevokeSecurityGroupEgressRequest {
|
|
160
|
+
|
|
161
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressRequest) => any;
|
|
162
|
+
}
|
|
163
|
+
export interface RevokeSecurityGroupEgressResult {
|
|
164
|
+
|
|
165
|
+
Return?: boolean;
|
|
166
|
+
|
|
167
|
+
UnknownIpPermissions?: IpPermission[];
|
|
168
|
+
}
|
|
169
|
+
export declare namespace RevokeSecurityGroupEgressResult {
|
|
170
|
+
|
|
171
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressResult) => any;
|
|
172
|
+
}
|
|
173
|
+
export interface RevokeSecurityGroupIngressRequest {
|
|
174
|
+
|
|
175
|
+
CidrIp?: string;
|
|
176
|
+
|
|
177
|
+
FromPort?: number;
|
|
178
|
+
|
|
179
|
+
GroupId?: string;
|
|
180
|
+
|
|
181
|
+
GroupName?: string;
|
|
182
|
+
|
|
183
|
+
IpPermissions?: IpPermission[];
|
|
184
|
+
|
|
185
|
+
IpProtocol?: string;
|
|
186
|
+
|
|
187
|
+
SourceSecurityGroupName?: string;
|
|
188
|
+
|
|
189
|
+
SourceSecurityGroupOwnerId?: string;
|
|
190
|
+
|
|
191
|
+
ToPort?: number;
|
|
192
|
+
|
|
193
|
+
DryRun?: boolean;
|
|
194
|
+
|
|
195
|
+
SecurityGroupRuleIds?: string[];
|
|
196
|
+
}
|
|
197
|
+
export declare namespace RevokeSecurityGroupIngressRequest {
|
|
198
|
+
|
|
199
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressRequest) => any;
|
|
200
|
+
}
|
|
201
|
+
export interface RevokeSecurityGroupIngressResult {
|
|
202
|
+
|
|
203
|
+
Return?: boolean;
|
|
204
|
+
|
|
205
|
+
UnknownIpPermissions?: IpPermission[];
|
|
206
|
+
}
|
|
207
|
+
export declare namespace RevokeSecurityGroupIngressResult {
|
|
208
|
+
|
|
209
|
+
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressResult) => any;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
export interface CpuOptionsRequest {
|
|
213
|
+
|
|
214
|
+
CoreCount?: number;
|
|
215
|
+
|
|
216
|
+
ThreadsPerCore?: number;
|
|
217
|
+
}
|
|
218
|
+
export declare namespace CpuOptionsRequest {
|
|
219
|
+
|
|
220
|
+
const filterSensitiveLog: (obj: CpuOptionsRequest) => any;
|
|
221
|
+
}
|
|
7
222
|
|
|
8
223
|
export interface ElasticInferenceAccelerator {
|
|
9
224
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeFastLaunchImagesCommandInput, DescribeFastLaunchImagesCommandOutput } from "../commands/DescribeFastLaunchImagesCommand";
|
|
3
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeFastLaunchImages(config: EC2PaginationConfiguration, input: DescribeFastLaunchImagesCommandInput, ...additionalArguments: any): Paginator<DescribeFastLaunchImagesCommandOutput>;
|
|
@@ -14,6 +14,7 @@ export * from "./DescribeCoipPoolsPaginator";
|
|
|
14
14
|
export * from "./DescribeDhcpOptionsPaginator";
|
|
15
15
|
export * from "./DescribeEgressOnlyInternetGatewaysPaginator";
|
|
16
16
|
export * from "./DescribeExportImageTasksPaginator";
|
|
17
|
+
export * from "./DescribeFastLaunchImagesPaginator";
|
|
17
18
|
export * from "./DescribeFastSnapshotRestoresPaginator";
|
|
18
19
|
export * from "./DescribeFleetsPaginator";
|
|
19
20
|
export * from "./DescribeFlowLogsPaginator";
|