@aws-sdk/client-ec2 3.47.2 → 3.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/EC2.js +45 -0
- package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
- package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
- package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
- package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
- package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +14 -7
- package/dist-cjs/models/models_1.js +11 -6
- package/dist-cjs/models/models_2.js +7 -13
- package/dist-cjs/models/models_3.js +61 -53
- package/dist-cjs/models/models_4.js +89 -101
- package/dist-cjs/models/models_5.js +101 -96
- package/dist-cjs/models/models_6.js +92 -2
- package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +501 -17
- package/dist-es/EC2.js +45 -0
- package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
- package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
- package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
- package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
- package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
- package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
- package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
- package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -5
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/models/models_2.js +4 -8
- package/dist-es/models/models_3.js +41 -33
- package/dist-es/models/models_4.js +57 -75
- package/dist-es/models/models_5.js +75 -60
- package/dist-es/models/models_6.js +60 -0
- package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +1498 -991
- package/dist-types/EC2.d.ts +28 -0
- package/dist-types/EC2Client.d.ts +5 -2
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +37 -0
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +40 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +25 -11
- package/dist-types/models/models_1.d.ts +11 -8
- package/dist-types/models/models_2.d.ts +18 -71
- package/dist-types/models/models_3.d.ts +240 -298
- package/dist-types/models/models_4.d.ts +500 -334
- package/dist-types/models/models_5.d.ts +334 -420
- package/dist-types/models/models_6.d.ts +413 -3
- package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +15 -0
- package/dist-types/ts3.4/EC2Client.d.ts +5 -2
- package/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -2
- package/dist-types/ts3.4/models/models_2.d.ts +12 -37
- package/dist-types/ts3.4/models/models_3.d.ts +122 -122
- package/dist-types/ts3.4/models/models_4.d.ts +224 -194
- package/dist-types/ts3.4/models/models_5.d.ts +196 -219
- package/dist-types/ts3.4/models/models_6.d.ts +218 -3
- package/dist-types/ts3.4/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +9 -0
- package/package.json +3 -3
|
@@ -1,7 +1,127 @@
|
|
|
1
|
-
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow,
|
|
2
|
-
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification,
|
|
3
|
-
import { ConnectionNotification, DnsEntry, DnsNameState, Filter,
|
|
4
|
-
import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode,
|
|
1
|
+
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, ReservedInstancesListing, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
|
+
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
|
|
3
|
+
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
|
+
import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringChargeFrequency, RIProductDescription, VirtualizationType } from "./models_3";
|
|
5
|
+
|
|
6
|
+
export interface RecurringCharge {
|
|
7
|
+
|
|
8
|
+
Amount?: number;
|
|
9
|
+
|
|
10
|
+
Frequency?: RecurringChargeFrequency | string;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace RecurringCharge {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: RecurringCharge) => any;
|
|
15
|
+
}
|
|
16
|
+
export declare enum Scope {
|
|
17
|
+
AVAILABILITY_ZONE = "Availability Zone",
|
|
18
|
+
REGIONAL = "Region"
|
|
19
|
+
}
|
|
20
|
+
export declare type ReservedInstanceState = "active" | "payment-failed" | "payment-pending" | "queued" | "queued-deleted" | "retired";
|
|
21
|
+
|
|
22
|
+
export interface ReservedInstances {
|
|
23
|
+
|
|
24
|
+
AvailabilityZone?: string;
|
|
25
|
+
|
|
26
|
+
Duration?: number;
|
|
27
|
+
|
|
28
|
+
End?: Date;
|
|
29
|
+
|
|
30
|
+
FixedPrice?: number;
|
|
31
|
+
|
|
32
|
+
InstanceCount?: number;
|
|
33
|
+
|
|
34
|
+
InstanceType?: _InstanceType | string;
|
|
35
|
+
|
|
36
|
+
ProductDescription?: RIProductDescription | string;
|
|
37
|
+
|
|
38
|
+
ReservedInstancesId?: string;
|
|
39
|
+
|
|
40
|
+
Start?: Date;
|
|
41
|
+
|
|
42
|
+
State?: ReservedInstanceState | string;
|
|
43
|
+
|
|
44
|
+
UsagePrice?: number;
|
|
45
|
+
|
|
46
|
+
CurrencyCode?: CurrencyCodeValues | string;
|
|
47
|
+
|
|
48
|
+
InstanceTenancy?: Tenancy | string;
|
|
49
|
+
|
|
50
|
+
OfferingClass?: OfferingClassType | string;
|
|
51
|
+
|
|
52
|
+
OfferingType?: OfferingTypeValues | string;
|
|
53
|
+
|
|
54
|
+
RecurringCharges?: RecurringCharge[];
|
|
55
|
+
|
|
56
|
+
Scope?: Scope | string;
|
|
57
|
+
|
|
58
|
+
Tags?: Tag[];
|
|
59
|
+
}
|
|
60
|
+
export declare namespace ReservedInstances {
|
|
61
|
+
|
|
62
|
+
const filterSensitiveLog: (obj: ReservedInstances) => any;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface DescribeReservedInstancesResult {
|
|
66
|
+
|
|
67
|
+
ReservedInstances?: ReservedInstances[];
|
|
68
|
+
}
|
|
69
|
+
export declare namespace DescribeReservedInstancesResult {
|
|
70
|
+
|
|
71
|
+
const filterSensitiveLog: (obj: DescribeReservedInstancesResult) => any;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export interface DescribeReservedInstancesListingsRequest {
|
|
75
|
+
|
|
76
|
+
Filters?: Filter[];
|
|
77
|
+
|
|
78
|
+
ReservedInstancesId?: string;
|
|
79
|
+
|
|
80
|
+
ReservedInstancesListingId?: string;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace DescribeReservedInstancesListingsRequest {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: DescribeReservedInstancesListingsRequest) => any;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface DescribeReservedInstancesListingsResult {
|
|
88
|
+
|
|
89
|
+
ReservedInstancesListings?: ReservedInstancesListing[];
|
|
90
|
+
}
|
|
91
|
+
export declare namespace DescribeReservedInstancesListingsResult {
|
|
92
|
+
|
|
93
|
+
const filterSensitiveLog: (obj: DescribeReservedInstancesListingsResult) => any;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface DescribeReservedInstancesModificationsRequest {
|
|
97
|
+
|
|
98
|
+
Filters?: Filter[];
|
|
99
|
+
|
|
100
|
+
ReservedInstancesModificationIds?: string[];
|
|
101
|
+
|
|
102
|
+
NextToken?: string;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace DescribeReservedInstancesModificationsRequest {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: DescribeReservedInstancesModificationsRequest) => any;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface ReservedInstancesConfiguration {
|
|
110
|
+
|
|
111
|
+
AvailabilityZone?: string;
|
|
112
|
+
|
|
113
|
+
InstanceCount?: number;
|
|
114
|
+
|
|
115
|
+
InstanceType?: _InstanceType | string;
|
|
116
|
+
|
|
117
|
+
Platform?: string;
|
|
118
|
+
|
|
119
|
+
Scope?: Scope | string;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace ReservedInstancesConfiguration {
|
|
122
|
+
|
|
123
|
+
const filterSensitiveLog: (obj: ReservedInstancesConfiguration) => any;
|
|
124
|
+
}
|
|
5
125
|
|
|
6
126
|
export interface ReservedInstancesModificationResult {
|
|
7
127
|
|
|
@@ -2497,6 +2617,42 @@ export declare namespace DisableEbsEncryptionByDefaultResult {
|
|
|
2497
2617
|
|
|
2498
2618
|
const filterSensitiveLog: (obj: DisableEbsEncryptionByDefaultResult) => any;
|
|
2499
2619
|
}
|
|
2620
|
+
export interface DisableFastLaunchRequest {
|
|
2621
|
+
|
|
2622
|
+
ImageId: string | undefined;
|
|
2623
|
+
|
|
2624
|
+
Force?: boolean;
|
|
2625
|
+
|
|
2626
|
+
DryRun?: boolean;
|
|
2627
|
+
}
|
|
2628
|
+
export declare namespace DisableFastLaunchRequest {
|
|
2629
|
+
|
|
2630
|
+
const filterSensitiveLog: (obj: DisableFastLaunchRequest) => any;
|
|
2631
|
+
}
|
|
2632
|
+
export interface DisableFastLaunchResult {
|
|
2633
|
+
|
|
2634
|
+
ImageId?: string;
|
|
2635
|
+
|
|
2636
|
+
ResourceType?: FastLaunchResourceType | string;
|
|
2637
|
+
|
|
2638
|
+
SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
|
|
2639
|
+
|
|
2640
|
+
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
|
|
2641
|
+
|
|
2642
|
+
MaxParallelLaunches?: number;
|
|
2643
|
+
|
|
2644
|
+
OwnerId?: string;
|
|
2645
|
+
|
|
2646
|
+
State?: FastLaunchStateCode | string;
|
|
2647
|
+
|
|
2648
|
+
StateTransitionReason?: string;
|
|
2649
|
+
|
|
2650
|
+
StateTransitionTime?: Date;
|
|
2651
|
+
}
|
|
2652
|
+
export declare namespace DisableFastLaunchResult {
|
|
2653
|
+
|
|
2654
|
+
const filterSensitiveLog: (obj: DisableFastLaunchResult) => any;
|
|
2655
|
+
}
|
|
2500
2656
|
export interface DisableFastSnapshotRestoresRequest {
|
|
2501
2657
|
|
|
2502
2658
|
AvailabilityZones: string[] | undefined;
|
|
@@ -2949,6 +3105,70 @@ export declare namespace EnableEbsEncryptionByDefaultResult {
|
|
|
2949
3105
|
|
|
2950
3106
|
const filterSensitiveLog: (obj: EnableEbsEncryptionByDefaultResult) => any;
|
|
2951
3107
|
}
|
|
3108
|
+
|
|
3109
|
+
export interface FastLaunchLaunchTemplateSpecificationRequest {
|
|
3110
|
+
|
|
3111
|
+
LaunchTemplateId?: string;
|
|
3112
|
+
|
|
3113
|
+
LaunchTemplateName?: string;
|
|
3114
|
+
|
|
3115
|
+
Version: string | undefined;
|
|
3116
|
+
}
|
|
3117
|
+
export declare namespace FastLaunchLaunchTemplateSpecificationRequest {
|
|
3118
|
+
|
|
3119
|
+
const filterSensitiveLog: (obj: FastLaunchLaunchTemplateSpecificationRequest) => any;
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
export interface FastLaunchSnapshotConfigurationRequest {
|
|
3123
|
+
|
|
3124
|
+
TargetResourceCount?: number;
|
|
3125
|
+
}
|
|
3126
|
+
export declare namespace FastLaunchSnapshotConfigurationRequest {
|
|
3127
|
+
|
|
3128
|
+
const filterSensitiveLog: (obj: FastLaunchSnapshotConfigurationRequest) => any;
|
|
3129
|
+
}
|
|
3130
|
+
export interface EnableFastLaunchRequest {
|
|
3131
|
+
|
|
3132
|
+
ImageId: string | undefined;
|
|
3133
|
+
|
|
3134
|
+
ResourceType?: string;
|
|
3135
|
+
|
|
3136
|
+
SnapshotConfiguration?: FastLaunchSnapshotConfigurationRequest;
|
|
3137
|
+
|
|
3138
|
+
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest;
|
|
3139
|
+
|
|
3140
|
+
MaxParallelLaunches?: number;
|
|
3141
|
+
|
|
3142
|
+
DryRun?: boolean;
|
|
3143
|
+
}
|
|
3144
|
+
export declare namespace EnableFastLaunchRequest {
|
|
3145
|
+
|
|
3146
|
+
const filterSensitiveLog: (obj: EnableFastLaunchRequest) => any;
|
|
3147
|
+
}
|
|
3148
|
+
export interface EnableFastLaunchResult {
|
|
3149
|
+
|
|
3150
|
+
ImageId?: string;
|
|
3151
|
+
|
|
3152
|
+
ResourceType?: FastLaunchResourceType | string;
|
|
3153
|
+
|
|
3154
|
+
SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
|
|
3155
|
+
|
|
3156
|
+
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
|
|
3157
|
+
|
|
3158
|
+
MaxParallelLaunches?: number;
|
|
3159
|
+
|
|
3160
|
+
OwnerId?: string;
|
|
3161
|
+
|
|
3162
|
+
State?: FastLaunchStateCode | string;
|
|
3163
|
+
|
|
3164
|
+
StateTransitionReason?: string;
|
|
3165
|
+
|
|
3166
|
+
StateTransitionTime?: Date;
|
|
3167
|
+
}
|
|
3168
|
+
export declare namespace EnableFastLaunchResult {
|
|
3169
|
+
|
|
3170
|
+
const filterSensitiveLog: (obj: EnableFastLaunchResult) => any;
|
|
3171
|
+
}
|
|
2952
3172
|
export interface EnableFastSnapshotRestoresRequest {
|
|
2953
3173
|
|
|
2954
3174
|
AvailabilityZones: string[] | undefined;
|
|
@@ -3711,193 +3931,3 @@ export declare namespace GetInstanceTypesFromInstanceRequirementsRequest {
|
|
|
3711
3931
|
|
|
3712
3932
|
const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsRequest) => any;
|
|
3713
3933
|
}
|
|
3714
|
-
|
|
3715
|
-
export interface InstanceTypeInfoFromInstanceRequirements {
|
|
3716
|
-
|
|
3717
|
-
InstanceType?: string;
|
|
3718
|
-
}
|
|
3719
|
-
export declare namespace InstanceTypeInfoFromInstanceRequirements {
|
|
3720
|
-
|
|
3721
|
-
const filterSensitiveLog: (obj: InstanceTypeInfoFromInstanceRequirements) => any;
|
|
3722
|
-
}
|
|
3723
|
-
export interface GetInstanceTypesFromInstanceRequirementsResult {
|
|
3724
|
-
|
|
3725
|
-
InstanceTypes?: InstanceTypeInfoFromInstanceRequirements[];
|
|
3726
|
-
|
|
3727
|
-
NextToken?: string;
|
|
3728
|
-
}
|
|
3729
|
-
export declare namespace GetInstanceTypesFromInstanceRequirementsResult {
|
|
3730
|
-
|
|
3731
|
-
const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsResult) => any;
|
|
3732
|
-
}
|
|
3733
|
-
export interface GetIpamAddressHistoryRequest {
|
|
3734
|
-
|
|
3735
|
-
DryRun?: boolean;
|
|
3736
|
-
|
|
3737
|
-
Cidr: string | undefined;
|
|
3738
|
-
|
|
3739
|
-
IpamScopeId: string | undefined;
|
|
3740
|
-
|
|
3741
|
-
VpcId?: string;
|
|
3742
|
-
|
|
3743
|
-
StartTime?: Date;
|
|
3744
|
-
|
|
3745
|
-
EndTime?: Date;
|
|
3746
|
-
|
|
3747
|
-
MaxResults?: number;
|
|
3748
|
-
|
|
3749
|
-
NextToken?: string;
|
|
3750
|
-
}
|
|
3751
|
-
export declare namespace GetIpamAddressHistoryRequest {
|
|
3752
|
-
|
|
3753
|
-
const filterSensitiveLog: (obj: GetIpamAddressHistoryRequest) => any;
|
|
3754
|
-
}
|
|
3755
|
-
export declare enum IpamComplianceStatus {
|
|
3756
|
-
compliant = "compliant",
|
|
3757
|
-
ignored = "ignored",
|
|
3758
|
-
noncompliant = "noncompliant",
|
|
3759
|
-
unmanaged = "unmanaged"
|
|
3760
|
-
}
|
|
3761
|
-
export declare enum IpamOverlapStatus {
|
|
3762
|
-
ignored = "ignored",
|
|
3763
|
-
nonoverlapping = "nonoverlapping",
|
|
3764
|
-
overlapping = "overlapping"
|
|
3765
|
-
}
|
|
3766
|
-
export declare enum IpamAddressHistoryResourceType {
|
|
3767
|
-
eip = "eip",
|
|
3768
|
-
instance = "instance",
|
|
3769
|
-
network_interface = "network-interface",
|
|
3770
|
-
subnet = "subnet",
|
|
3771
|
-
vpc = "vpc"
|
|
3772
|
-
}
|
|
3773
|
-
|
|
3774
|
-
export interface IpamAddressHistoryRecord {
|
|
3775
|
-
|
|
3776
|
-
ResourceOwnerId?: string;
|
|
3777
|
-
|
|
3778
|
-
ResourceRegion?: string;
|
|
3779
|
-
|
|
3780
|
-
ResourceType?: IpamAddressHistoryResourceType | string;
|
|
3781
|
-
|
|
3782
|
-
ResourceId?: string;
|
|
3783
|
-
|
|
3784
|
-
ResourceCidr?: string;
|
|
3785
|
-
|
|
3786
|
-
ResourceName?: string;
|
|
3787
|
-
|
|
3788
|
-
ResourceComplianceStatus?: IpamComplianceStatus | string;
|
|
3789
|
-
|
|
3790
|
-
ResourceOverlapStatus?: IpamOverlapStatus | string;
|
|
3791
|
-
|
|
3792
|
-
VpcId?: string;
|
|
3793
|
-
|
|
3794
|
-
SampledStartTime?: Date;
|
|
3795
|
-
|
|
3796
|
-
SampledEndTime?: Date;
|
|
3797
|
-
}
|
|
3798
|
-
export declare namespace IpamAddressHistoryRecord {
|
|
3799
|
-
|
|
3800
|
-
const filterSensitiveLog: (obj: IpamAddressHistoryRecord) => any;
|
|
3801
|
-
}
|
|
3802
|
-
export interface GetIpamAddressHistoryResult {
|
|
3803
|
-
|
|
3804
|
-
HistoryRecords?: IpamAddressHistoryRecord[];
|
|
3805
|
-
|
|
3806
|
-
NextToken?: string;
|
|
3807
|
-
}
|
|
3808
|
-
export declare namespace GetIpamAddressHistoryResult {
|
|
3809
|
-
|
|
3810
|
-
const filterSensitiveLog: (obj: GetIpamAddressHistoryResult) => any;
|
|
3811
|
-
}
|
|
3812
|
-
export interface GetIpamPoolAllocationsRequest {
|
|
3813
|
-
|
|
3814
|
-
DryRun?: boolean;
|
|
3815
|
-
|
|
3816
|
-
IpamPoolId: string | undefined;
|
|
3817
|
-
|
|
3818
|
-
IpamPoolAllocationId?: string;
|
|
3819
|
-
|
|
3820
|
-
Filters?: Filter[];
|
|
3821
|
-
|
|
3822
|
-
MaxResults?: number;
|
|
3823
|
-
|
|
3824
|
-
NextToken?: string;
|
|
3825
|
-
}
|
|
3826
|
-
export declare namespace GetIpamPoolAllocationsRequest {
|
|
3827
|
-
|
|
3828
|
-
const filterSensitiveLog: (obj: GetIpamPoolAllocationsRequest) => any;
|
|
3829
|
-
}
|
|
3830
|
-
export interface GetIpamPoolAllocationsResult {
|
|
3831
|
-
|
|
3832
|
-
IpamPoolAllocations?: IpamPoolAllocation[];
|
|
3833
|
-
|
|
3834
|
-
NextToken?: string;
|
|
3835
|
-
}
|
|
3836
|
-
export declare namespace GetIpamPoolAllocationsResult {
|
|
3837
|
-
|
|
3838
|
-
const filterSensitiveLog: (obj: GetIpamPoolAllocationsResult) => any;
|
|
3839
|
-
}
|
|
3840
|
-
export interface GetIpamPoolCidrsRequest {
|
|
3841
|
-
|
|
3842
|
-
DryRun?: boolean;
|
|
3843
|
-
|
|
3844
|
-
IpamPoolId: string | undefined;
|
|
3845
|
-
|
|
3846
|
-
Filters?: Filter[];
|
|
3847
|
-
|
|
3848
|
-
MaxResults?: number;
|
|
3849
|
-
|
|
3850
|
-
NextToken?: string;
|
|
3851
|
-
}
|
|
3852
|
-
export declare namespace GetIpamPoolCidrsRequest {
|
|
3853
|
-
|
|
3854
|
-
const filterSensitiveLog: (obj: GetIpamPoolCidrsRequest) => any;
|
|
3855
|
-
}
|
|
3856
|
-
export interface GetIpamPoolCidrsResult {
|
|
3857
|
-
|
|
3858
|
-
IpamPoolCidrs?: IpamPoolCidr[];
|
|
3859
|
-
|
|
3860
|
-
NextToken?: string;
|
|
3861
|
-
}
|
|
3862
|
-
export declare namespace GetIpamPoolCidrsResult {
|
|
3863
|
-
|
|
3864
|
-
const filterSensitiveLog: (obj: GetIpamPoolCidrsResult) => any;
|
|
3865
|
-
}
|
|
3866
|
-
export declare enum IpamResourceType {
|
|
3867
|
-
eip = "eip",
|
|
3868
|
-
ipv6_pool = "ipv6-pool",
|
|
3869
|
-
public_ipv4_pool = "public-ipv4-pool",
|
|
3870
|
-
subnet = "subnet",
|
|
3871
|
-
vpc = "vpc"
|
|
3872
|
-
}
|
|
3873
|
-
export interface GetIpamResourceCidrsRequest {
|
|
3874
|
-
|
|
3875
|
-
DryRun?: boolean;
|
|
3876
|
-
|
|
3877
|
-
Filters?: Filter[];
|
|
3878
|
-
|
|
3879
|
-
MaxResults?: number;
|
|
3880
|
-
|
|
3881
|
-
NextToken?: string;
|
|
3882
|
-
|
|
3883
|
-
IpamScopeId: string | undefined;
|
|
3884
|
-
|
|
3885
|
-
IpamPoolId?: string;
|
|
3886
|
-
|
|
3887
|
-
ResourceId?: string;
|
|
3888
|
-
|
|
3889
|
-
ResourceType?: IpamResourceType | string;
|
|
3890
|
-
|
|
3891
|
-
ResourceTag?: RequestIpamResourceTag;
|
|
3892
|
-
|
|
3893
|
-
ResourceOwner?: string;
|
|
3894
|
-
}
|
|
3895
|
-
export declare namespace GetIpamResourceCidrsRequest {
|
|
3896
|
-
|
|
3897
|
-
const filterSensitiveLog: (obj: GetIpamResourceCidrsRequest) => any;
|
|
3898
|
-
}
|
|
3899
|
-
export declare enum IpamManagementState {
|
|
3900
|
-
ignored = "ignored",
|
|
3901
|
-
managed = "managed",
|
|
3902
|
-
unmanaged = "unmanaged"
|
|
3903
|
-
}
|