@aws-sdk/client-ec2 3.687.0 → 3.692.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/dist-cjs/index.js +9 -0
- package/dist-es/protocols/Aws_ec2.js +9 -0
- package/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +1 -1
- package/dist-types/commands/CreateKeyPairCommand.d.ts +2 -2
- package/dist-types/commands/CreateSecurityGroupCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImagesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeKeyPairsCommand.d.ts +1 -1
- package/dist-types/commands/ImportKeyPairCommand.d.ts +3 -6
- package/dist-types/models/models_0.d.ts +811 -811
- package/dist-types/models/models_1.d.ts +1017 -1017
- package/dist-types/models/models_2.d.ts +939 -939
- package/dist-types/models/models_3.d.ts +790 -790
- package/dist-types/models/models_4.d.ts +1123 -1100
- package/dist-types/models/models_5.d.ts +867 -867
- package/dist-types/models/models_6.d.ts +867 -867
- package/dist-types/models/models_7.d.ts +576 -575
- package/dist-types/ts3.4/models/models_0.d.ts +823 -811
- package/dist-types/ts3.4/models/models_1.d.ts +1054 -1016
- package/dist-types/ts3.4/models/models_2.d.ts +969 -939
- package/dist-types/ts3.4/models/models_3.d.ts +812 -790
- package/dist-types/ts3.4/models/models_4.d.ts +1118 -1094
- package/dist-types/ts3.4/models/models_5.d.ts +883 -867
- package/dist-types/ts3.4/models/models_6.d.ts +906 -866
- package/dist-types/ts3.4/models/models_7.d.ts +596 -574
- package/package.json +37 -37
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export interface AcceleratorCount {
|
|
2
|
-
Min?: number;
|
|
3
|
-
Max?: number;
|
|
2
|
+
Min?: number | undefined;
|
|
3
|
+
Max?: number | undefined;
|
|
4
4
|
}
|
|
5
5
|
export interface AcceleratorCountRequest {
|
|
6
|
-
Min?: number;
|
|
7
|
-
Max?: number;
|
|
6
|
+
Min?: number | undefined;
|
|
7
|
+
Max?: number | undefined;
|
|
8
8
|
}
|
|
9
9
|
export declare const AcceleratorManufacturer: {
|
|
10
10
|
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
@@ -32,12 +32,12 @@ export declare const AcceleratorName: {
|
|
|
32
32
|
export type AcceleratorName =
|
|
33
33
|
(typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
34
34
|
export interface AcceleratorTotalMemoryMiB {
|
|
35
|
-
Min?: number;
|
|
36
|
-
Max?: number;
|
|
35
|
+
Min?: number | undefined;
|
|
36
|
+
Max?: number | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface AcceleratorTotalMemoryMiBRequest {
|
|
39
|
-
Min?: number;
|
|
40
|
-
Max?: number;
|
|
39
|
+
Min?: number | undefined;
|
|
40
|
+
Max?: number | undefined;
|
|
41
41
|
}
|
|
42
42
|
export declare const AcceleratorType: {
|
|
43
43
|
readonly FPGA: "fpga";
|
|
@@ -137,17 +137,17 @@ export declare const ResourceType: {
|
|
|
137
137
|
};
|
|
138
138
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
139
139
|
export interface Tag {
|
|
140
|
-
Key?: string;
|
|
141
|
-
Value?: string;
|
|
140
|
+
Key?: string | undefined;
|
|
141
|
+
Value?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
export interface TagSpecification {
|
|
144
|
-
ResourceType?: ResourceType;
|
|
145
|
-
Tags?: Tag[];
|
|
144
|
+
ResourceType?: ResourceType | undefined;
|
|
145
|
+
Tags?: Tag[] | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface AcceptAddressTransferRequest {
|
|
148
148
|
Address: string | undefined;
|
|
149
|
-
TagSpecifications?: TagSpecification[];
|
|
150
|
-
DryRun?: boolean;
|
|
149
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
150
|
+
DryRun?: boolean | undefined;
|
|
151
151
|
}
|
|
152
152
|
export declare const AddressTransferStatus: {
|
|
153
153
|
readonly accepted: "accepted";
|
|
@@ -157,40 +157,40 @@ export declare const AddressTransferStatus: {
|
|
|
157
157
|
export type AddressTransferStatus =
|
|
158
158
|
(typeof AddressTransferStatus)[keyof typeof AddressTransferStatus];
|
|
159
159
|
export interface AddressTransfer {
|
|
160
|
-
PublicIp?: string;
|
|
161
|
-
AllocationId?: string;
|
|
162
|
-
TransferAccountId?: string;
|
|
163
|
-
TransferOfferExpirationTimestamp?: Date;
|
|
164
|
-
TransferOfferAcceptedTimestamp?: Date;
|
|
165
|
-
AddressTransferStatus?: AddressTransferStatus;
|
|
160
|
+
PublicIp?: string | undefined;
|
|
161
|
+
AllocationId?: string | undefined;
|
|
162
|
+
TransferAccountId?: string | undefined;
|
|
163
|
+
TransferOfferExpirationTimestamp?: Date | undefined;
|
|
164
|
+
TransferOfferAcceptedTimestamp?: Date | undefined;
|
|
165
|
+
AddressTransferStatus?: AddressTransferStatus | undefined;
|
|
166
166
|
}
|
|
167
167
|
export interface AcceptAddressTransferResult {
|
|
168
|
-
AddressTransfer?: AddressTransfer;
|
|
168
|
+
AddressTransfer?: AddressTransfer | undefined;
|
|
169
169
|
}
|
|
170
170
|
export interface AcceptCapacityReservationBillingOwnershipRequest {
|
|
171
|
-
DryRun?: boolean;
|
|
171
|
+
DryRun?: boolean | undefined;
|
|
172
172
|
CapacityReservationId: string | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface AcceptCapacityReservationBillingOwnershipResult {
|
|
175
|
-
Return?: boolean;
|
|
175
|
+
Return?: boolean | undefined;
|
|
176
176
|
}
|
|
177
177
|
export interface TargetConfigurationRequest {
|
|
178
|
-
InstanceCount?: number;
|
|
178
|
+
InstanceCount?: number | undefined;
|
|
179
179
|
OfferingId: string | undefined;
|
|
180
180
|
}
|
|
181
181
|
export interface AcceptReservedInstancesExchangeQuoteRequest {
|
|
182
|
-
DryRun?: boolean;
|
|
182
|
+
DryRun?: boolean | undefined;
|
|
183
183
|
ReservedInstanceIds: string[] | undefined;
|
|
184
|
-
TargetConfigurations?: TargetConfigurationRequest[];
|
|
184
|
+
TargetConfigurations?: TargetConfigurationRequest[] | undefined;
|
|
185
185
|
}
|
|
186
186
|
export interface AcceptReservedInstancesExchangeQuoteResult {
|
|
187
|
-
ExchangeId?: string;
|
|
187
|
+
ExchangeId?: string | undefined;
|
|
188
188
|
}
|
|
189
189
|
export interface AcceptTransitGatewayMulticastDomainAssociationsRequest {
|
|
190
|
-
TransitGatewayMulticastDomainId?: string;
|
|
191
|
-
TransitGatewayAttachmentId?: string;
|
|
192
|
-
SubnetIds?: string[];
|
|
193
|
-
DryRun?: boolean;
|
|
190
|
+
TransitGatewayMulticastDomainId?: string | undefined;
|
|
191
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
192
|
+
SubnetIds?: string[] | undefined;
|
|
193
|
+
DryRun?: boolean | undefined;
|
|
194
194
|
}
|
|
195
195
|
export declare const TransitGatewayAttachmentResourceType: {
|
|
196
196
|
readonly connect: "connect";
|
|
@@ -214,29 +214,29 @@ export declare const TransitGatewayMulitcastDomainAssociationState: {
|
|
|
214
214
|
export type TransitGatewayMulitcastDomainAssociationState =
|
|
215
215
|
(typeof TransitGatewayMulitcastDomainAssociationState)[keyof typeof TransitGatewayMulitcastDomainAssociationState];
|
|
216
216
|
export interface SubnetAssociation {
|
|
217
|
-
SubnetId?: string;
|
|
218
|
-
State?: TransitGatewayMulitcastDomainAssociationState;
|
|
217
|
+
SubnetId?: string | undefined;
|
|
218
|
+
State?: TransitGatewayMulitcastDomainAssociationState | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface TransitGatewayMulticastDomainAssociations {
|
|
221
|
-
TransitGatewayMulticastDomainId?: string;
|
|
222
|
-
TransitGatewayAttachmentId?: string;
|
|
223
|
-
ResourceId?: string;
|
|
224
|
-
ResourceType?: TransitGatewayAttachmentResourceType;
|
|
225
|
-
ResourceOwnerId?: string;
|
|
226
|
-
Subnets?: SubnetAssociation[];
|
|
221
|
+
TransitGatewayMulticastDomainId?: string | undefined;
|
|
222
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
223
|
+
ResourceId?: string | undefined;
|
|
224
|
+
ResourceType?: TransitGatewayAttachmentResourceType | undefined;
|
|
225
|
+
ResourceOwnerId?: string | undefined;
|
|
226
|
+
Subnets?: SubnetAssociation[] | undefined;
|
|
227
227
|
}
|
|
228
228
|
export interface AcceptTransitGatewayMulticastDomainAssociationsResult {
|
|
229
|
-
Associations?: TransitGatewayMulticastDomainAssociations;
|
|
229
|
+
Associations?: TransitGatewayMulticastDomainAssociations | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface AcceptTransitGatewayPeeringAttachmentRequest {
|
|
232
232
|
TransitGatewayAttachmentId: string | undefined;
|
|
233
|
-
DryRun?: boolean;
|
|
233
|
+
DryRun?: boolean | undefined;
|
|
234
234
|
}
|
|
235
235
|
export interface PeeringTgwInfo {
|
|
236
|
-
TransitGatewayId?: string;
|
|
237
|
-
CoreNetworkId?: string;
|
|
238
|
-
OwnerId?: string;
|
|
239
|
-
Region?: string;
|
|
236
|
+
TransitGatewayId?: string | undefined;
|
|
237
|
+
CoreNetworkId?: string | undefined;
|
|
238
|
+
OwnerId?: string | undefined;
|
|
239
|
+
Region?: string | undefined;
|
|
240
240
|
}
|
|
241
241
|
export declare const DynamicRoutingValue: {
|
|
242
242
|
readonly disable: "disable";
|
|
@@ -245,7 +245,7 @@ export declare const DynamicRoutingValue: {
|
|
|
245
245
|
export type DynamicRoutingValue =
|
|
246
246
|
(typeof DynamicRoutingValue)[keyof typeof DynamicRoutingValue];
|
|
247
247
|
export interface TransitGatewayPeeringAttachmentOptions {
|
|
248
|
-
DynamicRouting?: DynamicRoutingValue;
|
|
248
|
+
DynamicRouting?: DynamicRoutingValue | undefined;
|
|
249
249
|
}
|
|
250
250
|
export declare const TransitGatewayAttachmentState: {
|
|
251
251
|
readonly available: "available";
|
|
@@ -265,26 +265,26 @@ export declare const TransitGatewayAttachmentState: {
|
|
|
265
265
|
export type TransitGatewayAttachmentState =
|
|
266
266
|
(typeof TransitGatewayAttachmentState)[keyof typeof TransitGatewayAttachmentState];
|
|
267
267
|
export interface PeeringAttachmentStatus {
|
|
268
|
-
Code?: string;
|
|
269
|
-
Message?: string;
|
|
268
|
+
Code?: string | undefined;
|
|
269
|
+
Message?: string | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface TransitGatewayPeeringAttachment {
|
|
272
|
-
TransitGatewayAttachmentId?: string;
|
|
273
|
-
AccepterTransitGatewayAttachmentId?: string;
|
|
274
|
-
RequesterTgwInfo?: PeeringTgwInfo;
|
|
275
|
-
AccepterTgwInfo?: PeeringTgwInfo;
|
|
276
|
-
Options?: TransitGatewayPeeringAttachmentOptions;
|
|
277
|
-
Status?: PeeringAttachmentStatus;
|
|
278
|
-
State?: TransitGatewayAttachmentState;
|
|
279
|
-
CreationTime?: Date;
|
|
280
|
-
Tags?: Tag[];
|
|
272
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
273
|
+
AccepterTransitGatewayAttachmentId?: string | undefined;
|
|
274
|
+
RequesterTgwInfo?: PeeringTgwInfo | undefined;
|
|
275
|
+
AccepterTgwInfo?: PeeringTgwInfo | undefined;
|
|
276
|
+
Options?: TransitGatewayPeeringAttachmentOptions | undefined;
|
|
277
|
+
Status?: PeeringAttachmentStatus | undefined;
|
|
278
|
+
State?: TransitGatewayAttachmentState | undefined;
|
|
279
|
+
CreationTime?: Date | undefined;
|
|
280
|
+
Tags?: Tag[] | undefined;
|
|
281
281
|
}
|
|
282
282
|
export interface AcceptTransitGatewayPeeringAttachmentResult {
|
|
283
|
-
TransitGatewayPeeringAttachment?: TransitGatewayPeeringAttachment;
|
|
283
|
+
TransitGatewayPeeringAttachment?: TransitGatewayPeeringAttachment | undefined;
|
|
284
284
|
}
|
|
285
285
|
export interface AcceptTransitGatewayVpcAttachmentRequest {
|
|
286
286
|
TransitGatewayAttachmentId: string | undefined;
|
|
287
|
-
DryRun?: boolean;
|
|
287
|
+
DryRun?: boolean | undefined;
|
|
288
288
|
}
|
|
289
289
|
export declare const ApplianceModeSupportValue: {
|
|
290
290
|
readonly disable: "disable";
|
|
@@ -311,64 +311,66 @@ export declare const SecurityGroupReferencingSupportValue: {
|
|
|
311
311
|
export type SecurityGroupReferencingSupportValue =
|
|
312
312
|
(typeof SecurityGroupReferencingSupportValue)[keyof typeof SecurityGroupReferencingSupportValue];
|
|
313
313
|
export interface TransitGatewayVpcAttachmentOptions {
|
|
314
|
-
DnsSupport?: DnsSupportValue;
|
|
315
|
-
SecurityGroupReferencingSupport?:
|
|
316
|
-
|
|
317
|
-
|
|
314
|
+
DnsSupport?: DnsSupportValue | undefined;
|
|
315
|
+
SecurityGroupReferencingSupport?:
|
|
316
|
+
| SecurityGroupReferencingSupportValue
|
|
317
|
+
| undefined;
|
|
318
|
+
Ipv6Support?: Ipv6SupportValue | undefined;
|
|
319
|
+
ApplianceModeSupport?: ApplianceModeSupportValue | undefined;
|
|
318
320
|
}
|
|
319
321
|
export interface TransitGatewayVpcAttachment {
|
|
320
|
-
TransitGatewayAttachmentId?: string;
|
|
321
|
-
TransitGatewayId?: string;
|
|
322
|
-
VpcId?: string;
|
|
323
|
-
VpcOwnerId?: string;
|
|
324
|
-
State?: TransitGatewayAttachmentState;
|
|
325
|
-
SubnetIds?: string[];
|
|
326
|
-
CreationTime?: Date;
|
|
327
|
-
Options?: TransitGatewayVpcAttachmentOptions;
|
|
328
|
-
Tags?: Tag[];
|
|
322
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
323
|
+
TransitGatewayId?: string | undefined;
|
|
324
|
+
VpcId?: string | undefined;
|
|
325
|
+
VpcOwnerId?: string | undefined;
|
|
326
|
+
State?: TransitGatewayAttachmentState | undefined;
|
|
327
|
+
SubnetIds?: string[] | undefined;
|
|
328
|
+
CreationTime?: Date | undefined;
|
|
329
|
+
Options?: TransitGatewayVpcAttachmentOptions | undefined;
|
|
330
|
+
Tags?: Tag[] | undefined;
|
|
329
331
|
}
|
|
330
332
|
export interface AcceptTransitGatewayVpcAttachmentResult {
|
|
331
|
-
TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment;
|
|
333
|
+
TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment | undefined;
|
|
332
334
|
}
|
|
333
335
|
export interface AcceptVpcEndpointConnectionsRequest {
|
|
334
|
-
DryRun?: boolean;
|
|
336
|
+
DryRun?: boolean | undefined;
|
|
335
337
|
ServiceId: string | undefined;
|
|
336
338
|
VpcEndpointIds: string[] | undefined;
|
|
337
339
|
}
|
|
338
340
|
export interface UnsuccessfulItemError {
|
|
339
|
-
Code?: string;
|
|
340
|
-
Message?: string;
|
|
341
|
+
Code?: string | undefined;
|
|
342
|
+
Message?: string | undefined;
|
|
341
343
|
}
|
|
342
344
|
export interface UnsuccessfulItem {
|
|
343
|
-
Error?: UnsuccessfulItemError;
|
|
344
|
-
ResourceId?: string;
|
|
345
|
+
Error?: UnsuccessfulItemError | undefined;
|
|
346
|
+
ResourceId?: string | undefined;
|
|
345
347
|
}
|
|
346
348
|
export interface AcceptVpcEndpointConnectionsResult {
|
|
347
|
-
Unsuccessful?: UnsuccessfulItem[];
|
|
349
|
+
Unsuccessful?: UnsuccessfulItem[] | undefined;
|
|
348
350
|
}
|
|
349
351
|
export interface AcceptVpcPeeringConnectionRequest {
|
|
350
|
-
DryRun?: boolean;
|
|
352
|
+
DryRun?: boolean | undefined;
|
|
351
353
|
VpcPeeringConnectionId: string | undefined;
|
|
352
354
|
}
|
|
353
355
|
export interface CidrBlock {
|
|
354
|
-
CidrBlock?: string;
|
|
356
|
+
CidrBlock?: string | undefined;
|
|
355
357
|
}
|
|
356
358
|
export interface Ipv6CidrBlock {
|
|
357
|
-
Ipv6CidrBlock?: string;
|
|
359
|
+
Ipv6CidrBlock?: string | undefined;
|
|
358
360
|
}
|
|
359
361
|
export interface VpcPeeringConnectionOptionsDescription {
|
|
360
|
-
AllowDnsResolutionFromRemoteVpc?: boolean;
|
|
361
|
-
AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
|
|
362
|
-
AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
|
|
362
|
+
AllowDnsResolutionFromRemoteVpc?: boolean | undefined;
|
|
363
|
+
AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean | undefined;
|
|
364
|
+
AllowEgressFromLocalVpcToRemoteClassicLink?: boolean | undefined;
|
|
363
365
|
}
|
|
364
366
|
export interface VpcPeeringConnectionVpcInfo {
|
|
365
|
-
CidrBlock?: string;
|
|
366
|
-
Ipv6CidrBlockSet?: Ipv6CidrBlock[];
|
|
367
|
-
CidrBlockSet?: CidrBlock[];
|
|
368
|
-
OwnerId?: string;
|
|
369
|
-
PeeringOptions?: VpcPeeringConnectionOptionsDescription;
|
|
370
|
-
VpcId?: string;
|
|
371
|
-
Region?: string;
|
|
367
|
+
CidrBlock?: string | undefined;
|
|
368
|
+
Ipv6CidrBlockSet?: Ipv6CidrBlock[] | undefined;
|
|
369
|
+
CidrBlockSet?: CidrBlock[] | undefined;
|
|
370
|
+
OwnerId?: string | undefined;
|
|
371
|
+
PeeringOptions?: VpcPeeringConnectionOptionsDescription | undefined;
|
|
372
|
+
VpcId?: string | undefined;
|
|
373
|
+
Region?: string | undefined;
|
|
372
374
|
}
|
|
373
375
|
export declare const VpcPeeringConnectionStateReasonCode: {
|
|
374
376
|
readonly active: "active";
|
|
@@ -384,211 +386,211 @@ export declare const VpcPeeringConnectionStateReasonCode: {
|
|
|
384
386
|
export type VpcPeeringConnectionStateReasonCode =
|
|
385
387
|
(typeof VpcPeeringConnectionStateReasonCode)[keyof typeof VpcPeeringConnectionStateReasonCode];
|
|
386
388
|
export interface VpcPeeringConnectionStateReason {
|
|
387
|
-
Code?: VpcPeeringConnectionStateReasonCode;
|
|
388
|
-
Message?: string;
|
|
389
|
+
Code?: VpcPeeringConnectionStateReasonCode | undefined;
|
|
390
|
+
Message?: string | undefined;
|
|
389
391
|
}
|
|
390
392
|
export interface VpcPeeringConnection {
|
|
391
|
-
AccepterVpcInfo?: VpcPeeringConnectionVpcInfo;
|
|
392
|
-
ExpirationTime?: Date;
|
|
393
|
-
RequesterVpcInfo?: VpcPeeringConnectionVpcInfo;
|
|
394
|
-
Status?: VpcPeeringConnectionStateReason;
|
|
395
|
-
Tags?: Tag[];
|
|
396
|
-
VpcPeeringConnectionId?: string;
|
|
393
|
+
AccepterVpcInfo?: VpcPeeringConnectionVpcInfo | undefined;
|
|
394
|
+
ExpirationTime?: Date | undefined;
|
|
395
|
+
RequesterVpcInfo?: VpcPeeringConnectionVpcInfo | undefined;
|
|
396
|
+
Status?: VpcPeeringConnectionStateReason | undefined;
|
|
397
|
+
Tags?: Tag[] | undefined;
|
|
398
|
+
VpcPeeringConnectionId?: string | undefined;
|
|
397
399
|
}
|
|
398
400
|
export interface AcceptVpcPeeringConnectionResult {
|
|
399
|
-
VpcPeeringConnection?: VpcPeeringConnection;
|
|
401
|
+
VpcPeeringConnection?: VpcPeeringConnection | undefined;
|
|
400
402
|
}
|
|
401
403
|
export interface PortRange {
|
|
402
|
-
From?: number;
|
|
403
|
-
To?: number;
|
|
404
|
+
From?: number | undefined;
|
|
405
|
+
To?: number | undefined;
|
|
404
406
|
}
|
|
405
407
|
export interface AnalysisAclRule {
|
|
406
|
-
Cidr?: string;
|
|
407
|
-
Egress?: boolean;
|
|
408
|
-
PortRange?: PortRange;
|
|
409
|
-
Protocol?: string;
|
|
410
|
-
RuleAction?: string;
|
|
411
|
-
RuleNumber?: number;
|
|
408
|
+
Cidr?: string | undefined;
|
|
409
|
+
Egress?: boolean | undefined;
|
|
410
|
+
PortRange?: PortRange | undefined;
|
|
411
|
+
Protocol?: string | undefined;
|
|
412
|
+
RuleAction?: string | undefined;
|
|
413
|
+
RuleNumber?: number | undefined;
|
|
412
414
|
}
|
|
413
415
|
export interface AnalysisComponent {
|
|
414
|
-
Id?: string;
|
|
415
|
-
Arn?: string;
|
|
416
|
-
Name?: string;
|
|
416
|
+
Id?: string | undefined;
|
|
417
|
+
Arn?: string | undefined;
|
|
418
|
+
Name?: string | undefined;
|
|
417
419
|
}
|
|
418
420
|
export interface RuleOption {
|
|
419
|
-
Keyword?: string;
|
|
420
|
-
Settings?: string[];
|
|
421
|
+
Keyword?: string | undefined;
|
|
422
|
+
Settings?: string[] | undefined;
|
|
421
423
|
}
|
|
422
424
|
export interface RuleGroupRuleOptionsPair {
|
|
423
|
-
RuleGroupArn?: string;
|
|
424
|
-
RuleOptions?: RuleOption[];
|
|
425
|
+
RuleGroupArn?: string | undefined;
|
|
426
|
+
RuleOptions?: RuleOption[] | undefined;
|
|
425
427
|
}
|
|
426
428
|
export interface RuleGroupTypePair {
|
|
427
|
-
RuleGroupArn?: string;
|
|
428
|
-
RuleGroupType?: string;
|
|
429
|
+
RuleGroupArn?: string | undefined;
|
|
430
|
+
RuleGroupType?: string | undefined;
|
|
429
431
|
}
|
|
430
432
|
export interface AdditionalDetail {
|
|
431
|
-
AdditionalDetailType?: string;
|
|
432
|
-
Component?: AnalysisComponent;
|
|
433
|
-
VpcEndpointService?: AnalysisComponent;
|
|
434
|
-
RuleOptions?: RuleOption[];
|
|
435
|
-
RuleGroupTypePairs?: RuleGroupTypePair[];
|
|
436
|
-
RuleGroupRuleOptionsPairs?: RuleGroupRuleOptionsPair[];
|
|
437
|
-
ServiceName?: string;
|
|
438
|
-
LoadBalancers?: AnalysisComponent[];
|
|
433
|
+
AdditionalDetailType?: string | undefined;
|
|
434
|
+
Component?: AnalysisComponent | undefined;
|
|
435
|
+
VpcEndpointService?: AnalysisComponent | undefined;
|
|
436
|
+
RuleOptions?: RuleOption[] | undefined;
|
|
437
|
+
RuleGroupTypePairs?: RuleGroupTypePair[] | undefined;
|
|
438
|
+
RuleGroupRuleOptionsPairs?: RuleGroupRuleOptionsPair[] | undefined;
|
|
439
|
+
ServiceName?: string | undefined;
|
|
440
|
+
LoadBalancers?: AnalysisComponent[] | undefined;
|
|
439
441
|
}
|
|
440
442
|
export interface AnalysisLoadBalancerListener {
|
|
441
|
-
LoadBalancerPort?: number;
|
|
442
|
-
InstancePort?: number;
|
|
443
|
+
LoadBalancerPort?: number | undefined;
|
|
444
|
+
InstancePort?: number | undefined;
|
|
443
445
|
}
|
|
444
446
|
export interface FirewallStatefulRule {
|
|
445
|
-
RuleGroupArn?: string;
|
|
446
|
-
Sources?: string[];
|
|
447
|
-
Destinations?: string[];
|
|
448
|
-
SourcePorts?: PortRange[];
|
|
449
|
-
DestinationPorts?: PortRange[];
|
|
450
|
-
Protocol?: string;
|
|
451
|
-
RuleAction?: string;
|
|
452
|
-
Direction?: string;
|
|
447
|
+
RuleGroupArn?: string | undefined;
|
|
448
|
+
Sources?: string[] | undefined;
|
|
449
|
+
Destinations?: string[] | undefined;
|
|
450
|
+
SourcePorts?: PortRange[] | undefined;
|
|
451
|
+
DestinationPorts?: PortRange[] | undefined;
|
|
452
|
+
Protocol?: string | undefined;
|
|
453
|
+
RuleAction?: string | undefined;
|
|
454
|
+
Direction?: string | undefined;
|
|
453
455
|
}
|
|
454
456
|
export interface FirewallStatelessRule {
|
|
455
|
-
RuleGroupArn?: string;
|
|
456
|
-
Sources?: string[];
|
|
457
|
-
Destinations?: string[];
|
|
458
|
-
SourcePorts?: PortRange[];
|
|
459
|
-
DestinationPorts?: PortRange[];
|
|
460
|
-
Protocols?: number[];
|
|
461
|
-
RuleAction?: string;
|
|
462
|
-
Priority?: number;
|
|
457
|
+
RuleGroupArn?: string | undefined;
|
|
458
|
+
Sources?: string[] | undefined;
|
|
459
|
+
Destinations?: string[] | undefined;
|
|
460
|
+
SourcePorts?: PortRange[] | undefined;
|
|
461
|
+
DestinationPorts?: PortRange[] | undefined;
|
|
462
|
+
Protocols?: number[] | undefined;
|
|
463
|
+
RuleAction?: string | undefined;
|
|
464
|
+
Priority?: number | undefined;
|
|
463
465
|
}
|
|
464
466
|
export interface AnalysisLoadBalancerTarget {
|
|
465
|
-
Address?: string;
|
|
466
|
-
AvailabilityZone?: string;
|
|
467
|
-
Instance?: AnalysisComponent;
|
|
468
|
-
Port?: number;
|
|
467
|
+
Address?: string | undefined;
|
|
468
|
+
AvailabilityZone?: string | undefined;
|
|
469
|
+
Instance?: AnalysisComponent | undefined;
|
|
470
|
+
Port?: number | undefined;
|
|
469
471
|
}
|
|
470
472
|
export interface AnalysisRouteTableRoute {
|
|
471
|
-
DestinationCidr?: string;
|
|
472
|
-
DestinationPrefixListId?: string;
|
|
473
|
-
EgressOnlyInternetGatewayId?: string;
|
|
474
|
-
GatewayId?: string;
|
|
475
|
-
InstanceId?: string;
|
|
476
|
-
NatGatewayId?: string;
|
|
477
|
-
NetworkInterfaceId?: string;
|
|
478
|
-
Origin?: string;
|
|
479
|
-
TransitGatewayId?: string;
|
|
480
|
-
VpcPeeringConnectionId?: string;
|
|
481
|
-
State?: string;
|
|
482
|
-
CarrierGatewayId?: string;
|
|
483
|
-
CoreNetworkArn?: string;
|
|
484
|
-
LocalGatewayId?: string;
|
|
473
|
+
DestinationCidr?: string | undefined;
|
|
474
|
+
DestinationPrefixListId?: string | undefined;
|
|
475
|
+
EgressOnlyInternetGatewayId?: string | undefined;
|
|
476
|
+
GatewayId?: string | undefined;
|
|
477
|
+
InstanceId?: string | undefined;
|
|
478
|
+
NatGatewayId?: string | undefined;
|
|
479
|
+
NetworkInterfaceId?: string | undefined;
|
|
480
|
+
Origin?: string | undefined;
|
|
481
|
+
TransitGatewayId?: string | undefined;
|
|
482
|
+
VpcPeeringConnectionId?: string | undefined;
|
|
483
|
+
State?: string | undefined;
|
|
484
|
+
CarrierGatewayId?: string | undefined;
|
|
485
|
+
CoreNetworkArn?: string | undefined;
|
|
486
|
+
LocalGatewayId?: string | undefined;
|
|
485
487
|
}
|
|
486
488
|
export interface AnalysisSecurityGroupRule {
|
|
487
|
-
Cidr?: string;
|
|
488
|
-
Direction?: string;
|
|
489
|
-
SecurityGroupId?: string;
|
|
490
|
-
PortRange?: PortRange;
|
|
491
|
-
PrefixListId?: string;
|
|
492
|
-
Protocol?: string;
|
|
489
|
+
Cidr?: string | undefined;
|
|
490
|
+
Direction?: string | undefined;
|
|
491
|
+
SecurityGroupId?: string | undefined;
|
|
492
|
+
PortRange?: PortRange | undefined;
|
|
493
|
+
PrefixListId?: string | undefined;
|
|
494
|
+
Protocol?: string | undefined;
|
|
493
495
|
}
|
|
494
496
|
export interface TransitGatewayRouteTableRoute {
|
|
495
|
-
DestinationCidr?: string;
|
|
496
|
-
State?: string;
|
|
497
|
-
RouteOrigin?: string;
|
|
498
|
-
PrefixListId?: string;
|
|
499
|
-
AttachmentId?: string;
|
|
500
|
-
ResourceId?: string;
|
|
501
|
-
ResourceType?: string;
|
|
497
|
+
DestinationCidr?: string | undefined;
|
|
498
|
+
State?: string | undefined;
|
|
499
|
+
RouteOrigin?: string | undefined;
|
|
500
|
+
PrefixListId?: string | undefined;
|
|
501
|
+
AttachmentId?: string | undefined;
|
|
502
|
+
ResourceId?: string | undefined;
|
|
503
|
+
ResourceType?: string | undefined;
|
|
502
504
|
}
|
|
503
505
|
export interface Explanation {
|
|
504
|
-
Acl?: AnalysisComponent;
|
|
505
|
-
AclRule?: AnalysisAclRule;
|
|
506
|
-
Address?: string;
|
|
507
|
-
Addresses?: string[];
|
|
508
|
-
AttachedTo?: AnalysisComponent;
|
|
509
|
-
AvailabilityZones?: string[];
|
|
510
|
-
Cidrs?: string[];
|
|
511
|
-
Component?: AnalysisComponent;
|
|
512
|
-
CustomerGateway?: AnalysisComponent;
|
|
513
|
-
Destination?: AnalysisComponent;
|
|
514
|
-
DestinationVpc?: AnalysisComponent;
|
|
515
|
-
Direction?: string;
|
|
516
|
-
ExplanationCode?: string;
|
|
517
|
-
IngressRouteTable?: AnalysisComponent;
|
|
518
|
-
InternetGateway?: AnalysisComponent;
|
|
519
|
-
LoadBalancerArn?: string;
|
|
520
|
-
ClassicLoadBalancerListener?: AnalysisLoadBalancerListener;
|
|
521
|
-
LoadBalancerListenerPort?: number;
|
|
522
|
-
LoadBalancerTarget?: AnalysisLoadBalancerTarget;
|
|
523
|
-
LoadBalancerTargetGroup?: AnalysisComponent;
|
|
524
|
-
LoadBalancerTargetGroups?: AnalysisComponent[];
|
|
525
|
-
LoadBalancerTargetPort?: number;
|
|
526
|
-
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
527
|
-
MissingComponent?: string;
|
|
528
|
-
NatGateway?: AnalysisComponent;
|
|
529
|
-
NetworkInterface?: AnalysisComponent;
|
|
530
|
-
PacketField?: string;
|
|
531
|
-
VpcPeeringConnection?: AnalysisComponent;
|
|
532
|
-
Port?: number;
|
|
533
|
-
PortRanges?: PortRange[];
|
|
534
|
-
PrefixList?: AnalysisComponent;
|
|
535
|
-
Protocols?: string[];
|
|
536
|
-
RouteTableRoute?: AnalysisRouteTableRoute;
|
|
537
|
-
RouteTable?: AnalysisComponent;
|
|
538
|
-
SecurityGroup?: AnalysisComponent;
|
|
539
|
-
SecurityGroupRule?: AnalysisSecurityGroupRule;
|
|
540
|
-
SecurityGroups?: AnalysisComponent[];
|
|
541
|
-
SourceVpc?: AnalysisComponent;
|
|
542
|
-
State?: string;
|
|
543
|
-
Subnet?: AnalysisComponent;
|
|
544
|
-
SubnetRouteTable?: AnalysisComponent;
|
|
545
|
-
Vpc?: AnalysisComponent;
|
|
546
|
-
VpcEndpoint?: AnalysisComponent;
|
|
547
|
-
VpnConnection?: AnalysisComponent;
|
|
548
|
-
VpnGateway?: AnalysisComponent;
|
|
549
|
-
TransitGateway?: AnalysisComponent;
|
|
550
|
-
TransitGatewayRouteTable?: AnalysisComponent;
|
|
551
|
-
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
552
|
-
TransitGatewayAttachment?: AnalysisComponent;
|
|
553
|
-
ComponentAccount?: string;
|
|
554
|
-
ComponentRegion?: string;
|
|
555
|
-
FirewallStatelessRule?: FirewallStatelessRule;
|
|
556
|
-
FirewallStatefulRule?: FirewallStatefulRule;
|
|
506
|
+
Acl?: AnalysisComponent | undefined;
|
|
507
|
+
AclRule?: AnalysisAclRule | undefined;
|
|
508
|
+
Address?: string | undefined;
|
|
509
|
+
Addresses?: string[] | undefined;
|
|
510
|
+
AttachedTo?: AnalysisComponent | undefined;
|
|
511
|
+
AvailabilityZones?: string[] | undefined;
|
|
512
|
+
Cidrs?: string[] | undefined;
|
|
513
|
+
Component?: AnalysisComponent | undefined;
|
|
514
|
+
CustomerGateway?: AnalysisComponent | undefined;
|
|
515
|
+
Destination?: AnalysisComponent | undefined;
|
|
516
|
+
DestinationVpc?: AnalysisComponent | undefined;
|
|
517
|
+
Direction?: string | undefined;
|
|
518
|
+
ExplanationCode?: string | undefined;
|
|
519
|
+
IngressRouteTable?: AnalysisComponent | undefined;
|
|
520
|
+
InternetGateway?: AnalysisComponent | undefined;
|
|
521
|
+
LoadBalancerArn?: string | undefined;
|
|
522
|
+
ClassicLoadBalancerListener?: AnalysisLoadBalancerListener | undefined;
|
|
523
|
+
LoadBalancerListenerPort?: number | undefined;
|
|
524
|
+
LoadBalancerTarget?: AnalysisLoadBalancerTarget | undefined;
|
|
525
|
+
LoadBalancerTargetGroup?: AnalysisComponent | undefined;
|
|
526
|
+
LoadBalancerTargetGroups?: AnalysisComponent[] | undefined;
|
|
527
|
+
LoadBalancerTargetPort?: number | undefined;
|
|
528
|
+
ElasticLoadBalancerListener?: AnalysisComponent | undefined;
|
|
529
|
+
MissingComponent?: string | undefined;
|
|
530
|
+
NatGateway?: AnalysisComponent | undefined;
|
|
531
|
+
NetworkInterface?: AnalysisComponent | undefined;
|
|
532
|
+
PacketField?: string | undefined;
|
|
533
|
+
VpcPeeringConnection?: AnalysisComponent | undefined;
|
|
534
|
+
Port?: number | undefined;
|
|
535
|
+
PortRanges?: PortRange[] | undefined;
|
|
536
|
+
PrefixList?: AnalysisComponent | undefined;
|
|
537
|
+
Protocols?: string[] | undefined;
|
|
538
|
+
RouteTableRoute?: AnalysisRouteTableRoute | undefined;
|
|
539
|
+
RouteTable?: AnalysisComponent | undefined;
|
|
540
|
+
SecurityGroup?: AnalysisComponent | undefined;
|
|
541
|
+
SecurityGroupRule?: AnalysisSecurityGroupRule | undefined;
|
|
542
|
+
SecurityGroups?: AnalysisComponent[] | undefined;
|
|
543
|
+
SourceVpc?: AnalysisComponent | undefined;
|
|
544
|
+
State?: string | undefined;
|
|
545
|
+
Subnet?: AnalysisComponent | undefined;
|
|
546
|
+
SubnetRouteTable?: AnalysisComponent | undefined;
|
|
547
|
+
Vpc?: AnalysisComponent | undefined;
|
|
548
|
+
VpcEndpoint?: AnalysisComponent | undefined;
|
|
549
|
+
VpnConnection?: AnalysisComponent | undefined;
|
|
550
|
+
VpnGateway?: AnalysisComponent | undefined;
|
|
551
|
+
TransitGateway?: AnalysisComponent | undefined;
|
|
552
|
+
TransitGatewayRouteTable?: AnalysisComponent | undefined;
|
|
553
|
+
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute | undefined;
|
|
554
|
+
TransitGatewayAttachment?: AnalysisComponent | undefined;
|
|
555
|
+
ComponentAccount?: string | undefined;
|
|
556
|
+
ComponentRegion?: string | undefined;
|
|
557
|
+
FirewallStatelessRule?: FirewallStatelessRule | undefined;
|
|
558
|
+
FirewallStatefulRule?: FirewallStatefulRule | undefined;
|
|
557
559
|
}
|
|
558
560
|
export interface AnalysisPacketHeader {
|
|
559
|
-
DestinationAddresses?: string[];
|
|
560
|
-
DestinationPortRanges?: PortRange[];
|
|
561
|
-
Protocol?: string;
|
|
562
|
-
SourceAddresses?: string[];
|
|
563
|
-
SourcePortRanges?: PortRange[];
|
|
561
|
+
DestinationAddresses?: string[] | undefined;
|
|
562
|
+
DestinationPortRanges?: PortRange[] | undefined;
|
|
563
|
+
Protocol?: string | undefined;
|
|
564
|
+
SourceAddresses?: string[] | undefined;
|
|
565
|
+
SourcePortRanges?: PortRange[] | undefined;
|
|
564
566
|
}
|
|
565
567
|
export interface PathComponent {
|
|
566
|
-
SequenceNumber?: number;
|
|
567
|
-
AclRule?: AnalysisAclRule;
|
|
568
|
-
AttachedTo?: AnalysisComponent;
|
|
569
|
-
Component?: AnalysisComponent;
|
|
570
|
-
DestinationVpc?: AnalysisComponent;
|
|
571
|
-
OutboundHeader?: AnalysisPacketHeader;
|
|
572
|
-
InboundHeader?: AnalysisPacketHeader;
|
|
573
|
-
RouteTableRoute?: AnalysisRouteTableRoute;
|
|
574
|
-
SecurityGroupRule?: AnalysisSecurityGroupRule;
|
|
575
|
-
SourceVpc?: AnalysisComponent;
|
|
576
|
-
Subnet?: AnalysisComponent;
|
|
577
|
-
Vpc?: AnalysisComponent;
|
|
578
|
-
AdditionalDetails?: AdditionalDetail[];
|
|
579
|
-
TransitGateway?: AnalysisComponent;
|
|
580
|
-
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
581
|
-
Explanations?: Explanation[];
|
|
582
|
-
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
583
|
-
FirewallStatelessRule?: FirewallStatelessRule;
|
|
584
|
-
FirewallStatefulRule?: FirewallStatefulRule;
|
|
585
|
-
ServiceName?: string;
|
|
568
|
+
SequenceNumber?: number | undefined;
|
|
569
|
+
AclRule?: AnalysisAclRule | undefined;
|
|
570
|
+
AttachedTo?: AnalysisComponent | undefined;
|
|
571
|
+
Component?: AnalysisComponent | undefined;
|
|
572
|
+
DestinationVpc?: AnalysisComponent | undefined;
|
|
573
|
+
OutboundHeader?: AnalysisPacketHeader | undefined;
|
|
574
|
+
InboundHeader?: AnalysisPacketHeader | undefined;
|
|
575
|
+
RouteTableRoute?: AnalysisRouteTableRoute | undefined;
|
|
576
|
+
SecurityGroupRule?: AnalysisSecurityGroupRule | undefined;
|
|
577
|
+
SourceVpc?: AnalysisComponent | undefined;
|
|
578
|
+
Subnet?: AnalysisComponent | undefined;
|
|
579
|
+
Vpc?: AnalysisComponent | undefined;
|
|
580
|
+
AdditionalDetails?: AdditionalDetail[] | undefined;
|
|
581
|
+
TransitGateway?: AnalysisComponent | undefined;
|
|
582
|
+
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute | undefined;
|
|
583
|
+
Explanations?: Explanation[] | undefined;
|
|
584
|
+
ElasticLoadBalancerListener?: AnalysisComponent | undefined;
|
|
585
|
+
FirewallStatelessRule?: FirewallStatelessRule | undefined;
|
|
586
|
+
FirewallStatefulRule?: FirewallStatefulRule | undefined;
|
|
587
|
+
ServiceName?: string | undefined;
|
|
586
588
|
}
|
|
587
589
|
export interface AccessScopeAnalysisFinding {
|
|
588
|
-
NetworkInsightsAccessScopeAnalysisId?: string;
|
|
589
|
-
NetworkInsightsAccessScopeId?: string;
|
|
590
|
-
FindingId?: string;
|
|
591
|
-
FindingComponents?: PathComponent[];
|
|
590
|
+
NetworkInsightsAccessScopeAnalysisId?: string | undefined;
|
|
591
|
+
NetworkInsightsAccessScopeId?: string | undefined;
|
|
592
|
+
FindingId?: string | undefined;
|
|
593
|
+
FindingComponents?: PathComponent[] | undefined;
|
|
592
594
|
}
|
|
593
595
|
export declare const Protocol: {
|
|
594
596
|
readonly tcp: "tcp";
|
|
@@ -596,61 +598,61 @@ export declare const Protocol: {
|
|
|
596
598
|
};
|
|
597
599
|
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
598
600
|
export interface PacketHeaderStatement {
|
|
599
|
-
SourceAddresses?: string[];
|
|
600
|
-
DestinationAddresses?: string[];
|
|
601
|
-
SourcePorts?: string[];
|
|
602
|
-
DestinationPorts?: string[];
|
|
603
|
-
SourcePrefixLists?: string[];
|
|
604
|
-
DestinationPrefixLists?: string[];
|
|
605
|
-
Protocols?: Protocol[];
|
|
601
|
+
SourceAddresses?: string[] | undefined;
|
|
602
|
+
DestinationAddresses?: string[] | undefined;
|
|
603
|
+
SourcePorts?: string[] | undefined;
|
|
604
|
+
DestinationPorts?: string[] | undefined;
|
|
605
|
+
SourcePrefixLists?: string[] | undefined;
|
|
606
|
+
DestinationPrefixLists?: string[] | undefined;
|
|
607
|
+
Protocols?: Protocol[] | undefined;
|
|
606
608
|
}
|
|
607
609
|
export interface ResourceStatement {
|
|
608
|
-
Resources?: string[];
|
|
609
|
-
ResourceTypes?: string[];
|
|
610
|
+
Resources?: string[] | undefined;
|
|
611
|
+
ResourceTypes?: string[] | undefined;
|
|
610
612
|
}
|
|
611
613
|
export interface PathStatement {
|
|
612
|
-
PacketHeaderStatement?: PacketHeaderStatement;
|
|
613
|
-
ResourceStatement?: ResourceStatement;
|
|
614
|
+
PacketHeaderStatement?: PacketHeaderStatement | undefined;
|
|
615
|
+
ResourceStatement?: ResourceStatement | undefined;
|
|
614
616
|
}
|
|
615
617
|
export interface ThroughResourcesStatement {
|
|
616
|
-
ResourceStatement?: ResourceStatement;
|
|
618
|
+
ResourceStatement?: ResourceStatement | undefined;
|
|
617
619
|
}
|
|
618
620
|
export interface AccessScopePath {
|
|
619
|
-
Source?: PathStatement;
|
|
620
|
-
Destination?: PathStatement;
|
|
621
|
-
ThroughResources?: ThroughResourcesStatement[];
|
|
621
|
+
Source?: PathStatement | undefined;
|
|
622
|
+
Destination?: PathStatement | undefined;
|
|
623
|
+
ThroughResources?: ThroughResourcesStatement[] | undefined;
|
|
622
624
|
}
|
|
623
625
|
export interface PacketHeaderStatementRequest {
|
|
624
|
-
SourceAddresses?: string[];
|
|
625
|
-
DestinationAddresses?: string[];
|
|
626
|
-
SourcePorts?: string[];
|
|
627
|
-
DestinationPorts?: string[];
|
|
628
|
-
SourcePrefixLists?: string[];
|
|
629
|
-
DestinationPrefixLists?: string[];
|
|
630
|
-
Protocols?: Protocol[];
|
|
626
|
+
SourceAddresses?: string[] | undefined;
|
|
627
|
+
DestinationAddresses?: string[] | undefined;
|
|
628
|
+
SourcePorts?: string[] | undefined;
|
|
629
|
+
DestinationPorts?: string[] | undefined;
|
|
630
|
+
SourcePrefixLists?: string[] | undefined;
|
|
631
|
+
DestinationPrefixLists?: string[] | undefined;
|
|
632
|
+
Protocols?: Protocol[] | undefined;
|
|
631
633
|
}
|
|
632
634
|
export interface ResourceStatementRequest {
|
|
633
|
-
Resources?: string[];
|
|
634
|
-
ResourceTypes?: string[];
|
|
635
|
+
Resources?: string[] | undefined;
|
|
636
|
+
ResourceTypes?: string[] | undefined;
|
|
635
637
|
}
|
|
636
638
|
export interface PathStatementRequest {
|
|
637
|
-
PacketHeaderStatement?: PacketHeaderStatementRequest;
|
|
638
|
-
ResourceStatement?: ResourceStatementRequest;
|
|
639
|
+
PacketHeaderStatement?: PacketHeaderStatementRequest | undefined;
|
|
640
|
+
ResourceStatement?: ResourceStatementRequest | undefined;
|
|
639
641
|
}
|
|
640
642
|
export interface ThroughResourcesStatementRequest {
|
|
641
|
-
ResourceStatement?: ResourceStatementRequest;
|
|
643
|
+
ResourceStatement?: ResourceStatementRequest | undefined;
|
|
642
644
|
}
|
|
643
645
|
export interface AccessScopePathRequest {
|
|
644
|
-
Source?: PathStatementRequest;
|
|
645
|
-
Destination?: PathStatementRequest;
|
|
646
|
-
ThroughResources?: ThroughResourcesStatementRequest[];
|
|
646
|
+
Source?: PathStatementRequest | undefined;
|
|
647
|
+
Destination?: PathStatementRequest | undefined;
|
|
648
|
+
ThroughResources?: ThroughResourcesStatementRequest[] | undefined;
|
|
647
649
|
}
|
|
648
650
|
export interface AccountAttributeValue {
|
|
649
|
-
AttributeValue?: string;
|
|
651
|
+
AttributeValue?: string | undefined;
|
|
650
652
|
}
|
|
651
653
|
export interface AccountAttribute {
|
|
652
|
-
AttributeName?: string;
|
|
653
|
-
AttributeValues?: AccountAttributeValue[];
|
|
654
|
+
AttributeName?: string | undefined;
|
|
655
|
+
AttributeValues?: AccountAttributeValue[] | undefined;
|
|
654
656
|
}
|
|
655
657
|
export declare const AccountAttributeName: {
|
|
656
658
|
readonly default_vpc: "default-vpc";
|
|
@@ -665,10 +667,10 @@ export declare const InstanceHealthStatus: {
|
|
|
665
667
|
export type InstanceHealthStatus =
|
|
666
668
|
(typeof InstanceHealthStatus)[keyof typeof InstanceHealthStatus];
|
|
667
669
|
export interface ActiveInstance {
|
|
668
|
-
InstanceId?: string;
|
|
669
|
-
InstanceType?: string;
|
|
670
|
-
SpotInstanceRequestId?: string;
|
|
671
|
-
InstanceHealth?: InstanceHealthStatus;
|
|
670
|
+
InstanceId?: string | undefined;
|
|
671
|
+
InstanceType?: string | undefined;
|
|
672
|
+
SpotInstanceRequestId?: string | undefined;
|
|
673
|
+
InstanceHealth?: InstanceHealthStatus | undefined;
|
|
672
674
|
}
|
|
673
675
|
export declare const ActivityStatus: {
|
|
674
676
|
readonly ERROR: "error";
|
|
@@ -688,17 +690,17 @@ export declare const PrincipalType: {
|
|
|
688
690
|
};
|
|
689
691
|
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
690
692
|
export interface AddedPrincipal {
|
|
691
|
-
PrincipalType?: PrincipalType;
|
|
692
|
-
Principal?: string;
|
|
693
|
-
ServicePermissionId?: string;
|
|
694
|
-
ServiceId?: string;
|
|
693
|
+
PrincipalType?: PrincipalType | undefined;
|
|
694
|
+
Principal?: string | undefined;
|
|
695
|
+
ServicePermissionId?: string | undefined;
|
|
696
|
+
ServiceId?: string | undefined;
|
|
695
697
|
}
|
|
696
698
|
export interface AddIpamOperatingRegion {
|
|
697
|
-
RegionName?: string;
|
|
699
|
+
RegionName?: string | undefined;
|
|
698
700
|
}
|
|
699
701
|
export interface AddPrefixListEntry {
|
|
700
702
|
Cidr: string | undefined;
|
|
701
|
-
Description?: string;
|
|
703
|
+
Description?: string | undefined;
|
|
702
704
|
}
|
|
703
705
|
export declare const DomainType: {
|
|
704
706
|
readonly standard: "standard";
|
|
@@ -706,31 +708,31 @@ export declare const DomainType: {
|
|
|
706
708
|
};
|
|
707
709
|
export type DomainType = (typeof DomainType)[keyof typeof DomainType];
|
|
708
710
|
export interface Address {
|
|
709
|
-
AllocationId?: string;
|
|
710
|
-
AssociationId?: string;
|
|
711
|
-
Domain?: DomainType;
|
|
712
|
-
NetworkInterfaceId?: string;
|
|
713
|
-
NetworkInterfaceOwnerId?: string;
|
|
714
|
-
PrivateIpAddress?: string;
|
|
715
|
-
Tags?: Tag[];
|
|
716
|
-
PublicIpv4Pool?: string;
|
|
717
|
-
NetworkBorderGroup?: string;
|
|
718
|
-
CustomerOwnedIp?: string;
|
|
719
|
-
CustomerOwnedIpv4Pool?: string;
|
|
720
|
-
CarrierIp?: string;
|
|
721
|
-
InstanceId?: string;
|
|
722
|
-
PublicIp?: string;
|
|
711
|
+
AllocationId?: string | undefined;
|
|
712
|
+
AssociationId?: string | undefined;
|
|
713
|
+
Domain?: DomainType | undefined;
|
|
714
|
+
NetworkInterfaceId?: string | undefined;
|
|
715
|
+
NetworkInterfaceOwnerId?: string | undefined;
|
|
716
|
+
PrivateIpAddress?: string | undefined;
|
|
717
|
+
Tags?: Tag[] | undefined;
|
|
718
|
+
PublicIpv4Pool?: string | undefined;
|
|
719
|
+
NetworkBorderGroup?: string | undefined;
|
|
720
|
+
CustomerOwnedIp?: string | undefined;
|
|
721
|
+
CustomerOwnedIpv4Pool?: string | undefined;
|
|
722
|
+
CarrierIp?: string | undefined;
|
|
723
|
+
InstanceId?: string | undefined;
|
|
724
|
+
PublicIp?: string | undefined;
|
|
723
725
|
}
|
|
724
726
|
export interface PtrUpdateStatus {
|
|
725
|
-
Value?: string;
|
|
726
|
-
Status?: string;
|
|
727
|
-
Reason?: string;
|
|
727
|
+
Value?: string | undefined;
|
|
728
|
+
Status?: string | undefined;
|
|
729
|
+
Reason?: string | undefined;
|
|
728
730
|
}
|
|
729
731
|
export interface AddressAttribute {
|
|
730
|
-
PublicIp?: string;
|
|
731
|
-
AllocationId?: string;
|
|
732
|
-
PtrRecord?: string;
|
|
733
|
-
PtrRecordUpdate?: PtrUpdateStatus;
|
|
732
|
+
PublicIp?: string | undefined;
|
|
733
|
+
AllocationId?: string | undefined;
|
|
734
|
+
PtrRecord?: string | undefined;
|
|
735
|
+
PtrRecordUpdate?: PtrUpdateStatus | undefined;
|
|
734
736
|
}
|
|
735
737
|
export declare const AddressAttributeName: {
|
|
736
738
|
readonly domain_name: "domain-name";
|
|
@@ -744,9 +746,9 @@ export declare const AddressFamily: {
|
|
|
744
746
|
export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily];
|
|
745
747
|
export interface AdvertiseByoipCidrRequest {
|
|
746
748
|
Cidr: string | undefined;
|
|
747
|
-
Asn?: string;
|
|
748
|
-
DryRun?: boolean;
|
|
749
|
-
NetworkBorderGroup?: string;
|
|
749
|
+
Asn?: string | undefined;
|
|
750
|
+
DryRun?: boolean | undefined;
|
|
751
|
+
NetworkBorderGroup?: string | undefined;
|
|
750
752
|
}
|
|
751
753
|
export declare const AsnAssociationState: {
|
|
752
754
|
readonly associated: "associated";
|
|
@@ -759,10 +761,10 @@ export declare const AsnAssociationState: {
|
|
|
759
761
|
export type AsnAssociationState =
|
|
760
762
|
(typeof AsnAssociationState)[keyof typeof AsnAssociationState];
|
|
761
763
|
export interface AsnAssociation {
|
|
762
|
-
Asn?: string;
|
|
763
|
-
Cidr?: string;
|
|
764
|
-
StatusMessage?: string;
|
|
765
|
-
State?: AsnAssociationState;
|
|
764
|
+
Asn?: string | undefined;
|
|
765
|
+
Cidr?: string | undefined;
|
|
766
|
+
StatusMessage?: string | undefined;
|
|
767
|
+
State?: AsnAssociationState | undefined;
|
|
766
768
|
}
|
|
767
769
|
export declare const ByoipCidrState: {
|
|
768
770
|
readonly advertised: "advertised";
|
|
@@ -777,15 +779,15 @@ export declare const ByoipCidrState: {
|
|
|
777
779
|
export type ByoipCidrState =
|
|
778
780
|
(typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
779
781
|
export interface ByoipCidr {
|
|
780
|
-
Cidr?: string;
|
|
781
|
-
Description?: string;
|
|
782
|
-
AsnAssociations?: AsnAssociation[];
|
|
783
|
-
StatusMessage?: string;
|
|
784
|
-
State?: ByoipCidrState;
|
|
785
|
-
NetworkBorderGroup?: string;
|
|
782
|
+
Cidr?: string | undefined;
|
|
783
|
+
Description?: string | undefined;
|
|
784
|
+
AsnAssociations?: AsnAssociation[] | undefined;
|
|
785
|
+
StatusMessage?: string | undefined;
|
|
786
|
+
State?: ByoipCidrState | undefined;
|
|
787
|
+
NetworkBorderGroup?: string | undefined;
|
|
786
788
|
}
|
|
787
789
|
export interface AdvertiseByoipCidrResult {
|
|
788
|
-
ByoipCidr?: ByoipCidr;
|
|
790
|
+
ByoipCidr?: ByoipCidr | undefined;
|
|
789
791
|
}
|
|
790
792
|
export declare const Affinity: {
|
|
791
793
|
readonly default: "default";
|
|
@@ -793,24 +795,24 @@ export declare const Affinity: {
|
|
|
793
795
|
};
|
|
794
796
|
export type Affinity = (typeof Affinity)[keyof typeof Affinity];
|
|
795
797
|
export interface AllocateAddressRequest {
|
|
796
|
-
Domain?: DomainType;
|
|
797
|
-
Address?: string;
|
|
798
|
-
PublicIpv4Pool?: string;
|
|
799
|
-
NetworkBorderGroup?: string;
|
|
800
|
-
CustomerOwnedIpv4Pool?: string;
|
|
801
|
-
TagSpecifications?: TagSpecification[];
|
|
802
|
-
IpamPoolId?: string;
|
|
803
|
-
DryRun?: boolean;
|
|
798
|
+
Domain?: DomainType | undefined;
|
|
799
|
+
Address?: string | undefined;
|
|
800
|
+
PublicIpv4Pool?: string | undefined;
|
|
801
|
+
NetworkBorderGroup?: string | undefined;
|
|
802
|
+
CustomerOwnedIpv4Pool?: string | undefined;
|
|
803
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
804
|
+
IpamPoolId?: string | undefined;
|
|
805
|
+
DryRun?: boolean | undefined;
|
|
804
806
|
}
|
|
805
807
|
export interface AllocateAddressResult {
|
|
806
|
-
AllocationId?: string;
|
|
807
|
-
PublicIpv4Pool?: string;
|
|
808
|
-
NetworkBorderGroup?: string;
|
|
809
|
-
Domain?: DomainType;
|
|
810
|
-
CustomerOwnedIp?: string;
|
|
811
|
-
CustomerOwnedIpv4Pool?: string;
|
|
812
|
-
CarrierIp?: string;
|
|
813
|
-
PublicIp?: string;
|
|
808
|
+
AllocationId?: string | undefined;
|
|
809
|
+
PublicIpv4Pool?: string | undefined;
|
|
810
|
+
NetworkBorderGroup?: string | undefined;
|
|
811
|
+
Domain?: DomainType | undefined;
|
|
812
|
+
CustomerOwnedIp?: string | undefined;
|
|
813
|
+
CustomerOwnedIpv4Pool?: string | undefined;
|
|
814
|
+
CarrierIp?: string | undefined;
|
|
815
|
+
PublicIp?: string | undefined;
|
|
814
816
|
}
|
|
815
817
|
export declare const AutoPlacement: {
|
|
816
818
|
readonly off: "off";
|
|
@@ -829,31 +831,31 @@ export declare const HostRecovery: {
|
|
|
829
831
|
};
|
|
830
832
|
export type HostRecovery = (typeof HostRecovery)[keyof typeof HostRecovery];
|
|
831
833
|
export interface AllocateHostsRequest {
|
|
832
|
-
InstanceFamily?: string;
|
|
833
|
-
TagSpecifications?: TagSpecification[];
|
|
834
|
-
HostRecovery?: HostRecovery;
|
|
835
|
-
OutpostArn?: string;
|
|
836
|
-
HostMaintenance?: HostMaintenance;
|
|
837
|
-
AssetIds?: string[];
|
|
838
|
-
AutoPlacement?: AutoPlacement;
|
|
839
|
-
ClientToken?: string;
|
|
840
|
-
InstanceType?: string;
|
|
841
|
-
Quantity?: number;
|
|
834
|
+
InstanceFamily?: string | undefined;
|
|
835
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
836
|
+
HostRecovery?: HostRecovery | undefined;
|
|
837
|
+
OutpostArn?: string | undefined;
|
|
838
|
+
HostMaintenance?: HostMaintenance | undefined;
|
|
839
|
+
AssetIds?: string[] | undefined;
|
|
840
|
+
AutoPlacement?: AutoPlacement | undefined;
|
|
841
|
+
ClientToken?: string | undefined;
|
|
842
|
+
InstanceType?: string | undefined;
|
|
843
|
+
Quantity?: number | undefined;
|
|
842
844
|
AvailabilityZone: string | undefined;
|
|
843
845
|
}
|
|
844
846
|
export interface AllocateHostsResult {
|
|
845
|
-
HostIds?: string[];
|
|
847
|
+
HostIds?: string[] | undefined;
|
|
846
848
|
}
|
|
847
849
|
export interface AllocateIpamPoolCidrRequest {
|
|
848
|
-
DryRun?: boolean;
|
|
850
|
+
DryRun?: boolean | undefined;
|
|
849
851
|
IpamPoolId: string | undefined;
|
|
850
|
-
Cidr?: string;
|
|
851
|
-
NetmaskLength?: number;
|
|
852
|
-
ClientToken?: string;
|
|
853
|
-
Description?: string;
|
|
854
|
-
PreviewNextCidr?: boolean;
|
|
855
|
-
AllowedCidrs?: string[];
|
|
856
|
-
DisallowedCidrs?: string[];
|
|
852
|
+
Cidr?: string | undefined;
|
|
853
|
+
NetmaskLength?: number | undefined;
|
|
854
|
+
ClientToken?: string | undefined;
|
|
855
|
+
Description?: string | undefined;
|
|
856
|
+
PreviewNextCidr?: boolean | undefined;
|
|
857
|
+
AllowedCidrs?: string[] | undefined;
|
|
858
|
+
DisallowedCidrs?: string[] | undefined;
|
|
857
859
|
}
|
|
858
860
|
export declare const IpamPoolAllocationResourceType: {
|
|
859
861
|
readonly custom: "custom";
|
|
@@ -866,16 +868,16 @@ export declare const IpamPoolAllocationResourceType: {
|
|
|
866
868
|
export type IpamPoolAllocationResourceType =
|
|
867
869
|
(typeof IpamPoolAllocationResourceType)[keyof typeof IpamPoolAllocationResourceType];
|
|
868
870
|
export interface IpamPoolAllocation {
|
|
869
|
-
Cidr?: string;
|
|
870
|
-
IpamPoolAllocationId?: string;
|
|
871
|
-
Description?: string;
|
|
872
|
-
ResourceId?: string;
|
|
873
|
-
ResourceType?: IpamPoolAllocationResourceType;
|
|
874
|
-
ResourceRegion?: string;
|
|
875
|
-
ResourceOwner?: string;
|
|
871
|
+
Cidr?: string | undefined;
|
|
872
|
+
IpamPoolAllocationId?: string | undefined;
|
|
873
|
+
Description?: string | undefined;
|
|
874
|
+
ResourceId?: string | undefined;
|
|
875
|
+
ResourceType?: IpamPoolAllocationResourceType | undefined;
|
|
876
|
+
ResourceRegion?: string | undefined;
|
|
877
|
+
ResourceOwner?: string | undefined;
|
|
876
878
|
}
|
|
877
879
|
export interface AllocateIpamPoolCidrResult {
|
|
878
|
-
IpamPoolAllocation?: IpamPoolAllocation;
|
|
880
|
+
IpamPoolAllocation?: IpamPoolAllocation | undefined;
|
|
879
881
|
}
|
|
880
882
|
export declare const AllocationState: {
|
|
881
883
|
readonly available: "available";
|
|
@@ -902,11 +904,11 @@ export declare const AllocationType: {
|
|
|
902
904
|
export type AllocationType =
|
|
903
905
|
(typeof AllocationType)[keyof typeof AllocationType];
|
|
904
906
|
export interface AllowedPrincipal {
|
|
905
|
-
PrincipalType?: PrincipalType;
|
|
906
|
-
Principal?: string;
|
|
907
|
-
ServicePermissionId?: string;
|
|
908
|
-
Tags?: Tag[];
|
|
909
|
-
ServiceId?: string;
|
|
907
|
+
PrincipalType?: PrincipalType | undefined;
|
|
908
|
+
Principal?: string | undefined;
|
|
909
|
+
ServicePermissionId?: string | undefined;
|
|
910
|
+
Tags?: Tag[] | undefined;
|
|
911
|
+
ServiceId?: string | undefined;
|
|
910
912
|
}
|
|
911
913
|
export declare const AllowsMultipleInstanceTypes: {
|
|
912
914
|
readonly off: "off";
|
|
@@ -915,54 +917,54 @@ export declare const AllowsMultipleInstanceTypes: {
|
|
|
915
917
|
export type AllowsMultipleInstanceTypes =
|
|
916
918
|
(typeof AllowsMultipleInstanceTypes)[keyof typeof AllowsMultipleInstanceTypes];
|
|
917
919
|
export interface AlternatePathHint {
|
|
918
|
-
ComponentId?: string;
|
|
919
|
-
ComponentArn?: string;
|
|
920
|
+
ComponentId?: string | undefined;
|
|
921
|
+
ComponentArn?: string | undefined;
|
|
920
922
|
}
|
|
921
923
|
export interface ApplySecurityGroupsToClientVpnTargetNetworkRequest {
|
|
922
924
|
ClientVpnEndpointId: string | undefined;
|
|
923
925
|
VpcId: string | undefined;
|
|
924
926
|
SecurityGroupIds: string[] | undefined;
|
|
925
|
-
DryRun?: boolean;
|
|
927
|
+
DryRun?: boolean | undefined;
|
|
926
928
|
}
|
|
927
929
|
export interface ApplySecurityGroupsToClientVpnTargetNetworkResult {
|
|
928
|
-
SecurityGroupIds?: string[];
|
|
930
|
+
SecurityGroupIds?: string[] | undefined;
|
|
929
931
|
}
|
|
930
932
|
export interface AssignIpv6AddressesRequest {
|
|
931
|
-
Ipv6PrefixCount?: number;
|
|
932
|
-
Ipv6Prefixes?: string[];
|
|
933
|
+
Ipv6PrefixCount?: number | undefined;
|
|
934
|
+
Ipv6Prefixes?: string[] | undefined;
|
|
933
935
|
NetworkInterfaceId: string | undefined;
|
|
934
|
-
Ipv6Addresses?: string[];
|
|
935
|
-
Ipv6AddressCount?: number;
|
|
936
|
+
Ipv6Addresses?: string[] | undefined;
|
|
937
|
+
Ipv6AddressCount?: number | undefined;
|
|
936
938
|
}
|
|
937
939
|
export interface AssignIpv6AddressesResult {
|
|
938
|
-
AssignedIpv6Addresses?: string[];
|
|
939
|
-
AssignedIpv6Prefixes?: string[];
|
|
940
|
-
NetworkInterfaceId?: string;
|
|
940
|
+
AssignedIpv6Addresses?: string[] | undefined;
|
|
941
|
+
AssignedIpv6Prefixes?: string[] | undefined;
|
|
942
|
+
NetworkInterfaceId?: string | undefined;
|
|
941
943
|
}
|
|
942
944
|
export interface AssignPrivateIpAddressesRequest {
|
|
943
|
-
Ipv4Prefixes?: string[];
|
|
944
|
-
Ipv4PrefixCount?: number;
|
|
945
|
+
Ipv4Prefixes?: string[] | undefined;
|
|
946
|
+
Ipv4PrefixCount?: number | undefined;
|
|
945
947
|
NetworkInterfaceId: string | undefined;
|
|
946
|
-
PrivateIpAddresses?: string[];
|
|
947
|
-
SecondaryPrivateIpAddressCount?: number;
|
|
948
|
-
AllowReassignment?: boolean;
|
|
948
|
+
PrivateIpAddresses?: string[] | undefined;
|
|
949
|
+
SecondaryPrivateIpAddressCount?: number | undefined;
|
|
950
|
+
AllowReassignment?: boolean | undefined;
|
|
949
951
|
}
|
|
950
952
|
export interface Ipv4PrefixSpecification {
|
|
951
|
-
Ipv4Prefix?: string;
|
|
953
|
+
Ipv4Prefix?: string | undefined;
|
|
952
954
|
}
|
|
953
955
|
export interface AssignedPrivateIpAddress {
|
|
954
|
-
PrivateIpAddress?: string;
|
|
956
|
+
PrivateIpAddress?: string | undefined;
|
|
955
957
|
}
|
|
956
958
|
export interface AssignPrivateIpAddressesResult {
|
|
957
|
-
NetworkInterfaceId?: string;
|
|
958
|
-
AssignedPrivateIpAddresses?: AssignedPrivateIpAddress[];
|
|
959
|
-
AssignedIpv4Prefixes?: Ipv4PrefixSpecification[];
|
|
959
|
+
NetworkInterfaceId?: string | undefined;
|
|
960
|
+
AssignedPrivateIpAddresses?: AssignedPrivateIpAddress[] | undefined;
|
|
961
|
+
AssignedIpv4Prefixes?: Ipv4PrefixSpecification[] | undefined;
|
|
960
962
|
}
|
|
961
963
|
export interface AssignPrivateNatGatewayAddressRequest {
|
|
962
964
|
NatGatewayId: string | undefined;
|
|
963
|
-
PrivateIpAddresses?: string[];
|
|
964
|
-
PrivateIpAddressCount?: number;
|
|
965
|
-
DryRun?: boolean;
|
|
965
|
+
PrivateIpAddresses?: string[] | undefined;
|
|
966
|
+
PrivateIpAddressCount?: number | undefined;
|
|
967
|
+
DryRun?: boolean | undefined;
|
|
966
968
|
}
|
|
967
969
|
export declare const NatGatewayAddressStatus: {
|
|
968
970
|
readonly ASSIGNING: "assigning";
|
|
@@ -975,44 +977,44 @@ export declare const NatGatewayAddressStatus: {
|
|
|
975
977
|
export type NatGatewayAddressStatus =
|
|
976
978
|
(typeof NatGatewayAddressStatus)[keyof typeof NatGatewayAddressStatus];
|
|
977
979
|
export interface NatGatewayAddress {
|
|
978
|
-
AllocationId?: string;
|
|
979
|
-
NetworkInterfaceId?: string;
|
|
980
|
-
PrivateIp?: string;
|
|
981
|
-
PublicIp?: string;
|
|
982
|
-
AssociationId?: string;
|
|
983
|
-
IsPrimary?: boolean;
|
|
984
|
-
FailureMessage?: string;
|
|
985
|
-
Status?: NatGatewayAddressStatus;
|
|
980
|
+
AllocationId?: string | undefined;
|
|
981
|
+
NetworkInterfaceId?: string | undefined;
|
|
982
|
+
PrivateIp?: string | undefined;
|
|
983
|
+
PublicIp?: string | undefined;
|
|
984
|
+
AssociationId?: string | undefined;
|
|
985
|
+
IsPrimary?: boolean | undefined;
|
|
986
|
+
FailureMessage?: string | undefined;
|
|
987
|
+
Status?: NatGatewayAddressStatus | undefined;
|
|
986
988
|
}
|
|
987
989
|
export interface AssignPrivateNatGatewayAddressResult {
|
|
988
|
-
NatGatewayId?: string;
|
|
989
|
-
NatGatewayAddresses?: NatGatewayAddress[];
|
|
990
|
+
NatGatewayId?: string | undefined;
|
|
991
|
+
NatGatewayAddresses?: NatGatewayAddress[] | undefined;
|
|
990
992
|
}
|
|
991
993
|
export interface AssociateAddressRequest {
|
|
992
|
-
AllocationId?: string;
|
|
993
|
-
InstanceId?: string;
|
|
994
|
-
PublicIp?: string;
|
|
995
|
-
DryRun?: boolean;
|
|
996
|
-
NetworkInterfaceId?: string;
|
|
997
|
-
PrivateIpAddress?: string;
|
|
998
|
-
AllowReassociation?: boolean;
|
|
994
|
+
AllocationId?: string | undefined;
|
|
995
|
+
InstanceId?: string | undefined;
|
|
996
|
+
PublicIp?: string | undefined;
|
|
997
|
+
DryRun?: boolean | undefined;
|
|
998
|
+
NetworkInterfaceId?: string | undefined;
|
|
999
|
+
PrivateIpAddress?: string | undefined;
|
|
1000
|
+
AllowReassociation?: boolean | undefined;
|
|
999
1001
|
}
|
|
1000
1002
|
export interface AssociateAddressResult {
|
|
1001
|
-
AssociationId?: string;
|
|
1003
|
+
AssociationId?: string | undefined;
|
|
1002
1004
|
}
|
|
1003
1005
|
export interface AssociateCapacityReservationBillingOwnerRequest {
|
|
1004
|
-
DryRun?: boolean;
|
|
1006
|
+
DryRun?: boolean | undefined;
|
|
1005
1007
|
CapacityReservationId: string | undefined;
|
|
1006
1008
|
UnusedReservationBillingOwnerId: string | undefined;
|
|
1007
1009
|
}
|
|
1008
1010
|
export interface AssociateCapacityReservationBillingOwnerResult {
|
|
1009
|
-
Return?: boolean;
|
|
1011
|
+
Return?: boolean | undefined;
|
|
1010
1012
|
}
|
|
1011
1013
|
export interface AssociateClientVpnTargetNetworkRequest {
|
|
1012
1014
|
ClientVpnEndpointId: string | undefined;
|
|
1013
1015
|
SubnetId: string | undefined;
|
|
1014
|
-
ClientToken?: string;
|
|
1015
|
-
DryRun?: boolean;
|
|
1016
|
+
ClientToken?: string | undefined;
|
|
1017
|
+
DryRun?: boolean | undefined;
|
|
1016
1018
|
}
|
|
1017
1019
|
export declare const AssociationStatusCode: {
|
|
1018
1020
|
readonly associated: "associated";
|
|
@@ -1024,39 +1026,39 @@ export declare const AssociationStatusCode: {
|
|
|
1024
1026
|
export type AssociationStatusCode =
|
|
1025
1027
|
(typeof AssociationStatusCode)[keyof typeof AssociationStatusCode];
|
|
1026
1028
|
export interface AssociationStatus {
|
|
1027
|
-
Code?: AssociationStatusCode;
|
|
1028
|
-
Message?: string;
|
|
1029
|
+
Code?: AssociationStatusCode | undefined;
|
|
1030
|
+
Message?: string | undefined;
|
|
1029
1031
|
}
|
|
1030
1032
|
export interface AssociateClientVpnTargetNetworkResult {
|
|
1031
|
-
AssociationId?: string;
|
|
1032
|
-
Status?: AssociationStatus;
|
|
1033
|
+
AssociationId?: string | undefined;
|
|
1034
|
+
Status?: AssociationStatus | undefined;
|
|
1033
1035
|
}
|
|
1034
1036
|
export interface AssociateDhcpOptionsRequest {
|
|
1035
1037
|
DhcpOptionsId: string | undefined;
|
|
1036
1038
|
VpcId: string | undefined;
|
|
1037
|
-
DryRun?: boolean;
|
|
1039
|
+
DryRun?: boolean | undefined;
|
|
1038
1040
|
}
|
|
1039
1041
|
export interface AssociateEnclaveCertificateIamRoleRequest {
|
|
1040
1042
|
CertificateArn: string | undefined;
|
|
1041
1043
|
RoleArn: string | undefined;
|
|
1042
|
-
DryRun?: boolean;
|
|
1044
|
+
DryRun?: boolean | undefined;
|
|
1043
1045
|
}
|
|
1044
1046
|
export interface AssociateEnclaveCertificateIamRoleResult {
|
|
1045
|
-
CertificateS3BucketName?: string;
|
|
1046
|
-
CertificateS3ObjectKey?: string;
|
|
1047
|
-
EncryptionKmsKeyId?: string;
|
|
1047
|
+
CertificateS3BucketName?: string | undefined;
|
|
1048
|
+
CertificateS3ObjectKey?: string | undefined;
|
|
1049
|
+
EncryptionKmsKeyId?: string | undefined;
|
|
1048
1050
|
}
|
|
1049
1051
|
export interface IamInstanceProfileSpecification {
|
|
1050
|
-
Arn?: string;
|
|
1051
|
-
Name?: string;
|
|
1052
|
+
Arn?: string | undefined;
|
|
1053
|
+
Name?: string | undefined;
|
|
1052
1054
|
}
|
|
1053
1055
|
export interface AssociateIamInstanceProfileRequest {
|
|
1054
1056
|
IamInstanceProfile: IamInstanceProfileSpecification | undefined;
|
|
1055
1057
|
InstanceId: string | undefined;
|
|
1056
1058
|
}
|
|
1057
1059
|
export interface IamInstanceProfile {
|
|
1058
|
-
Arn?: string;
|
|
1059
|
-
Id?: string;
|
|
1060
|
+
Arn?: string | undefined;
|
|
1061
|
+
Id?: string | undefined;
|
|
1060
1062
|
}
|
|
1061
1063
|
export declare const IamInstanceProfileAssociationState: {
|
|
1062
1064
|
readonly ASSOCIATED: "associated";
|
|
@@ -1067,29 +1069,29 @@ export declare const IamInstanceProfileAssociationState: {
|
|
|
1067
1069
|
export type IamInstanceProfileAssociationState =
|
|
1068
1070
|
(typeof IamInstanceProfileAssociationState)[keyof typeof IamInstanceProfileAssociationState];
|
|
1069
1071
|
export interface IamInstanceProfileAssociation {
|
|
1070
|
-
AssociationId?: string;
|
|
1071
|
-
InstanceId?: string;
|
|
1072
|
-
IamInstanceProfile?: IamInstanceProfile;
|
|
1073
|
-
State?: IamInstanceProfileAssociationState;
|
|
1074
|
-
Timestamp?: Date;
|
|
1072
|
+
AssociationId?: string | undefined;
|
|
1073
|
+
InstanceId?: string | undefined;
|
|
1074
|
+
IamInstanceProfile?: IamInstanceProfile | undefined;
|
|
1075
|
+
State?: IamInstanceProfileAssociationState | undefined;
|
|
1076
|
+
Timestamp?: Date | undefined;
|
|
1075
1077
|
}
|
|
1076
1078
|
export interface AssociateIamInstanceProfileResult {
|
|
1077
|
-
IamInstanceProfileAssociation?: IamInstanceProfileAssociation;
|
|
1079
|
+
IamInstanceProfileAssociation?: IamInstanceProfileAssociation | undefined;
|
|
1078
1080
|
}
|
|
1079
1081
|
export interface InstanceEventWindowAssociationRequest {
|
|
1080
|
-
InstanceIds?: string[];
|
|
1081
|
-
InstanceTags?: Tag[];
|
|
1082
|
-
DedicatedHostIds?: string[];
|
|
1082
|
+
InstanceIds?: string[] | undefined;
|
|
1083
|
+
InstanceTags?: Tag[] | undefined;
|
|
1084
|
+
DedicatedHostIds?: string[] | undefined;
|
|
1083
1085
|
}
|
|
1084
1086
|
export interface AssociateInstanceEventWindowRequest {
|
|
1085
|
-
DryRun?: boolean;
|
|
1087
|
+
DryRun?: boolean | undefined;
|
|
1086
1088
|
InstanceEventWindowId: string | undefined;
|
|
1087
1089
|
AssociationTarget: InstanceEventWindowAssociationRequest | undefined;
|
|
1088
1090
|
}
|
|
1089
1091
|
export interface InstanceEventWindowAssociationTarget {
|
|
1090
|
-
InstanceIds?: string[];
|
|
1091
|
-
Tags?: Tag[];
|
|
1092
|
-
DedicatedHostIds?: string[];
|
|
1092
|
+
InstanceIds?: string[] | undefined;
|
|
1093
|
+
Tags?: Tag[] | undefined;
|
|
1094
|
+
DedicatedHostIds?: string[] | undefined;
|
|
1093
1095
|
}
|
|
1094
1096
|
export declare const InstanceEventWindowState: {
|
|
1095
1097
|
readonly active: "active";
|
|
@@ -1110,37 +1112,37 @@ export declare const WeekDay: {
|
|
|
1110
1112
|
};
|
|
1111
1113
|
export type WeekDay = (typeof WeekDay)[keyof typeof WeekDay];
|
|
1112
1114
|
export interface InstanceEventWindowTimeRange {
|
|
1113
|
-
StartWeekDay?: WeekDay;
|
|
1114
|
-
StartHour?: number;
|
|
1115
|
-
EndWeekDay?: WeekDay;
|
|
1116
|
-
EndHour?: number;
|
|
1115
|
+
StartWeekDay?: WeekDay | undefined;
|
|
1116
|
+
StartHour?: number | undefined;
|
|
1117
|
+
EndWeekDay?: WeekDay | undefined;
|
|
1118
|
+
EndHour?: number | undefined;
|
|
1117
1119
|
}
|
|
1118
1120
|
export interface InstanceEventWindow {
|
|
1119
|
-
InstanceEventWindowId?: string;
|
|
1120
|
-
TimeRanges?: InstanceEventWindowTimeRange[];
|
|
1121
|
-
Name?: string;
|
|
1122
|
-
CronExpression?: string;
|
|
1123
|
-
AssociationTarget?: InstanceEventWindowAssociationTarget;
|
|
1124
|
-
State?: InstanceEventWindowState;
|
|
1125
|
-
Tags?: Tag[];
|
|
1121
|
+
InstanceEventWindowId?: string | undefined;
|
|
1122
|
+
TimeRanges?: InstanceEventWindowTimeRange[] | undefined;
|
|
1123
|
+
Name?: string | undefined;
|
|
1124
|
+
CronExpression?: string | undefined;
|
|
1125
|
+
AssociationTarget?: InstanceEventWindowAssociationTarget | undefined;
|
|
1126
|
+
State?: InstanceEventWindowState | undefined;
|
|
1127
|
+
Tags?: Tag[] | undefined;
|
|
1126
1128
|
}
|
|
1127
1129
|
export interface AssociateInstanceEventWindowResult {
|
|
1128
|
-
InstanceEventWindow?: InstanceEventWindow;
|
|
1130
|
+
InstanceEventWindow?: InstanceEventWindow | undefined;
|
|
1129
1131
|
}
|
|
1130
1132
|
export interface AssociateIpamByoasnRequest {
|
|
1131
|
-
DryRun?: boolean;
|
|
1133
|
+
DryRun?: boolean | undefined;
|
|
1132
1134
|
Asn: string | undefined;
|
|
1133
1135
|
Cidr: string | undefined;
|
|
1134
1136
|
}
|
|
1135
1137
|
export interface AssociateIpamByoasnResult {
|
|
1136
|
-
AsnAssociation?: AsnAssociation;
|
|
1138
|
+
AsnAssociation?: AsnAssociation | undefined;
|
|
1137
1139
|
}
|
|
1138
1140
|
export interface AssociateIpamResourceDiscoveryRequest {
|
|
1139
|
-
DryRun?: boolean;
|
|
1141
|
+
DryRun?: boolean | undefined;
|
|
1140
1142
|
IpamId: string | undefined;
|
|
1141
1143
|
IpamResourceDiscoveryId: string | undefined;
|
|
1142
|
-
TagSpecifications?: TagSpecification[];
|
|
1143
|
-
ClientToken?: string;
|
|
1144
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1145
|
+
ClientToken?: string | undefined;
|
|
1144
1146
|
}
|
|
1145
1147
|
export declare const IpamAssociatedResourceDiscoveryStatus: {
|
|
1146
1148
|
readonly ACTIVE: "active";
|
|
@@ -1162,35 +1164,37 @@ export declare const IpamResourceDiscoveryAssociationState: {
|
|
|
1162
1164
|
export type IpamResourceDiscoveryAssociationState =
|
|
1163
1165
|
(typeof IpamResourceDiscoveryAssociationState)[keyof typeof IpamResourceDiscoveryAssociationState];
|
|
1164
1166
|
export interface IpamResourceDiscoveryAssociation {
|
|
1165
|
-
OwnerId?: string;
|
|
1166
|
-
IpamResourceDiscoveryAssociationId?: string;
|
|
1167
|
-
IpamResourceDiscoveryAssociationArn?: string;
|
|
1168
|
-
IpamResourceDiscoveryId?: string;
|
|
1169
|
-
IpamId?: string;
|
|
1170
|
-
IpamArn?: string;
|
|
1171
|
-
IpamRegion?: string;
|
|
1172
|
-
IsDefault?: boolean;
|
|
1173
|
-
ResourceDiscoveryStatus?: IpamAssociatedResourceDiscoveryStatus;
|
|
1174
|
-
State?: IpamResourceDiscoveryAssociationState;
|
|
1175
|
-
Tags?: Tag[];
|
|
1167
|
+
OwnerId?: string | undefined;
|
|
1168
|
+
IpamResourceDiscoveryAssociationId?: string | undefined;
|
|
1169
|
+
IpamResourceDiscoveryAssociationArn?: string | undefined;
|
|
1170
|
+
IpamResourceDiscoveryId?: string | undefined;
|
|
1171
|
+
IpamId?: string | undefined;
|
|
1172
|
+
IpamArn?: string | undefined;
|
|
1173
|
+
IpamRegion?: string | undefined;
|
|
1174
|
+
IsDefault?: boolean | undefined;
|
|
1175
|
+
ResourceDiscoveryStatus?: IpamAssociatedResourceDiscoveryStatus | undefined;
|
|
1176
|
+
State?: IpamResourceDiscoveryAssociationState | undefined;
|
|
1177
|
+
Tags?: Tag[] | undefined;
|
|
1176
1178
|
}
|
|
1177
1179
|
export interface AssociateIpamResourceDiscoveryResult {
|
|
1178
|
-
IpamResourceDiscoveryAssociation?:
|
|
1180
|
+
IpamResourceDiscoveryAssociation?:
|
|
1181
|
+
| IpamResourceDiscoveryAssociation
|
|
1182
|
+
| undefined;
|
|
1179
1183
|
}
|
|
1180
1184
|
export interface AssociateNatGatewayAddressRequest {
|
|
1181
1185
|
NatGatewayId: string | undefined;
|
|
1182
1186
|
AllocationIds: string[] | undefined;
|
|
1183
|
-
PrivateIpAddresses?: string[];
|
|
1184
|
-
DryRun?: boolean;
|
|
1187
|
+
PrivateIpAddresses?: string[] | undefined;
|
|
1188
|
+
DryRun?: boolean | undefined;
|
|
1185
1189
|
}
|
|
1186
1190
|
export interface AssociateNatGatewayAddressResult {
|
|
1187
|
-
NatGatewayId?: string;
|
|
1188
|
-
NatGatewayAddresses?: NatGatewayAddress[];
|
|
1191
|
+
NatGatewayId?: string | undefined;
|
|
1192
|
+
NatGatewayAddresses?: NatGatewayAddress[] | undefined;
|
|
1189
1193
|
}
|
|
1190
1194
|
export interface AssociateRouteTableRequest {
|
|
1191
|
-
GatewayId?: string;
|
|
1192
|
-
DryRun?: boolean;
|
|
1193
|
-
SubnetId?: string;
|
|
1195
|
+
GatewayId?: string | undefined;
|
|
1196
|
+
DryRun?: boolean | undefined;
|
|
1197
|
+
SubnetId?: string | undefined;
|
|
1194
1198
|
RouteTableId: string | undefined;
|
|
1195
1199
|
}
|
|
1196
1200
|
export declare const RouteTableAssociationStateCode: {
|
|
@@ -1203,17 +1207,17 @@ export declare const RouteTableAssociationStateCode: {
|
|
|
1203
1207
|
export type RouteTableAssociationStateCode =
|
|
1204
1208
|
(typeof RouteTableAssociationStateCode)[keyof typeof RouteTableAssociationStateCode];
|
|
1205
1209
|
export interface RouteTableAssociationState {
|
|
1206
|
-
State?: RouteTableAssociationStateCode;
|
|
1207
|
-
StatusMessage?: string;
|
|
1210
|
+
State?: RouteTableAssociationStateCode | undefined;
|
|
1211
|
+
StatusMessage?: string | undefined;
|
|
1208
1212
|
}
|
|
1209
1213
|
export interface AssociateRouteTableResult {
|
|
1210
|
-
AssociationId?: string;
|
|
1211
|
-
AssociationState?: RouteTableAssociationState;
|
|
1214
|
+
AssociationId?: string | undefined;
|
|
1215
|
+
AssociationState?: RouteTableAssociationState | undefined;
|
|
1212
1216
|
}
|
|
1213
1217
|
export interface AssociateSecurityGroupVpcRequest {
|
|
1214
1218
|
GroupId: string | undefined;
|
|
1215
1219
|
VpcId: string | undefined;
|
|
1216
|
-
DryRun?: boolean;
|
|
1220
|
+
DryRun?: boolean | undefined;
|
|
1217
1221
|
}
|
|
1218
1222
|
export declare const SecurityGroupVpcAssociationState: {
|
|
1219
1223
|
readonly associated: "associated";
|
|
@@ -1226,13 +1230,13 @@ export declare const SecurityGroupVpcAssociationState: {
|
|
|
1226
1230
|
export type SecurityGroupVpcAssociationState =
|
|
1227
1231
|
(typeof SecurityGroupVpcAssociationState)[keyof typeof SecurityGroupVpcAssociationState];
|
|
1228
1232
|
export interface AssociateSecurityGroupVpcResult {
|
|
1229
|
-
State?: SecurityGroupVpcAssociationState;
|
|
1233
|
+
State?: SecurityGroupVpcAssociationState | undefined;
|
|
1230
1234
|
}
|
|
1231
1235
|
export interface AssociateSubnetCidrBlockRequest {
|
|
1232
|
-
Ipv6IpamPoolId?: string;
|
|
1233
|
-
Ipv6NetmaskLength?: number;
|
|
1236
|
+
Ipv6IpamPoolId?: string | undefined;
|
|
1237
|
+
Ipv6NetmaskLength?: number | undefined;
|
|
1234
1238
|
SubnetId: string | undefined;
|
|
1235
|
-
Ipv6CidrBlock?: string;
|
|
1239
|
+
Ipv6CidrBlock?: string | undefined;
|
|
1236
1240
|
}
|
|
1237
1241
|
export declare const IpSource: {
|
|
1238
1242
|
readonly amazon: "amazon";
|
|
@@ -1257,33 +1261,33 @@ export declare const SubnetCidrBlockStateCode: {
|
|
|
1257
1261
|
export type SubnetCidrBlockStateCode =
|
|
1258
1262
|
(typeof SubnetCidrBlockStateCode)[keyof typeof SubnetCidrBlockStateCode];
|
|
1259
1263
|
export interface SubnetCidrBlockState {
|
|
1260
|
-
State?: SubnetCidrBlockStateCode;
|
|
1261
|
-
StatusMessage?: string;
|
|
1264
|
+
State?: SubnetCidrBlockStateCode | undefined;
|
|
1265
|
+
StatusMessage?: string | undefined;
|
|
1262
1266
|
}
|
|
1263
1267
|
export interface SubnetIpv6CidrBlockAssociation {
|
|
1264
|
-
AssociationId?: string;
|
|
1265
|
-
Ipv6CidrBlock?: string;
|
|
1266
|
-
Ipv6CidrBlockState?: SubnetCidrBlockState;
|
|
1267
|
-
Ipv6AddressAttribute?: Ipv6AddressAttribute;
|
|
1268
|
-
IpSource?: IpSource;
|
|
1268
|
+
AssociationId?: string | undefined;
|
|
1269
|
+
Ipv6CidrBlock?: string | undefined;
|
|
1270
|
+
Ipv6CidrBlockState?: SubnetCidrBlockState | undefined;
|
|
1271
|
+
Ipv6AddressAttribute?: Ipv6AddressAttribute | undefined;
|
|
1272
|
+
IpSource?: IpSource | undefined;
|
|
1269
1273
|
}
|
|
1270
1274
|
export interface AssociateSubnetCidrBlockResult {
|
|
1271
|
-
Ipv6CidrBlockAssociation?: SubnetIpv6CidrBlockAssociation;
|
|
1272
|
-
SubnetId?: string;
|
|
1275
|
+
Ipv6CidrBlockAssociation?: SubnetIpv6CidrBlockAssociation | undefined;
|
|
1276
|
+
SubnetId?: string | undefined;
|
|
1273
1277
|
}
|
|
1274
1278
|
export interface AssociateTransitGatewayMulticastDomainRequest {
|
|
1275
1279
|
TransitGatewayMulticastDomainId: string | undefined;
|
|
1276
1280
|
TransitGatewayAttachmentId: string | undefined;
|
|
1277
1281
|
SubnetIds: string[] | undefined;
|
|
1278
|
-
DryRun?: boolean;
|
|
1282
|
+
DryRun?: boolean | undefined;
|
|
1279
1283
|
}
|
|
1280
1284
|
export interface AssociateTransitGatewayMulticastDomainResult {
|
|
1281
|
-
Associations?: TransitGatewayMulticastDomainAssociations;
|
|
1285
|
+
Associations?: TransitGatewayMulticastDomainAssociations | undefined;
|
|
1282
1286
|
}
|
|
1283
1287
|
export interface AssociateTransitGatewayPolicyTableRequest {
|
|
1284
1288
|
TransitGatewayPolicyTableId: string | undefined;
|
|
1285
1289
|
TransitGatewayAttachmentId: string | undefined;
|
|
1286
|
-
DryRun?: boolean;
|
|
1290
|
+
DryRun?: boolean | undefined;
|
|
1287
1291
|
}
|
|
1288
1292
|
export declare const TransitGatewayAssociationState: {
|
|
1289
1293
|
readonly associated: "associated";
|
|
@@ -1294,37 +1298,37 @@ export declare const TransitGatewayAssociationState: {
|
|
|
1294
1298
|
export type TransitGatewayAssociationState =
|
|
1295
1299
|
(typeof TransitGatewayAssociationState)[keyof typeof TransitGatewayAssociationState];
|
|
1296
1300
|
export interface TransitGatewayPolicyTableAssociation {
|
|
1297
|
-
TransitGatewayPolicyTableId?: string;
|
|
1298
|
-
TransitGatewayAttachmentId?: string;
|
|
1299
|
-
ResourceId?: string;
|
|
1300
|
-
ResourceType?: TransitGatewayAttachmentResourceType;
|
|
1301
|
-
State?: TransitGatewayAssociationState;
|
|
1301
|
+
TransitGatewayPolicyTableId?: string | undefined;
|
|
1302
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
1303
|
+
ResourceId?: string | undefined;
|
|
1304
|
+
ResourceType?: TransitGatewayAttachmentResourceType | undefined;
|
|
1305
|
+
State?: TransitGatewayAssociationState | undefined;
|
|
1302
1306
|
}
|
|
1303
1307
|
export interface AssociateTransitGatewayPolicyTableResult {
|
|
1304
|
-
Association?: TransitGatewayPolicyTableAssociation;
|
|
1308
|
+
Association?: TransitGatewayPolicyTableAssociation | undefined;
|
|
1305
1309
|
}
|
|
1306
1310
|
export interface AssociateTransitGatewayRouteTableRequest {
|
|
1307
1311
|
TransitGatewayRouteTableId: string | undefined;
|
|
1308
1312
|
TransitGatewayAttachmentId: string | undefined;
|
|
1309
|
-
DryRun?: boolean;
|
|
1313
|
+
DryRun?: boolean | undefined;
|
|
1310
1314
|
}
|
|
1311
1315
|
export interface TransitGatewayAssociation {
|
|
1312
|
-
TransitGatewayRouteTableId?: string;
|
|
1313
|
-
TransitGatewayAttachmentId?: string;
|
|
1314
|
-
ResourceId?: string;
|
|
1315
|
-
ResourceType?: TransitGatewayAttachmentResourceType;
|
|
1316
|
-
State?: TransitGatewayAssociationState;
|
|
1316
|
+
TransitGatewayRouteTableId?: string | undefined;
|
|
1317
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
1318
|
+
ResourceId?: string | undefined;
|
|
1319
|
+
ResourceType?: TransitGatewayAttachmentResourceType | undefined;
|
|
1320
|
+
State?: TransitGatewayAssociationState | undefined;
|
|
1317
1321
|
}
|
|
1318
1322
|
export interface AssociateTransitGatewayRouteTableResult {
|
|
1319
|
-
Association?: TransitGatewayAssociation;
|
|
1323
|
+
Association?: TransitGatewayAssociation | undefined;
|
|
1320
1324
|
}
|
|
1321
1325
|
export interface AssociateTrunkInterfaceRequest {
|
|
1322
1326
|
BranchInterfaceId: string | undefined;
|
|
1323
1327
|
TrunkInterfaceId: string | undefined;
|
|
1324
|
-
VlanId?: number;
|
|
1325
|
-
GreKey?: number;
|
|
1326
|
-
ClientToken?: string;
|
|
1327
|
-
DryRun?: boolean;
|
|
1328
|
+
VlanId?: number | undefined;
|
|
1329
|
+
GreKey?: number | undefined;
|
|
1330
|
+
ClientToken?: string | undefined;
|
|
1331
|
+
DryRun?: boolean | undefined;
|
|
1328
1332
|
}
|
|
1329
1333
|
export declare const InterfaceProtocolType: {
|
|
1330
1334
|
readonly GRE: "GRE";
|
|
@@ -1333,29 +1337,29 @@ export declare const InterfaceProtocolType: {
|
|
|
1333
1337
|
export type InterfaceProtocolType =
|
|
1334
1338
|
(typeof InterfaceProtocolType)[keyof typeof InterfaceProtocolType];
|
|
1335
1339
|
export interface TrunkInterfaceAssociation {
|
|
1336
|
-
AssociationId?: string;
|
|
1337
|
-
BranchInterfaceId?: string;
|
|
1338
|
-
TrunkInterfaceId?: string;
|
|
1339
|
-
InterfaceProtocol?: InterfaceProtocolType;
|
|
1340
|
-
VlanId?: number;
|
|
1341
|
-
GreKey?: number;
|
|
1342
|
-
Tags?: Tag[];
|
|
1340
|
+
AssociationId?: string | undefined;
|
|
1341
|
+
BranchInterfaceId?: string | undefined;
|
|
1342
|
+
TrunkInterfaceId?: string | undefined;
|
|
1343
|
+
InterfaceProtocol?: InterfaceProtocolType | undefined;
|
|
1344
|
+
VlanId?: number | undefined;
|
|
1345
|
+
GreKey?: number | undefined;
|
|
1346
|
+
Tags?: Tag[] | undefined;
|
|
1343
1347
|
}
|
|
1344
1348
|
export interface AssociateTrunkInterfaceResult {
|
|
1345
|
-
InterfaceAssociation?: TrunkInterfaceAssociation;
|
|
1346
|
-
ClientToken?: string;
|
|
1349
|
+
InterfaceAssociation?: TrunkInterfaceAssociation | undefined;
|
|
1350
|
+
ClientToken?: string | undefined;
|
|
1347
1351
|
}
|
|
1348
1352
|
export interface AssociateVpcCidrBlockRequest {
|
|
1349
|
-
CidrBlock?: string;
|
|
1350
|
-
Ipv6CidrBlockNetworkBorderGroup?: string;
|
|
1351
|
-
Ipv6Pool?: string;
|
|
1352
|
-
Ipv6CidrBlock?: string;
|
|
1353
|
-
Ipv4IpamPoolId?: string;
|
|
1354
|
-
Ipv4NetmaskLength?: number;
|
|
1355
|
-
Ipv6IpamPoolId?: string;
|
|
1356
|
-
Ipv6NetmaskLength?: number;
|
|
1353
|
+
CidrBlock?: string | undefined;
|
|
1354
|
+
Ipv6CidrBlockNetworkBorderGroup?: string | undefined;
|
|
1355
|
+
Ipv6Pool?: string | undefined;
|
|
1356
|
+
Ipv6CidrBlock?: string | undefined;
|
|
1357
|
+
Ipv4IpamPoolId?: string | undefined;
|
|
1358
|
+
Ipv4NetmaskLength?: number | undefined;
|
|
1359
|
+
Ipv6IpamPoolId?: string | undefined;
|
|
1360
|
+
Ipv6NetmaskLength?: number | undefined;
|
|
1357
1361
|
VpcId: string | undefined;
|
|
1358
|
-
AmazonProvidedIpv6CidrBlock?: boolean;
|
|
1362
|
+
AmazonProvidedIpv6CidrBlock?: boolean | undefined;
|
|
1359
1363
|
}
|
|
1360
1364
|
export declare const VpcCidrBlockStateCode: {
|
|
1361
1365
|
readonly associated: "associated";
|
|
@@ -1368,66 +1372,66 @@ export declare const VpcCidrBlockStateCode: {
|
|
|
1368
1372
|
export type VpcCidrBlockStateCode =
|
|
1369
1373
|
(typeof VpcCidrBlockStateCode)[keyof typeof VpcCidrBlockStateCode];
|
|
1370
1374
|
export interface VpcCidrBlockState {
|
|
1371
|
-
State?: VpcCidrBlockStateCode;
|
|
1372
|
-
StatusMessage?: string;
|
|
1375
|
+
State?: VpcCidrBlockStateCode | undefined;
|
|
1376
|
+
StatusMessage?: string | undefined;
|
|
1373
1377
|
}
|
|
1374
1378
|
export interface VpcCidrBlockAssociation {
|
|
1375
|
-
AssociationId?: string;
|
|
1376
|
-
CidrBlock?: string;
|
|
1377
|
-
CidrBlockState?: VpcCidrBlockState;
|
|
1379
|
+
AssociationId?: string | undefined;
|
|
1380
|
+
CidrBlock?: string | undefined;
|
|
1381
|
+
CidrBlockState?: VpcCidrBlockState | undefined;
|
|
1378
1382
|
}
|
|
1379
1383
|
export interface VpcIpv6CidrBlockAssociation {
|
|
1380
|
-
AssociationId?: string;
|
|
1381
|
-
Ipv6CidrBlock?: string;
|
|
1382
|
-
Ipv6CidrBlockState?: VpcCidrBlockState;
|
|
1383
|
-
NetworkBorderGroup?: string;
|
|
1384
|
-
Ipv6Pool?: string;
|
|
1385
|
-
Ipv6AddressAttribute?: Ipv6AddressAttribute;
|
|
1386
|
-
IpSource?: IpSource;
|
|
1384
|
+
AssociationId?: string | undefined;
|
|
1385
|
+
Ipv6CidrBlock?: string | undefined;
|
|
1386
|
+
Ipv6CidrBlockState?: VpcCidrBlockState | undefined;
|
|
1387
|
+
NetworkBorderGroup?: string | undefined;
|
|
1388
|
+
Ipv6Pool?: string | undefined;
|
|
1389
|
+
Ipv6AddressAttribute?: Ipv6AddressAttribute | undefined;
|
|
1390
|
+
IpSource?: IpSource | undefined;
|
|
1387
1391
|
}
|
|
1388
1392
|
export interface AssociateVpcCidrBlockResult {
|
|
1389
|
-
Ipv6CidrBlockAssociation?: VpcIpv6CidrBlockAssociation;
|
|
1390
|
-
CidrBlockAssociation?: VpcCidrBlockAssociation;
|
|
1391
|
-
VpcId?: string;
|
|
1393
|
+
Ipv6CidrBlockAssociation?: VpcIpv6CidrBlockAssociation | undefined;
|
|
1394
|
+
CidrBlockAssociation?: VpcCidrBlockAssociation | undefined;
|
|
1395
|
+
VpcId?: string | undefined;
|
|
1392
1396
|
}
|
|
1393
1397
|
export interface AttachClassicLinkVpcRequest {
|
|
1394
|
-
DryRun?: boolean;
|
|
1398
|
+
DryRun?: boolean | undefined;
|
|
1395
1399
|
InstanceId: string | undefined;
|
|
1396
1400
|
VpcId: string | undefined;
|
|
1397
1401
|
Groups: string[] | undefined;
|
|
1398
1402
|
}
|
|
1399
1403
|
export interface AttachClassicLinkVpcResult {
|
|
1400
|
-
Return?: boolean;
|
|
1404
|
+
Return?: boolean | undefined;
|
|
1401
1405
|
}
|
|
1402
1406
|
export interface AttachInternetGatewayRequest {
|
|
1403
|
-
DryRun?: boolean;
|
|
1407
|
+
DryRun?: boolean | undefined;
|
|
1404
1408
|
InternetGatewayId: string | undefined;
|
|
1405
1409
|
VpcId: string | undefined;
|
|
1406
1410
|
}
|
|
1407
1411
|
export interface EnaSrdUdpSpecification {
|
|
1408
|
-
EnaSrdUdpEnabled?: boolean;
|
|
1412
|
+
EnaSrdUdpEnabled?: boolean | undefined;
|
|
1409
1413
|
}
|
|
1410
1414
|
export interface EnaSrdSpecification {
|
|
1411
|
-
EnaSrdEnabled?: boolean;
|
|
1412
|
-
EnaSrdUdpSpecification?: EnaSrdUdpSpecification;
|
|
1415
|
+
EnaSrdEnabled?: boolean | undefined;
|
|
1416
|
+
EnaSrdUdpSpecification?: EnaSrdUdpSpecification | undefined;
|
|
1413
1417
|
}
|
|
1414
1418
|
export interface AttachNetworkInterfaceRequest {
|
|
1415
|
-
NetworkCardIndex?: number;
|
|
1416
|
-
EnaSrdSpecification?: EnaSrdSpecification;
|
|
1417
|
-
DryRun?: boolean;
|
|
1419
|
+
NetworkCardIndex?: number | undefined;
|
|
1420
|
+
EnaSrdSpecification?: EnaSrdSpecification | undefined;
|
|
1421
|
+
DryRun?: boolean | undefined;
|
|
1418
1422
|
NetworkInterfaceId: string | undefined;
|
|
1419
1423
|
InstanceId: string | undefined;
|
|
1420
1424
|
DeviceIndex: number | undefined;
|
|
1421
1425
|
}
|
|
1422
1426
|
export interface AttachNetworkInterfaceResult {
|
|
1423
|
-
AttachmentId?: string;
|
|
1424
|
-
NetworkCardIndex?: number;
|
|
1427
|
+
AttachmentId?: string | undefined;
|
|
1428
|
+
NetworkCardIndex?: number | undefined;
|
|
1425
1429
|
}
|
|
1426
1430
|
export interface AttachVerifiedAccessTrustProviderRequest {
|
|
1427
1431
|
VerifiedAccessInstanceId: string | undefined;
|
|
1428
1432
|
VerifiedAccessTrustProviderId: string | undefined;
|
|
1429
|
-
ClientToken?: string;
|
|
1430
|
-
DryRun?: boolean;
|
|
1433
|
+
ClientToken?: string | undefined;
|
|
1434
|
+
DryRun?: boolean | undefined;
|
|
1431
1435
|
}
|
|
1432
1436
|
export declare const DeviceTrustProviderType: {
|
|
1433
1437
|
readonly crowdstrike: "crowdstrike";
|
|
@@ -1449,61 +1453,63 @@ export declare const UserTrustProviderType: {
|
|
|
1449
1453
|
export type UserTrustProviderType =
|
|
1450
1454
|
(typeof UserTrustProviderType)[keyof typeof UserTrustProviderType];
|
|
1451
1455
|
export interface VerifiedAccessTrustProviderCondensed {
|
|
1452
|
-
VerifiedAccessTrustProviderId?: string;
|
|
1453
|
-
Description?: string;
|
|
1454
|
-
TrustProviderType?: TrustProviderType;
|
|
1455
|
-
UserTrustProviderType?: UserTrustProviderType;
|
|
1456
|
-
DeviceTrustProviderType?: DeviceTrustProviderType;
|
|
1456
|
+
VerifiedAccessTrustProviderId?: string | undefined;
|
|
1457
|
+
Description?: string | undefined;
|
|
1458
|
+
TrustProviderType?: TrustProviderType | undefined;
|
|
1459
|
+
UserTrustProviderType?: UserTrustProviderType | undefined;
|
|
1460
|
+
DeviceTrustProviderType?: DeviceTrustProviderType | undefined;
|
|
1457
1461
|
}
|
|
1458
1462
|
export interface VerifiedAccessInstance {
|
|
1459
|
-
VerifiedAccessInstanceId?: string;
|
|
1460
|
-
Description?: string;
|
|
1461
|
-
VerifiedAccessTrustProviders?:
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1463
|
+
VerifiedAccessInstanceId?: string | undefined;
|
|
1464
|
+
Description?: string | undefined;
|
|
1465
|
+
VerifiedAccessTrustProviders?:
|
|
1466
|
+
| VerifiedAccessTrustProviderCondensed[]
|
|
1467
|
+
| undefined;
|
|
1468
|
+
CreationTime?: string | undefined;
|
|
1469
|
+
LastUpdatedTime?: string | undefined;
|
|
1470
|
+
Tags?: Tag[] | undefined;
|
|
1471
|
+
FipsEnabled?: boolean | undefined;
|
|
1466
1472
|
}
|
|
1467
1473
|
export interface DeviceOptions {
|
|
1468
|
-
TenantId?: string;
|
|
1469
|
-
PublicSigningKeyUrl?: string;
|
|
1474
|
+
TenantId?: string | undefined;
|
|
1475
|
+
PublicSigningKeyUrl?: string | undefined;
|
|
1470
1476
|
}
|
|
1471
1477
|
export interface OidcOptions {
|
|
1472
|
-
Issuer?: string;
|
|
1473
|
-
AuthorizationEndpoint?: string;
|
|
1474
|
-
TokenEndpoint?: string;
|
|
1475
|
-
UserInfoEndpoint?: string;
|
|
1476
|
-
ClientId?: string;
|
|
1477
|
-
ClientSecret?: string;
|
|
1478
|
-
Scope?: string;
|
|
1478
|
+
Issuer?: string | undefined;
|
|
1479
|
+
AuthorizationEndpoint?: string | undefined;
|
|
1480
|
+
TokenEndpoint?: string | undefined;
|
|
1481
|
+
UserInfoEndpoint?: string | undefined;
|
|
1482
|
+
ClientId?: string | undefined;
|
|
1483
|
+
ClientSecret?: string | undefined;
|
|
1484
|
+
Scope?: string | undefined;
|
|
1479
1485
|
}
|
|
1480
1486
|
export interface VerifiedAccessSseSpecificationResponse {
|
|
1481
|
-
CustomerManagedKeyEnabled?: boolean;
|
|
1482
|
-
KmsKeyArn?: string;
|
|
1487
|
+
CustomerManagedKeyEnabled?: boolean | undefined;
|
|
1488
|
+
KmsKeyArn?: string | undefined;
|
|
1483
1489
|
}
|
|
1484
1490
|
export interface VerifiedAccessTrustProvider {
|
|
1485
|
-
VerifiedAccessTrustProviderId?: string;
|
|
1486
|
-
Description?: string;
|
|
1487
|
-
TrustProviderType?: TrustProviderType;
|
|
1488
|
-
UserTrustProviderType?: UserTrustProviderType;
|
|
1489
|
-
DeviceTrustProviderType?: DeviceTrustProviderType;
|
|
1490
|
-
OidcOptions?: OidcOptions;
|
|
1491
|
-
DeviceOptions?: DeviceOptions;
|
|
1492
|
-
PolicyReferenceName?: string;
|
|
1493
|
-
CreationTime?: string;
|
|
1494
|
-
LastUpdatedTime?: string;
|
|
1495
|
-
Tags?: Tag[];
|
|
1496
|
-
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
1491
|
+
VerifiedAccessTrustProviderId?: string | undefined;
|
|
1492
|
+
Description?: string | undefined;
|
|
1493
|
+
TrustProviderType?: TrustProviderType | undefined;
|
|
1494
|
+
UserTrustProviderType?: UserTrustProviderType | undefined;
|
|
1495
|
+
DeviceTrustProviderType?: DeviceTrustProviderType | undefined;
|
|
1496
|
+
OidcOptions?: OidcOptions | undefined;
|
|
1497
|
+
DeviceOptions?: DeviceOptions | undefined;
|
|
1498
|
+
PolicyReferenceName?: string | undefined;
|
|
1499
|
+
CreationTime?: string | undefined;
|
|
1500
|
+
LastUpdatedTime?: string | undefined;
|
|
1501
|
+
Tags?: Tag[] | undefined;
|
|
1502
|
+
SseSpecification?: VerifiedAccessSseSpecificationResponse | undefined;
|
|
1497
1503
|
}
|
|
1498
1504
|
export interface AttachVerifiedAccessTrustProviderResult {
|
|
1499
|
-
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
1500
|
-
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
1505
|
+
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider | undefined;
|
|
1506
|
+
VerifiedAccessInstance?: VerifiedAccessInstance | undefined;
|
|
1501
1507
|
}
|
|
1502
1508
|
export interface AttachVolumeRequest {
|
|
1503
1509
|
Device: string | undefined;
|
|
1504
1510
|
InstanceId: string | undefined;
|
|
1505
1511
|
VolumeId: string | undefined;
|
|
1506
|
-
DryRun?: boolean;
|
|
1512
|
+
DryRun?: boolean | undefined;
|
|
1507
1513
|
}
|
|
1508
1514
|
export declare const VolumeAttachmentState: {
|
|
1509
1515
|
readonly attached: "attached";
|
|
@@ -1515,19 +1521,19 @@ export declare const VolumeAttachmentState: {
|
|
|
1515
1521
|
export type VolumeAttachmentState =
|
|
1516
1522
|
(typeof VolumeAttachmentState)[keyof typeof VolumeAttachmentState];
|
|
1517
1523
|
export interface VolumeAttachment {
|
|
1518
|
-
DeleteOnTermination?: boolean;
|
|
1519
|
-
AssociatedResource?: string;
|
|
1520
|
-
InstanceOwningService?: string;
|
|
1521
|
-
VolumeId?: string;
|
|
1522
|
-
InstanceId?: string;
|
|
1523
|
-
Device?: string;
|
|
1524
|
-
State?: VolumeAttachmentState;
|
|
1525
|
-
AttachTime?: Date;
|
|
1524
|
+
DeleteOnTermination?: boolean | undefined;
|
|
1525
|
+
AssociatedResource?: string | undefined;
|
|
1526
|
+
InstanceOwningService?: string | undefined;
|
|
1527
|
+
VolumeId?: string | undefined;
|
|
1528
|
+
InstanceId?: string | undefined;
|
|
1529
|
+
Device?: string | undefined;
|
|
1530
|
+
State?: VolumeAttachmentState | undefined;
|
|
1531
|
+
AttachTime?: Date | undefined;
|
|
1526
1532
|
}
|
|
1527
1533
|
export interface AttachVpnGatewayRequest {
|
|
1528
1534
|
VpcId: string | undefined;
|
|
1529
1535
|
VpnGatewayId: string | undefined;
|
|
1530
|
-
DryRun?: boolean;
|
|
1536
|
+
DryRun?: boolean | undefined;
|
|
1531
1537
|
}
|
|
1532
1538
|
export declare const AttachmentStatus: {
|
|
1533
1539
|
readonly attached: "attached";
|
|
@@ -1538,20 +1544,20 @@ export declare const AttachmentStatus: {
|
|
|
1538
1544
|
export type AttachmentStatus =
|
|
1539
1545
|
(typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
1540
1546
|
export interface VpcAttachment {
|
|
1541
|
-
VpcId?: string;
|
|
1542
|
-
State?: AttachmentStatus;
|
|
1547
|
+
VpcId?: string | undefined;
|
|
1548
|
+
State?: AttachmentStatus | undefined;
|
|
1543
1549
|
}
|
|
1544
1550
|
export interface AttachVpnGatewayResult {
|
|
1545
|
-
VpcAttachment?: VpcAttachment;
|
|
1551
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
1546
1552
|
}
|
|
1547
1553
|
export interface AuthorizeClientVpnIngressRequest {
|
|
1548
1554
|
ClientVpnEndpointId: string | undefined;
|
|
1549
1555
|
TargetNetworkCidr: string | undefined;
|
|
1550
|
-
AccessGroupId?: string;
|
|
1551
|
-
AuthorizeAllGroups?: boolean;
|
|
1552
|
-
Description?: string;
|
|
1553
|
-
ClientToken?: string;
|
|
1554
|
-
DryRun?: boolean;
|
|
1556
|
+
AccessGroupId?: string | undefined;
|
|
1557
|
+
AuthorizeAllGroups?: boolean | undefined;
|
|
1558
|
+
Description?: string | undefined;
|
|
1559
|
+
ClientToken?: string | undefined;
|
|
1560
|
+
DryRun?: boolean | undefined;
|
|
1555
1561
|
}
|
|
1556
1562
|
export declare const ClientVpnAuthorizationRuleStatusCode: {
|
|
1557
1563
|
readonly active: "active";
|
|
@@ -1562,116 +1568,116 @@ export declare const ClientVpnAuthorizationRuleStatusCode: {
|
|
|
1562
1568
|
export type ClientVpnAuthorizationRuleStatusCode =
|
|
1563
1569
|
(typeof ClientVpnAuthorizationRuleStatusCode)[keyof typeof ClientVpnAuthorizationRuleStatusCode];
|
|
1564
1570
|
export interface ClientVpnAuthorizationRuleStatus {
|
|
1565
|
-
Code?: ClientVpnAuthorizationRuleStatusCode;
|
|
1566
|
-
Message?: string;
|
|
1571
|
+
Code?: ClientVpnAuthorizationRuleStatusCode | undefined;
|
|
1572
|
+
Message?: string | undefined;
|
|
1567
1573
|
}
|
|
1568
1574
|
export interface AuthorizeClientVpnIngressResult {
|
|
1569
|
-
Status?: ClientVpnAuthorizationRuleStatus;
|
|
1575
|
+
Status?: ClientVpnAuthorizationRuleStatus | undefined;
|
|
1570
1576
|
}
|
|
1571
1577
|
export interface IpRange {
|
|
1572
|
-
Description?: string;
|
|
1573
|
-
CidrIp?: string;
|
|
1578
|
+
Description?: string | undefined;
|
|
1579
|
+
CidrIp?: string | undefined;
|
|
1574
1580
|
}
|
|
1575
1581
|
export interface Ipv6Range {
|
|
1576
|
-
Description?: string;
|
|
1577
|
-
CidrIpv6?: string;
|
|
1582
|
+
Description?: string | undefined;
|
|
1583
|
+
CidrIpv6?: string | undefined;
|
|
1578
1584
|
}
|
|
1579
1585
|
export interface PrefixListId {
|
|
1580
|
-
Description?: string;
|
|
1581
|
-
PrefixListId?: string;
|
|
1586
|
+
Description?: string | undefined;
|
|
1587
|
+
PrefixListId?: string | undefined;
|
|
1582
1588
|
}
|
|
1583
1589
|
export interface UserIdGroupPair {
|
|
1584
|
-
Description?: string;
|
|
1585
|
-
UserId?: string;
|
|
1586
|
-
GroupName?: string;
|
|
1587
|
-
GroupId?: string;
|
|
1588
|
-
VpcId?: string;
|
|
1589
|
-
VpcPeeringConnectionId?: string;
|
|
1590
|
-
PeeringStatus?: string;
|
|
1590
|
+
Description?: string | undefined;
|
|
1591
|
+
UserId?: string | undefined;
|
|
1592
|
+
GroupName?: string | undefined;
|
|
1593
|
+
GroupId?: string | undefined;
|
|
1594
|
+
VpcId?: string | undefined;
|
|
1595
|
+
VpcPeeringConnectionId?: string | undefined;
|
|
1596
|
+
PeeringStatus?: string | undefined;
|
|
1591
1597
|
}
|
|
1592
1598
|
export interface IpPermission {
|
|
1593
|
-
IpProtocol?: string;
|
|
1594
|
-
FromPort?: number;
|
|
1595
|
-
ToPort?: number;
|
|
1596
|
-
UserIdGroupPairs?: UserIdGroupPair[];
|
|
1597
|
-
IpRanges?: IpRange[];
|
|
1598
|
-
Ipv6Ranges?: Ipv6Range[];
|
|
1599
|
-
PrefixListIds?: PrefixListId[];
|
|
1599
|
+
IpProtocol?: string | undefined;
|
|
1600
|
+
FromPort?: number | undefined;
|
|
1601
|
+
ToPort?: number | undefined;
|
|
1602
|
+
UserIdGroupPairs?: UserIdGroupPair[] | undefined;
|
|
1603
|
+
IpRanges?: IpRange[] | undefined;
|
|
1604
|
+
Ipv6Ranges?: Ipv6Range[] | undefined;
|
|
1605
|
+
PrefixListIds?: PrefixListId[] | undefined;
|
|
1600
1606
|
}
|
|
1601
1607
|
export interface AuthorizeSecurityGroupEgressRequest {
|
|
1602
|
-
TagSpecifications?: TagSpecification[];
|
|
1603
|
-
DryRun?: boolean;
|
|
1608
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1609
|
+
DryRun?: boolean | undefined;
|
|
1604
1610
|
GroupId: string | undefined;
|
|
1605
|
-
SourceSecurityGroupName?: string;
|
|
1606
|
-
SourceSecurityGroupOwnerId?: string;
|
|
1607
|
-
IpProtocol?: string;
|
|
1608
|
-
FromPort?: number;
|
|
1609
|
-
ToPort?: number;
|
|
1610
|
-
CidrIp?: string;
|
|
1611
|
-
IpPermissions?: IpPermission[];
|
|
1611
|
+
SourceSecurityGroupName?: string | undefined;
|
|
1612
|
+
SourceSecurityGroupOwnerId?: string | undefined;
|
|
1613
|
+
IpProtocol?: string | undefined;
|
|
1614
|
+
FromPort?: number | undefined;
|
|
1615
|
+
ToPort?: number | undefined;
|
|
1616
|
+
CidrIp?: string | undefined;
|
|
1617
|
+
IpPermissions?: IpPermission[] | undefined;
|
|
1612
1618
|
}
|
|
1613
1619
|
export interface ReferencedSecurityGroup {
|
|
1614
|
-
GroupId?: string;
|
|
1615
|
-
PeeringStatus?: string;
|
|
1616
|
-
UserId?: string;
|
|
1617
|
-
VpcId?: string;
|
|
1618
|
-
VpcPeeringConnectionId?: string;
|
|
1620
|
+
GroupId?: string | undefined;
|
|
1621
|
+
PeeringStatus?: string | undefined;
|
|
1622
|
+
UserId?: string | undefined;
|
|
1623
|
+
VpcId?: string | undefined;
|
|
1624
|
+
VpcPeeringConnectionId?: string | undefined;
|
|
1619
1625
|
}
|
|
1620
1626
|
export interface SecurityGroupRule {
|
|
1621
|
-
SecurityGroupRuleId?: string;
|
|
1622
|
-
GroupId?: string;
|
|
1623
|
-
GroupOwnerId?: string;
|
|
1624
|
-
IsEgress?: boolean;
|
|
1625
|
-
IpProtocol?: string;
|
|
1626
|
-
FromPort?: number;
|
|
1627
|
-
ToPort?: number;
|
|
1628
|
-
CidrIpv4?: string;
|
|
1629
|
-
CidrIpv6?: string;
|
|
1630
|
-
PrefixListId?: string;
|
|
1631
|
-
ReferencedGroupInfo?: ReferencedSecurityGroup;
|
|
1632
|
-
Description?: string;
|
|
1633
|
-
Tags?: Tag[];
|
|
1634
|
-
SecurityGroupRuleArn?: string;
|
|
1627
|
+
SecurityGroupRuleId?: string | undefined;
|
|
1628
|
+
GroupId?: string | undefined;
|
|
1629
|
+
GroupOwnerId?: string | undefined;
|
|
1630
|
+
IsEgress?: boolean | undefined;
|
|
1631
|
+
IpProtocol?: string | undefined;
|
|
1632
|
+
FromPort?: number | undefined;
|
|
1633
|
+
ToPort?: number | undefined;
|
|
1634
|
+
CidrIpv4?: string | undefined;
|
|
1635
|
+
CidrIpv6?: string | undefined;
|
|
1636
|
+
PrefixListId?: string | undefined;
|
|
1637
|
+
ReferencedGroupInfo?: ReferencedSecurityGroup | undefined;
|
|
1638
|
+
Description?: string | undefined;
|
|
1639
|
+
Tags?: Tag[] | undefined;
|
|
1640
|
+
SecurityGroupRuleArn?: string | undefined;
|
|
1635
1641
|
}
|
|
1636
1642
|
export interface AuthorizeSecurityGroupEgressResult {
|
|
1637
|
-
Return?: boolean;
|
|
1638
|
-
SecurityGroupRules?: SecurityGroupRule[];
|
|
1643
|
+
Return?: boolean | undefined;
|
|
1644
|
+
SecurityGroupRules?: SecurityGroupRule[] | undefined;
|
|
1639
1645
|
}
|
|
1640
1646
|
export interface AuthorizeSecurityGroupIngressRequest {
|
|
1641
|
-
CidrIp?: string;
|
|
1642
|
-
FromPort?: number;
|
|
1643
|
-
GroupId?: string;
|
|
1644
|
-
GroupName?: string;
|
|
1645
|
-
IpPermissions?: IpPermission[];
|
|
1646
|
-
IpProtocol?: string;
|
|
1647
|
-
SourceSecurityGroupName?: string;
|
|
1648
|
-
SourceSecurityGroupOwnerId?: string;
|
|
1649
|
-
ToPort?: number;
|
|
1650
|
-
TagSpecifications?: TagSpecification[];
|
|
1651
|
-
DryRun?: boolean;
|
|
1647
|
+
CidrIp?: string | undefined;
|
|
1648
|
+
FromPort?: number | undefined;
|
|
1649
|
+
GroupId?: string | undefined;
|
|
1650
|
+
GroupName?: string | undefined;
|
|
1651
|
+
IpPermissions?: IpPermission[] | undefined;
|
|
1652
|
+
IpProtocol?: string | undefined;
|
|
1653
|
+
SourceSecurityGroupName?: string | undefined;
|
|
1654
|
+
SourceSecurityGroupOwnerId?: string | undefined;
|
|
1655
|
+
ToPort?: number | undefined;
|
|
1656
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1657
|
+
DryRun?: boolean | undefined;
|
|
1652
1658
|
}
|
|
1653
1659
|
export interface AuthorizeSecurityGroupIngressResult {
|
|
1654
|
-
Return?: boolean;
|
|
1655
|
-
SecurityGroupRules?: SecurityGroupRule[];
|
|
1660
|
+
Return?: boolean | undefined;
|
|
1661
|
+
SecurityGroupRules?: SecurityGroupRule[] | undefined;
|
|
1656
1662
|
}
|
|
1657
1663
|
export interface S3Storage {
|
|
1658
|
-
AWSAccessKeyId?: string;
|
|
1659
|
-
Bucket?: string;
|
|
1660
|
-
Prefix?: string;
|
|
1661
|
-
UploadPolicy?: Uint8Array;
|
|
1662
|
-
UploadPolicySignature?: string;
|
|
1664
|
+
AWSAccessKeyId?: string | undefined;
|
|
1665
|
+
Bucket?: string | undefined;
|
|
1666
|
+
Prefix?: string | undefined;
|
|
1667
|
+
UploadPolicy?: Uint8Array | undefined;
|
|
1668
|
+
UploadPolicySignature?: string | undefined;
|
|
1663
1669
|
}
|
|
1664
1670
|
export interface Storage {
|
|
1665
|
-
S3?: S3Storage;
|
|
1671
|
+
S3?: S3Storage | undefined;
|
|
1666
1672
|
}
|
|
1667
1673
|
export interface BundleInstanceRequest {
|
|
1668
1674
|
InstanceId: string | undefined;
|
|
1669
1675
|
Storage: Storage | undefined;
|
|
1670
|
-
DryRun?: boolean;
|
|
1676
|
+
DryRun?: boolean | undefined;
|
|
1671
1677
|
}
|
|
1672
1678
|
export interface BundleTaskError {
|
|
1673
|
-
Code?: string;
|
|
1674
|
-
Message?: string;
|
|
1679
|
+
Code?: string | undefined;
|
|
1680
|
+
Message?: string | undefined;
|
|
1675
1681
|
}
|
|
1676
1682
|
export declare const BundleTaskState: {
|
|
1677
1683
|
readonly bundling: "bundling";
|
|
@@ -1685,43 +1691,45 @@ export declare const BundleTaskState: {
|
|
|
1685
1691
|
export type BundleTaskState =
|
|
1686
1692
|
(typeof BundleTaskState)[keyof typeof BundleTaskState];
|
|
1687
1693
|
export interface BundleTask {
|
|
1688
|
-
InstanceId?: string;
|
|
1689
|
-
BundleId?: string;
|
|
1690
|
-
State?: BundleTaskState;
|
|
1691
|
-
StartTime?: Date;
|
|
1692
|
-
UpdateTime?: Date;
|
|
1693
|
-
Storage?: Storage;
|
|
1694
|
-
Progress?: string;
|
|
1695
|
-
BundleTaskError?: BundleTaskError;
|
|
1694
|
+
InstanceId?: string | undefined;
|
|
1695
|
+
BundleId?: string | undefined;
|
|
1696
|
+
State?: BundleTaskState | undefined;
|
|
1697
|
+
StartTime?: Date | undefined;
|
|
1698
|
+
UpdateTime?: Date | undefined;
|
|
1699
|
+
Storage?: Storage | undefined;
|
|
1700
|
+
Progress?: string | undefined;
|
|
1701
|
+
BundleTaskError?: BundleTaskError | undefined;
|
|
1696
1702
|
}
|
|
1697
1703
|
export interface BundleInstanceResult {
|
|
1698
|
-
BundleTask?: BundleTask;
|
|
1704
|
+
BundleTask?: BundleTask | undefined;
|
|
1699
1705
|
}
|
|
1700
1706
|
export interface CancelBundleTaskRequest {
|
|
1701
1707
|
BundleId: string | undefined;
|
|
1702
|
-
DryRun?: boolean;
|
|
1708
|
+
DryRun?: boolean | undefined;
|
|
1703
1709
|
}
|
|
1704
1710
|
export interface CancelBundleTaskResult {
|
|
1705
|
-
BundleTask?: BundleTask;
|
|
1711
|
+
BundleTask?: BundleTask | undefined;
|
|
1706
1712
|
}
|
|
1707
1713
|
export interface CancelCapacityReservationRequest {
|
|
1708
1714
|
CapacityReservationId: string | undefined;
|
|
1709
|
-
DryRun?: boolean;
|
|
1715
|
+
DryRun?: boolean | undefined;
|
|
1710
1716
|
}
|
|
1711
1717
|
export interface CancelCapacityReservationResult {
|
|
1712
|
-
Return?: boolean;
|
|
1718
|
+
Return?: boolean | undefined;
|
|
1713
1719
|
}
|
|
1714
1720
|
export interface CancelCapacityReservationFleetsRequest {
|
|
1715
|
-
DryRun?: boolean;
|
|
1721
|
+
DryRun?: boolean | undefined;
|
|
1716
1722
|
CapacityReservationFleetIds: string[] | undefined;
|
|
1717
1723
|
}
|
|
1718
1724
|
export interface CancelCapacityReservationFleetError {
|
|
1719
|
-
Code?: string;
|
|
1720
|
-
Message?: string;
|
|
1725
|
+
Code?: string | undefined;
|
|
1726
|
+
Message?: string | undefined;
|
|
1721
1727
|
}
|
|
1722
1728
|
export interface FailedCapacityReservationFleetCancellationResult {
|
|
1723
|
-
CapacityReservationFleetId?: string;
|
|
1724
|
-
CancelCapacityReservationFleetError?:
|
|
1729
|
+
CapacityReservationFleetId?: string | undefined;
|
|
1730
|
+
CancelCapacityReservationFleetError?:
|
|
1731
|
+
| CancelCapacityReservationFleetError
|
|
1732
|
+
| undefined;
|
|
1725
1733
|
}
|
|
1726
1734
|
export declare const CapacityReservationFleetState: {
|
|
1727
1735
|
readonly ACTIVE: "active";
|
|
@@ -1737,38 +1745,42 @@ export declare const CapacityReservationFleetState: {
|
|
|
1737
1745
|
export type CapacityReservationFleetState =
|
|
1738
1746
|
(typeof CapacityReservationFleetState)[keyof typeof CapacityReservationFleetState];
|
|
1739
1747
|
export interface CapacityReservationFleetCancellationState {
|
|
1740
|
-
CurrentFleetState?: CapacityReservationFleetState;
|
|
1741
|
-
PreviousFleetState?: CapacityReservationFleetState;
|
|
1742
|
-
CapacityReservationFleetId?: string;
|
|
1748
|
+
CurrentFleetState?: CapacityReservationFleetState | undefined;
|
|
1749
|
+
PreviousFleetState?: CapacityReservationFleetState | undefined;
|
|
1750
|
+
CapacityReservationFleetId?: string | undefined;
|
|
1743
1751
|
}
|
|
1744
1752
|
export interface CancelCapacityReservationFleetsResult {
|
|
1745
|
-
SuccessfulFleetCancellations?:
|
|
1746
|
-
|
|
1753
|
+
SuccessfulFleetCancellations?:
|
|
1754
|
+
| CapacityReservationFleetCancellationState[]
|
|
1755
|
+
| undefined;
|
|
1756
|
+
FailedFleetCancellations?:
|
|
1757
|
+
| FailedCapacityReservationFleetCancellationResult[]
|
|
1758
|
+
| undefined;
|
|
1747
1759
|
}
|
|
1748
1760
|
export interface CancelConversionRequest {
|
|
1749
|
-
DryRun?: boolean;
|
|
1761
|
+
DryRun?: boolean | undefined;
|
|
1750
1762
|
ConversionTaskId: string | undefined;
|
|
1751
|
-
ReasonMessage?: string;
|
|
1763
|
+
ReasonMessage?: string | undefined;
|
|
1752
1764
|
}
|
|
1753
1765
|
export interface CancelExportTaskRequest {
|
|
1754
1766
|
ExportTaskId: string | undefined;
|
|
1755
1767
|
}
|
|
1756
1768
|
export interface CancelImageLaunchPermissionRequest {
|
|
1757
1769
|
ImageId: string | undefined;
|
|
1758
|
-
DryRun?: boolean;
|
|
1770
|
+
DryRun?: boolean | undefined;
|
|
1759
1771
|
}
|
|
1760
1772
|
export interface CancelImageLaunchPermissionResult {
|
|
1761
|
-
Return?: boolean;
|
|
1773
|
+
Return?: boolean | undefined;
|
|
1762
1774
|
}
|
|
1763
1775
|
export interface CancelImportTaskRequest {
|
|
1764
|
-
CancelReason?: string;
|
|
1765
|
-
DryRun?: boolean;
|
|
1766
|
-
ImportTaskId?: string;
|
|
1776
|
+
CancelReason?: string | undefined;
|
|
1777
|
+
DryRun?: boolean | undefined;
|
|
1778
|
+
ImportTaskId?: string | undefined;
|
|
1767
1779
|
}
|
|
1768
1780
|
export interface CancelImportTaskResult {
|
|
1769
|
-
ImportTaskId?: string;
|
|
1770
|
-
PreviousState?: string;
|
|
1771
|
-
State?: string;
|
|
1781
|
+
ImportTaskId?: string | undefined;
|
|
1782
|
+
PreviousState?: string | undefined;
|
|
1783
|
+
State?: string | undefined;
|
|
1772
1784
|
}
|
|
1773
1785
|
export interface CancelReservedInstancesListingRequest {
|
|
1774
1786
|
ReservedInstancesListingId: string | undefined;
|
|
@@ -1781,8 +1793,8 @@ export declare const ListingState: {
|
|
|
1781
1793
|
};
|
|
1782
1794
|
export type ListingState = (typeof ListingState)[keyof typeof ListingState];
|
|
1783
1795
|
export interface InstanceCount {
|
|
1784
|
-
InstanceCount?: number;
|
|
1785
|
-
State?: ListingState;
|
|
1796
|
+
InstanceCount?: number | undefined;
|
|
1797
|
+
State?: ListingState | undefined;
|
|
1786
1798
|
}
|
|
1787
1799
|
export declare const CurrencyCodeValues: {
|
|
1788
1800
|
readonly USD: "USD";
|
|
@@ -1790,10 +1802,10 @@ export declare const CurrencyCodeValues: {
|
|
|
1790
1802
|
export type CurrencyCodeValues =
|
|
1791
1803
|
(typeof CurrencyCodeValues)[keyof typeof CurrencyCodeValues];
|
|
1792
1804
|
export interface PriceSchedule {
|
|
1793
|
-
Active?: boolean;
|
|
1794
|
-
CurrencyCode?: CurrencyCodeValues;
|
|
1795
|
-
Price?: number;
|
|
1796
|
-
Term?: number;
|
|
1805
|
+
Active?: boolean | undefined;
|
|
1806
|
+
CurrencyCode?: CurrencyCodeValues | undefined;
|
|
1807
|
+
Price?: number | undefined;
|
|
1808
|
+
Term?: number | undefined;
|
|
1797
1809
|
}
|
|
1798
1810
|
export declare const ListingStatus: {
|
|
1799
1811
|
readonly active: "active";
|
|
@@ -1803,22 +1815,22 @@ export declare const ListingStatus: {
|
|
|
1803
1815
|
};
|
|
1804
1816
|
export type ListingStatus = (typeof ListingStatus)[keyof typeof ListingStatus];
|
|
1805
1817
|
export interface ReservedInstancesListing {
|
|
1806
|
-
ClientToken?: string;
|
|
1807
|
-
CreateDate?: Date;
|
|
1808
|
-
InstanceCounts?: InstanceCount[];
|
|
1809
|
-
PriceSchedules?: PriceSchedule[];
|
|
1810
|
-
ReservedInstancesId?: string;
|
|
1811
|
-
ReservedInstancesListingId?: string;
|
|
1812
|
-
Status?: ListingStatus;
|
|
1813
|
-
StatusMessage?: string;
|
|
1814
|
-
Tags?: Tag[];
|
|
1815
|
-
UpdateDate?: Date;
|
|
1818
|
+
ClientToken?: string | undefined;
|
|
1819
|
+
CreateDate?: Date | undefined;
|
|
1820
|
+
InstanceCounts?: InstanceCount[] | undefined;
|
|
1821
|
+
PriceSchedules?: PriceSchedule[] | undefined;
|
|
1822
|
+
ReservedInstancesId?: string | undefined;
|
|
1823
|
+
ReservedInstancesListingId?: string | undefined;
|
|
1824
|
+
Status?: ListingStatus | undefined;
|
|
1825
|
+
StatusMessage?: string | undefined;
|
|
1826
|
+
Tags?: Tag[] | undefined;
|
|
1827
|
+
UpdateDate?: Date | undefined;
|
|
1816
1828
|
}
|
|
1817
1829
|
export interface CancelReservedInstancesListingResult {
|
|
1818
|
-
ReservedInstancesListings?: ReservedInstancesListing[];
|
|
1830
|
+
ReservedInstancesListings?: ReservedInstancesListing[] | undefined;
|
|
1819
1831
|
}
|
|
1820
1832
|
export interface CancelSpotFleetRequestsRequest {
|
|
1821
|
-
DryRun?: boolean;
|
|
1833
|
+
DryRun?: boolean | undefined;
|
|
1822
1834
|
SpotFleetRequestIds: string[] | undefined;
|
|
1823
1835
|
TerminateInstances: boolean | undefined;
|
|
1824
1836
|
}
|
|
@@ -1833,9 +1845,9 @@ export declare const BatchState: {
|
|
|
1833
1845
|
};
|
|
1834
1846
|
export type BatchState = (typeof BatchState)[keyof typeof BatchState];
|
|
1835
1847
|
export interface CancelSpotFleetRequestsSuccessItem {
|
|
1836
|
-
CurrentSpotFleetRequestState?: BatchState;
|
|
1837
|
-
PreviousSpotFleetRequestState?: BatchState;
|
|
1838
|
-
SpotFleetRequestId?: string;
|
|
1848
|
+
CurrentSpotFleetRequestState?: BatchState | undefined;
|
|
1849
|
+
PreviousSpotFleetRequestState?: BatchState | undefined;
|
|
1850
|
+
SpotFleetRequestId?: string | undefined;
|
|
1839
1851
|
}
|
|
1840
1852
|
export declare const CancelBatchErrorCode: {
|
|
1841
1853
|
readonly FLEET_REQUEST_ID_DOES_NOT_EXIST: "fleetRequestIdDoesNotExist";
|
|
@@ -1846,19 +1858,19 @@ export declare const CancelBatchErrorCode: {
|
|
|
1846
1858
|
export type CancelBatchErrorCode =
|
|
1847
1859
|
(typeof CancelBatchErrorCode)[keyof typeof CancelBatchErrorCode];
|
|
1848
1860
|
export interface CancelSpotFleetRequestsError {
|
|
1849
|
-
Code?: CancelBatchErrorCode;
|
|
1850
|
-
Message?: string;
|
|
1861
|
+
Code?: CancelBatchErrorCode | undefined;
|
|
1862
|
+
Message?: string | undefined;
|
|
1851
1863
|
}
|
|
1852
1864
|
export interface CancelSpotFleetRequestsErrorItem {
|
|
1853
|
-
Error?: CancelSpotFleetRequestsError;
|
|
1854
|
-
SpotFleetRequestId?: string;
|
|
1865
|
+
Error?: CancelSpotFleetRequestsError | undefined;
|
|
1866
|
+
SpotFleetRequestId?: string | undefined;
|
|
1855
1867
|
}
|
|
1856
1868
|
export interface CancelSpotFleetRequestsResponse {
|
|
1857
|
-
SuccessfulFleetRequests?: CancelSpotFleetRequestsSuccessItem[];
|
|
1858
|
-
UnsuccessfulFleetRequests?: CancelSpotFleetRequestsErrorItem[];
|
|
1869
|
+
SuccessfulFleetRequests?: CancelSpotFleetRequestsSuccessItem[] | undefined;
|
|
1870
|
+
UnsuccessfulFleetRequests?: CancelSpotFleetRequestsErrorItem[] | undefined;
|
|
1859
1871
|
}
|
|
1860
1872
|
export interface CancelSpotInstanceRequestsRequest {
|
|
1861
|
-
DryRun?: boolean;
|
|
1873
|
+
DryRun?: boolean | undefined;
|
|
1862
1874
|
SpotInstanceRequestIds: string[] | undefined;
|
|
1863
1875
|
}
|
|
1864
1876
|
export declare const CancelSpotInstanceRequestState: {
|
|
@@ -1871,63 +1883,63 @@ export declare const CancelSpotInstanceRequestState: {
|
|
|
1871
1883
|
export type CancelSpotInstanceRequestState =
|
|
1872
1884
|
(typeof CancelSpotInstanceRequestState)[keyof typeof CancelSpotInstanceRequestState];
|
|
1873
1885
|
export interface CancelledSpotInstanceRequest {
|
|
1874
|
-
SpotInstanceRequestId?: string;
|
|
1875
|
-
State?: CancelSpotInstanceRequestState;
|
|
1886
|
+
SpotInstanceRequestId?: string | undefined;
|
|
1887
|
+
State?: CancelSpotInstanceRequestState | undefined;
|
|
1876
1888
|
}
|
|
1877
1889
|
export interface CancelSpotInstanceRequestsResult {
|
|
1878
|
-
CancelledSpotInstanceRequests?: CancelledSpotInstanceRequest[];
|
|
1890
|
+
CancelledSpotInstanceRequests?: CancelledSpotInstanceRequest[] | undefined;
|
|
1879
1891
|
}
|
|
1880
1892
|
export interface ConfirmProductInstanceRequest {
|
|
1881
1893
|
InstanceId: string | undefined;
|
|
1882
1894
|
ProductCode: string | undefined;
|
|
1883
|
-
DryRun?: boolean;
|
|
1895
|
+
DryRun?: boolean | undefined;
|
|
1884
1896
|
}
|
|
1885
1897
|
export interface ConfirmProductInstanceResult {
|
|
1886
|
-
Return?: boolean;
|
|
1887
|
-
OwnerId?: string;
|
|
1898
|
+
Return?: boolean | undefined;
|
|
1899
|
+
OwnerId?: string | undefined;
|
|
1888
1900
|
}
|
|
1889
1901
|
export interface CopyFpgaImageRequest {
|
|
1890
|
-
DryRun?: boolean;
|
|
1902
|
+
DryRun?: boolean | undefined;
|
|
1891
1903
|
SourceFpgaImageId: string | undefined;
|
|
1892
|
-
Description?: string;
|
|
1893
|
-
Name?: string;
|
|
1904
|
+
Description?: string | undefined;
|
|
1905
|
+
Name?: string | undefined;
|
|
1894
1906
|
SourceRegion: string | undefined;
|
|
1895
|
-
ClientToken?: string;
|
|
1907
|
+
ClientToken?: string | undefined;
|
|
1896
1908
|
}
|
|
1897
1909
|
export interface CopyFpgaImageResult {
|
|
1898
|
-
FpgaImageId?: string;
|
|
1910
|
+
FpgaImageId?: string | undefined;
|
|
1899
1911
|
}
|
|
1900
1912
|
export interface CopyImageRequest {
|
|
1901
|
-
ClientToken?: string;
|
|
1902
|
-
Description?: string;
|
|
1903
|
-
Encrypted?: boolean;
|
|
1904
|
-
KmsKeyId?: string;
|
|
1913
|
+
ClientToken?: string | undefined;
|
|
1914
|
+
Description?: string | undefined;
|
|
1915
|
+
Encrypted?: boolean | undefined;
|
|
1916
|
+
KmsKeyId?: string | undefined;
|
|
1905
1917
|
Name: string | undefined;
|
|
1906
1918
|
SourceImageId: string | undefined;
|
|
1907
1919
|
SourceRegion: string | undefined;
|
|
1908
|
-
DestinationOutpostArn?: string;
|
|
1909
|
-
CopyImageTags?: boolean;
|
|
1910
|
-
TagSpecifications?: TagSpecification[];
|
|
1911
|
-
DryRun?: boolean;
|
|
1920
|
+
DestinationOutpostArn?: string | undefined;
|
|
1921
|
+
CopyImageTags?: boolean | undefined;
|
|
1922
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1923
|
+
DryRun?: boolean | undefined;
|
|
1912
1924
|
}
|
|
1913
1925
|
export interface CopyImageResult {
|
|
1914
|
-
ImageId?: string;
|
|
1926
|
+
ImageId?: string | undefined;
|
|
1915
1927
|
}
|
|
1916
1928
|
export interface CopySnapshotRequest {
|
|
1917
|
-
Description?: string;
|
|
1918
|
-
DestinationOutpostArn?: string;
|
|
1919
|
-
DestinationRegion?: string;
|
|
1920
|
-
Encrypted?: boolean;
|
|
1921
|
-
KmsKeyId?: string;
|
|
1922
|
-
PresignedUrl?: string;
|
|
1929
|
+
Description?: string | undefined;
|
|
1930
|
+
DestinationOutpostArn?: string | undefined;
|
|
1931
|
+
DestinationRegion?: string | undefined;
|
|
1932
|
+
Encrypted?: boolean | undefined;
|
|
1933
|
+
KmsKeyId?: string | undefined;
|
|
1934
|
+
PresignedUrl?: string | undefined;
|
|
1923
1935
|
SourceRegion: string | undefined;
|
|
1924
1936
|
SourceSnapshotId: string | undefined;
|
|
1925
|
-
TagSpecifications?: TagSpecification[];
|
|
1926
|
-
DryRun?: boolean;
|
|
1937
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1938
|
+
DryRun?: boolean | undefined;
|
|
1927
1939
|
}
|
|
1928
1940
|
export interface CopySnapshotResult {
|
|
1929
|
-
Tags?: Tag[];
|
|
1930
|
-
SnapshotId?: string;
|
|
1941
|
+
Tags?: Tag[] | undefined;
|
|
1942
|
+
SnapshotId?: string | undefined;
|
|
1931
1943
|
}
|
|
1932
1944
|
export declare const EndDateType: {
|
|
1933
1945
|
readonly limited: "limited";
|
|
@@ -1969,26 +1981,26 @@ export declare const CapacityReservationTenancy: {
|
|
|
1969
1981
|
export type CapacityReservationTenancy =
|
|
1970
1982
|
(typeof CapacityReservationTenancy)[keyof typeof CapacityReservationTenancy];
|
|
1971
1983
|
export interface CreateCapacityReservationRequest {
|
|
1972
|
-
ClientToken?: string;
|
|
1984
|
+
ClientToken?: string | undefined;
|
|
1973
1985
|
InstanceType: string | undefined;
|
|
1974
1986
|
InstancePlatform: CapacityReservationInstancePlatform | undefined;
|
|
1975
|
-
AvailabilityZone?: string;
|
|
1976
|
-
AvailabilityZoneId?: string;
|
|
1977
|
-
Tenancy?: CapacityReservationTenancy;
|
|
1987
|
+
AvailabilityZone?: string | undefined;
|
|
1988
|
+
AvailabilityZoneId?: string | undefined;
|
|
1989
|
+
Tenancy?: CapacityReservationTenancy | undefined;
|
|
1978
1990
|
InstanceCount: number | undefined;
|
|
1979
|
-
EbsOptimized?: boolean;
|
|
1980
|
-
EphemeralStorage?: boolean;
|
|
1981
|
-
EndDate?: Date;
|
|
1982
|
-
EndDateType?: EndDateType;
|
|
1983
|
-
InstanceMatchCriteria?: InstanceMatchCriteria;
|
|
1984
|
-
TagSpecifications?: TagSpecification[];
|
|
1985
|
-
DryRun?: boolean;
|
|
1986
|
-
OutpostArn?: string;
|
|
1987
|
-
PlacementGroupArn?: string;
|
|
1991
|
+
EbsOptimized?: boolean | undefined;
|
|
1992
|
+
EphemeralStorage?: boolean | undefined;
|
|
1993
|
+
EndDate?: Date | undefined;
|
|
1994
|
+
EndDateType?: EndDateType | undefined;
|
|
1995
|
+
InstanceMatchCriteria?: InstanceMatchCriteria | undefined;
|
|
1996
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
1997
|
+
DryRun?: boolean | undefined;
|
|
1998
|
+
OutpostArn?: string | undefined;
|
|
1999
|
+
PlacementGroupArn?: string | undefined;
|
|
1988
2000
|
}
|
|
1989
2001
|
export interface CapacityAllocation {
|
|
1990
|
-
AllocationType?: AllocationType;
|
|
1991
|
-
Count?: number;
|
|
2002
|
+
AllocationType?: AllocationType | undefined;
|
|
2003
|
+
Count?: number | undefined;
|
|
1992
2004
|
}
|
|
1993
2005
|
export declare const CapacityReservationType: {
|
|
1994
2006
|
readonly CAPACITY_BLOCK: "capacity-block";
|