@aws-sdk/client-ec2 3.918.0 → 3.919.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +128 -0
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +109 -0
- package/dist-types/EC2.d.ts +8 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +122 -0
- package/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +7 -6
- package/dist-types/commands/DescribeVolumeStatusCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +1 -2
- package/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +2 -1
- package/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_4.d.ts +152 -62
- package/dist-types/models/models_5.d.ts +56 -201
- package/dist-types/models/models_6.d.ts +201 -116
- package/dist-types/models/models_7.d.ts +116 -96
- package/dist-types/models/models_8.d.ts +94 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +24 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +21 -13
- package/dist-types/ts3.4/models/models_5.d.ts +13 -31
- package/dist-types/ts3.4/models/models_6.d.ts +31 -26
- package/dist-types/ts3.4/models/models_7.d.ts +27 -22
- package/dist-types/ts3.4/models/models_8.d.ts +21 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +3 -3
|
@@ -1,8 +1,207 @@
|
|
|
1
1
|
import { ActiveVpnTunnelStatus, AddressTransfer, AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, AllowedPrincipal, AsnAssociation, AssociationStatus, CurrencyCodeValues, DeviceTrustProviderType, IamInstanceProfileAssociation, InstanceEventWindow, IpamResourceDiscoveryAssociation, NatGatewayAddress, RouteServerAssociation, SecurityGroupVpcAssociationState, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, TransitGatewayAssociation, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPolicyTableAssociation, UserTrustProviderType, VerifiedAccessInstance, VerifiedAccessTrustProvider, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import { CapacityReservationState, DiskImageFormat, InstanceRequirementsRequest, IpAddressType, SSEType, Vpc } from "./models_1";
|
|
2
|
+
import { CapacityReservationState, DiskImageFormat, InstanceRequirementsRequest, IpAddressType, SSEType, VolumeType, Vpc } from "./models_1";
|
|
3
3
|
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, MetricType, PayerResponsibility, PeriodType, ServiceConfiguration, ServiceConnectivityType, ServiceTypeDetail, State, StatisticType, VpcBlockPublicAccessExclusion, VpcEndpoint, VpnConnection, VpnGateway } from "./models_3";
|
|
4
4
|
import { AttributeBooleanValue, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, HttpTokensState, InstanceMetadataEndpointState, InstanceMetadataTagsState, PaymentOption, ReservationState, VirtualizationType } from "./models_4";
|
|
5
|
-
import { ArchitectureType } from "./models_5";
|
|
5
|
+
import { ArchitectureType, VolumeModificationState } from "./models_5";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Describes the modification status of an EBS volume.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface VolumeModification {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ID of the volume.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
VolumeId?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The current modification state.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
ModificationState?: VolumeModificationState | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A status message about the modification progress or failure.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
StatusMessage?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The target size of the volume, in GiB.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
TargetSize?: number | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The target IOPS rate of the volume.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
TargetIops?: number | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The target EBS volume type of the volume.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
TargetVolumeType?: VolumeType | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The target throughput of the volume, in MiB/s.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
TargetThroughput?: number | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The target setting for Amazon EBS Multi-Attach.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
TargetMultiAttachEnabled?: boolean | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The original size of the volume, in GiB.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
OriginalSize?: number | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The original IOPS rate of the volume.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
OriginalIops?: number | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The original EBS volume type of the volume.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
OriginalVolumeType?: VolumeType | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The original throughput of the volume, in MiB/s.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
OriginalThroughput?: number | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The original setting for Amazon EBS Multi-Attach.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
OriginalMultiAttachEnabled?: boolean | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The modification progress, from 0 to 100 percent complete.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
Progress?: number | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The modification start time.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
StartTime?: Date | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>The modification completion or failure time.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
EndTime?: Date | undefined;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export interface DescribeVolumesModificationsResult {
|
|
96
|
+
/**
|
|
97
|
+
* <p>The token to include in another request to get the next page of items.
|
|
98
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
NextToken?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>Information about the volume modifications.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
VolumesModifications?: VolumeModification[] | undefined;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface DescribeVolumeStatusRequest {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The maximum number of items to return for this request.
|
|
114
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
115
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
MaxResults?: number | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The token returned from a previous paginated request.
|
|
121
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
NextToken?: string | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>The IDs of the volumes.</p>
|
|
127
|
+
* <p>Default: Describes all your volumes.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
VolumeIds?: string[] | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
133
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
134
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
DryRun?: boolean | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>The filters.</p>
|
|
140
|
+
* <ul>
|
|
141
|
+
* <li>
|
|
142
|
+
* <p>
|
|
143
|
+
* <code>action.code</code> - The action code for the event (for example,
|
|
144
|
+
* <code>enable-volume-io</code>).</p>
|
|
145
|
+
* </li>
|
|
146
|
+
* <li>
|
|
147
|
+
* <p>
|
|
148
|
+
* <code>action.description</code> - A description of the action.</p>
|
|
149
|
+
* </li>
|
|
150
|
+
* <li>
|
|
151
|
+
* <p>
|
|
152
|
+
* <code>action.event-id</code> - The event ID associated with the action.</p>
|
|
153
|
+
* </li>
|
|
154
|
+
* <li>
|
|
155
|
+
* <p>
|
|
156
|
+
* <code>availability-zone</code> - The Availability Zone of the instance.</p>
|
|
157
|
+
* </li>
|
|
158
|
+
* <li>
|
|
159
|
+
* <p>
|
|
160
|
+
* <code>event.description</code> - A description of the event.</p>
|
|
161
|
+
* </li>
|
|
162
|
+
* <li>
|
|
163
|
+
* <p>
|
|
164
|
+
* <code>event.event-id</code> - The event ID.</p>
|
|
165
|
+
* </li>
|
|
166
|
+
* <li>
|
|
167
|
+
* <p>
|
|
168
|
+
* <code>event.event-type</code> - The event type (for <code>io-enabled</code>:
|
|
169
|
+
* <code>passed</code> | <code>failed</code>; for <code>io-performance</code>:
|
|
170
|
+
* <code>io-performance:degraded</code> | <code>io-performance:severely-degraded</code> |
|
|
171
|
+
* <code>io-performance:stalled</code>).</p>
|
|
172
|
+
* </li>
|
|
173
|
+
* <li>
|
|
174
|
+
* <p>
|
|
175
|
+
* <code>event.not-after</code> - The latest end time for the event.</p>
|
|
176
|
+
* </li>
|
|
177
|
+
* <li>
|
|
178
|
+
* <p>
|
|
179
|
+
* <code>event.not-before</code> - The earliest start time for the event.</p>
|
|
180
|
+
* </li>
|
|
181
|
+
* <li>
|
|
182
|
+
* <p>
|
|
183
|
+
* <code>volume-status.details-name</code> - The cause for
|
|
184
|
+
* <code>volume-status.status</code> (<code>io-enabled</code> |
|
|
185
|
+
* <code>io-performance</code>).</p>
|
|
186
|
+
* </li>
|
|
187
|
+
* <li>
|
|
188
|
+
* <p>
|
|
189
|
+
* <code>volume-status.details-status</code> - The status of
|
|
190
|
+
* <code>volume-status.details-name</code> (for <code>io-enabled</code>:
|
|
191
|
+
* <code>passed</code> | <code>failed</code>; for <code>io-performance</code>:
|
|
192
|
+
* <code>normal</code> | <code>degraded</code> | <code>severely-degraded</code> |
|
|
193
|
+
* <code>stalled</code>).</p>
|
|
194
|
+
* </li>
|
|
195
|
+
* <li>
|
|
196
|
+
* <p>
|
|
197
|
+
* <code>volume-status.status</code> - The status of the volume (<code>ok</code> |
|
|
198
|
+
* <code>impaired</code> | <code>warning</code> | <code>insufficient-data</code>).</p>
|
|
199
|
+
* </li>
|
|
200
|
+
* </ul>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
Filters?: Filter[] | undefined;
|
|
204
|
+
}
|
|
6
205
|
/**
|
|
7
206
|
* <p>Describes a volume status operation code.</p>
|
|
8
207
|
* @public
|
|
@@ -7140,120 +7339,6 @@ export declare const IpamAddressHistoryResourceType: {
|
|
|
7140
7339
|
* @public
|
|
7141
7340
|
*/
|
|
7142
7341
|
export type IpamAddressHistoryResourceType = (typeof IpamAddressHistoryResourceType)[keyof typeof IpamAddressHistoryResourceType];
|
|
7143
|
-
/**
|
|
7144
|
-
* <p>The historical record of a CIDR within an IPAM scope. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/view-history-cidr-ipam.html">View the history of IP addresses</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
7145
|
-
* </p>
|
|
7146
|
-
* @public
|
|
7147
|
-
*/
|
|
7148
|
-
export interface IpamAddressHistoryRecord {
|
|
7149
|
-
/**
|
|
7150
|
-
* <p>The ID of the resource owner.</p>
|
|
7151
|
-
* @public
|
|
7152
|
-
*/
|
|
7153
|
-
ResourceOwnerId?: string | undefined;
|
|
7154
|
-
/**
|
|
7155
|
-
* <p>The Amazon Web Services Region of the resource.</p>
|
|
7156
|
-
* @public
|
|
7157
|
-
*/
|
|
7158
|
-
ResourceRegion?: string | undefined;
|
|
7159
|
-
/**
|
|
7160
|
-
* <p>The type of the resource.</p>
|
|
7161
|
-
* @public
|
|
7162
|
-
*/
|
|
7163
|
-
ResourceType?: IpamAddressHistoryResourceType | undefined;
|
|
7164
|
-
/**
|
|
7165
|
-
* <p>The ID of the resource.</p>
|
|
7166
|
-
* @public
|
|
7167
|
-
*/
|
|
7168
|
-
ResourceId?: string | undefined;
|
|
7169
|
-
/**
|
|
7170
|
-
* <p>The CIDR of the resource.</p>
|
|
7171
|
-
* @public
|
|
7172
|
-
*/
|
|
7173
|
-
ResourceCidr?: string | undefined;
|
|
7174
|
-
/**
|
|
7175
|
-
* <p>The name of the resource.</p>
|
|
7176
|
-
* @public
|
|
7177
|
-
*/
|
|
7178
|
-
ResourceName?: string | undefined;
|
|
7179
|
-
/**
|
|
7180
|
-
* <p>The compliance status of a resource. For more information on compliance statuses, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
7181
|
-
* @public
|
|
7182
|
-
*/
|
|
7183
|
-
ResourceComplianceStatus?: IpamComplianceStatus | undefined;
|
|
7184
|
-
/**
|
|
7185
|
-
* <p>The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
7186
|
-
* @public
|
|
7187
|
-
*/
|
|
7188
|
-
ResourceOverlapStatus?: IpamOverlapStatus | undefined;
|
|
7189
|
-
/**
|
|
7190
|
-
* <p>The VPC ID of the resource.</p>
|
|
7191
|
-
* @public
|
|
7192
|
-
*/
|
|
7193
|
-
VpcId?: string | undefined;
|
|
7194
|
-
/**
|
|
7195
|
-
* <p>Sampled start time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the start time may have occurred before this specific time.</p>
|
|
7196
|
-
* @public
|
|
7197
|
-
*/
|
|
7198
|
-
SampledStartTime?: Date | undefined;
|
|
7199
|
-
/**
|
|
7200
|
-
* <p>Sampled end time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the end time may have occurred before this specific time.</p>
|
|
7201
|
-
* @public
|
|
7202
|
-
*/
|
|
7203
|
-
SampledEndTime?: Date | undefined;
|
|
7204
|
-
}
|
|
7205
|
-
/**
|
|
7206
|
-
* @public
|
|
7207
|
-
*/
|
|
7208
|
-
export interface GetIpamAddressHistoryResult {
|
|
7209
|
-
/**
|
|
7210
|
-
* <p>A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.</p>
|
|
7211
|
-
* @public
|
|
7212
|
-
*/
|
|
7213
|
-
HistoryRecords?: IpamAddressHistoryRecord[] | undefined;
|
|
7214
|
-
/**
|
|
7215
|
-
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7216
|
-
* @public
|
|
7217
|
-
*/
|
|
7218
|
-
NextToken?: string | undefined;
|
|
7219
|
-
}
|
|
7220
|
-
/**
|
|
7221
|
-
* @public
|
|
7222
|
-
*/
|
|
7223
|
-
export interface GetIpamDiscoveredAccountsRequest {
|
|
7224
|
-
/**
|
|
7225
|
-
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
7226
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7227
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7228
|
-
* @public
|
|
7229
|
-
*/
|
|
7230
|
-
DryRun?: boolean | undefined;
|
|
7231
|
-
/**
|
|
7232
|
-
* <p>A resource discovery ID.</p>
|
|
7233
|
-
* @public
|
|
7234
|
-
*/
|
|
7235
|
-
IpamResourceDiscoveryId: string | undefined;
|
|
7236
|
-
/**
|
|
7237
|
-
* <p>The Amazon Web Services Region that the account information is returned from.</p>
|
|
7238
|
-
* @public
|
|
7239
|
-
*/
|
|
7240
|
-
DiscoveryRegion: string | undefined;
|
|
7241
|
-
/**
|
|
7242
|
-
* <p>Discovered account filters.</p>
|
|
7243
|
-
* @public
|
|
7244
|
-
*/
|
|
7245
|
-
Filters?: Filter[] | undefined;
|
|
7246
|
-
/**
|
|
7247
|
-
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
7248
|
-
* @public
|
|
7249
|
-
*/
|
|
7250
|
-
NextToken?: string | undefined;
|
|
7251
|
-
/**
|
|
7252
|
-
* <p>The maximum number of discovered accounts to return in one page of results.</p>
|
|
7253
|
-
* @public
|
|
7254
|
-
*/
|
|
7255
|
-
MaxResults?: number | undefined;
|
|
7256
|
-
}
|
|
7257
7342
|
/**
|
|
7258
7343
|
* @internal
|
|
7259
7344
|
*/
|
|
@@ -3,8 +3,122 @@ import { _InstanceType, AttributeValue, CapacityReservationPreference, CapacityR
|
|
|
3
3
|
import { AutoAcceptSharedAttachmentsValue, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, InternetGatewayExclusionMode, LocalGatewayRoute, ManagedPrefixList, NetworkInsightsAccessScopeContent, ResponseLaunchTemplateData, RouteServer, RouteServerPersistRoutesAction, SubnetCidrReservation, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, TransitGatewayPrefixListReference, VerifiedAccessEndpoint, VerifiedAccessEndpointProtocol, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpnEcmpSupportValue } from "./models_2";
|
|
4
4
|
import { DnsOptionsSpecification, Filter, IpamPoolCidr, SubnetConfiguration, VpcBlockPublicAccessExclusion } from "./models_3";
|
|
5
5
|
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStatusEvent, LaunchPermission, PermissionGroup, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_4";
|
|
6
|
-
import { AnalysisStatus, ArchitectureType, CreateVolumePermission, ExcessCapacityTerminationPolicy, LaunchTemplateConfig, LockState, ReservedInstancesConfiguration, SnapshotAttributeName, VerifiedAccessInstanceLoggingConfiguration
|
|
7
|
-
import { InstanceFamilyCreditSpecification, InternetGatewayBlockMode, IpamComplianceStatus, IpamOverlapStatus, ManagedBy, RouteServerPropagation, SnapshotBlockPublicAccessState, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VpcBlockPublicAccessOptions } from "./models_6";
|
|
6
|
+
import { AnalysisStatus, ArchitectureType, CreateVolumePermission, ExcessCapacityTerminationPolicy, LaunchTemplateConfig, LockState, ReservedInstancesConfiguration, SnapshotAttributeName, VerifiedAccessInstanceLoggingConfiguration } from "./models_5";
|
|
7
|
+
import { InstanceFamilyCreditSpecification, InternetGatewayBlockMode, IpamAddressHistoryResourceType, IpamComplianceStatus, IpamOverlapStatus, ManagedBy, RouteServerPropagation, SnapshotBlockPublicAccessState, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification, VpcBlockPublicAccessOptions } from "./models_6";
|
|
8
|
+
/**
|
|
9
|
+
* <p>The historical record of a CIDR within an IPAM scope. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/view-history-cidr-ipam.html">View the history of IP addresses</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
10
|
+
* </p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export interface IpamAddressHistoryRecord {
|
|
14
|
+
/**
|
|
15
|
+
* <p>The ID of the resource owner.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
ResourceOwnerId?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The Amazon Web Services Region of the resource.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
ResourceRegion?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The type of the resource.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
ResourceType?: IpamAddressHistoryResourceType | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The ID of the resource.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
ResourceId?: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The CIDR of the resource.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
ResourceCidr?: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The name of the resource.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
ResourceName?: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The compliance status of a resource. For more information on compliance statuses, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
ResourceComplianceStatus?: IpamComplianceStatus | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
ResourceOverlapStatus?: IpamOverlapStatus | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The VPC ID of the resource.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
VpcId?: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>Sampled start time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the start time may have occurred before this specific time.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
SampledStartTime?: Date | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>Sampled end time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the end time may have occurred before this specific time.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
SampledEndTime?: Date | undefined;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export interface GetIpamAddressHistoryResult {
|
|
74
|
+
/**
|
|
75
|
+
* <p>A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
HistoryRecords?: IpamAddressHistoryRecord[] | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
NextToken?: string | undefined;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export interface GetIpamDiscoveredAccountsRequest {
|
|
89
|
+
/**
|
|
90
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
91
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
92
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
DryRun?: boolean | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>A resource discovery ID.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
IpamResourceDiscoveryId: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The Amazon Web Services Region that the account information is returned from.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
DiscoveryRegion: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>Discovered account filters.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
Filters?: Filter[] | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
NextToken?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The maximum number of discovered accounts to return in one page of results.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
MaxResults?: number | undefined;
|
|
121
|
+
}
|
|
8
122
|
/**
|
|
9
123
|
* @public
|
|
10
124
|
* @enum
|
|
@@ -8443,100 +8557,6 @@ export interface ModifyVpcEndpointConnectionNotificationRequest {
|
|
|
8443
8557
|
*/
|
|
8444
8558
|
ConnectionEvents?: string[] | undefined;
|
|
8445
8559
|
}
|
|
8446
|
-
/**
|
|
8447
|
-
* @public
|
|
8448
|
-
*/
|
|
8449
|
-
export interface ModifyVpcEndpointConnectionNotificationResult {
|
|
8450
|
-
/**
|
|
8451
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
|
|
8452
|
-
* @public
|
|
8453
|
-
*/
|
|
8454
|
-
ReturnValue?: boolean | undefined;
|
|
8455
|
-
}
|
|
8456
|
-
/**
|
|
8457
|
-
* @public
|
|
8458
|
-
*/
|
|
8459
|
-
export interface ModifyVpcEndpointServiceConfigurationRequest {
|
|
8460
|
-
/**
|
|
8461
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8462
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8463
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8464
|
-
* @public
|
|
8465
|
-
*/
|
|
8466
|
-
DryRun?: boolean | undefined;
|
|
8467
|
-
/**
|
|
8468
|
-
* <p>The ID of the service.</p>
|
|
8469
|
-
* @public
|
|
8470
|
-
*/
|
|
8471
|
-
ServiceId: string | undefined;
|
|
8472
|
-
/**
|
|
8473
|
-
* <p>(Interface endpoint configuration) The private DNS name to assign to the endpoint service.</p>
|
|
8474
|
-
* @public
|
|
8475
|
-
*/
|
|
8476
|
-
PrivateDnsName?: string | undefined;
|
|
8477
|
-
/**
|
|
8478
|
-
* <p>(Interface endpoint configuration) Removes the private DNS name of the endpoint service.</p>
|
|
8479
|
-
* @public
|
|
8480
|
-
*/
|
|
8481
|
-
RemovePrivateDnsName?: boolean | undefined;
|
|
8482
|
-
/**
|
|
8483
|
-
* <p>Indicates whether requests to create an endpoint to the service must be accepted.</p>
|
|
8484
|
-
* @public
|
|
8485
|
-
*/
|
|
8486
|
-
AcceptanceRequired?: boolean | undefined;
|
|
8487
|
-
/**
|
|
8488
|
-
* <p>The Amazon Resource Names (ARNs) of Network Load Balancers to add to the service
|
|
8489
|
-
* configuration.</p>
|
|
8490
|
-
* @public
|
|
8491
|
-
*/
|
|
8492
|
-
AddNetworkLoadBalancerArns?: string[] | undefined;
|
|
8493
|
-
/**
|
|
8494
|
-
* <p>The Amazon Resource Names (ARNs) of Network Load Balancers to remove from the service
|
|
8495
|
-
* configuration.</p>
|
|
8496
|
-
* @public
|
|
8497
|
-
*/
|
|
8498
|
-
RemoveNetworkLoadBalancerArns?: string[] | undefined;
|
|
8499
|
-
/**
|
|
8500
|
-
* <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to the service configuration.</p>
|
|
8501
|
-
* @public
|
|
8502
|
-
*/
|
|
8503
|
-
AddGatewayLoadBalancerArns?: string[] | undefined;
|
|
8504
|
-
/**
|
|
8505
|
-
* <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from the service configuration.</p>
|
|
8506
|
-
* @public
|
|
8507
|
-
*/
|
|
8508
|
-
RemoveGatewayLoadBalancerArns?: string[] | undefined;
|
|
8509
|
-
/**
|
|
8510
|
-
* <p>The IP address types to add to the service configuration.</p>
|
|
8511
|
-
* @public
|
|
8512
|
-
*/
|
|
8513
|
-
AddSupportedIpAddressTypes?: string[] | undefined;
|
|
8514
|
-
/**
|
|
8515
|
-
* <p>The IP address types to remove from the service configuration.</p>
|
|
8516
|
-
* @public
|
|
8517
|
-
*/
|
|
8518
|
-
RemoveSupportedIpAddressTypes?: string[] | undefined;
|
|
8519
|
-
/**
|
|
8520
|
-
* <p>The supported Regions to add to the service configuration.</p>
|
|
8521
|
-
* @public
|
|
8522
|
-
*/
|
|
8523
|
-
AddSupportedRegions?: string[] | undefined;
|
|
8524
|
-
/**
|
|
8525
|
-
* <p>The supported Regions to remove from the service configuration.</p>
|
|
8526
|
-
* @public
|
|
8527
|
-
*/
|
|
8528
|
-
RemoveSupportedRegions?: string[] | undefined;
|
|
8529
|
-
}
|
|
8530
|
-
/**
|
|
8531
|
-
* @public
|
|
8532
|
-
*/
|
|
8533
|
-
export interface ModifyVpcEndpointServiceConfigurationResult {
|
|
8534
|
-
/**
|
|
8535
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
|
|
8536
|
-
* @public
|
|
8537
|
-
*/
|
|
8538
|
-
Return?: boolean | undefined;
|
|
8539
|
-
}
|
|
8540
8560
|
/**
|
|
8541
8561
|
* @internal
|
|
8542
8562
|
*/
|
|
@@ -6,6 +6,100 @@ import { ArchitectureValues, BootModeValues, ClientVpnConnectionStatus, HttpToke
|
|
|
6
6
|
import { InstanceNetworkInterfaceSpecification, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis, PublicIpv4PoolRange, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement } from "./models_5";
|
|
7
7
|
import { CapacityManagerStatus, Purchase } from "./models_6";
|
|
8
8
|
import { CapacityReservationSpecification } from "./models_7";
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export interface ModifyVpcEndpointConnectionNotificationResult {
|
|
13
|
+
/**
|
|
14
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
ReturnValue?: boolean | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface ModifyVpcEndpointServiceConfigurationRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
25
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
26
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
DryRun?: boolean | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The ID of the service.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
ServiceId: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>(Interface endpoint configuration) The private DNS name to assign to the endpoint service.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
PrivateDnsName?: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>(Interface endpoint configuration) Removes the private DNS name of the endpoint service.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
RemovePrivateDnsName?: boolean | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>Indicates whether requests to create an endpoint to the service must be accepted.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
AcceptanceRequired?: boolean | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The Amazon Resource Names (ARNs) of Network Load Balancers to add to the service
|
|
52
|
+
* configuration.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
AddNetworkLoadBalancerArns?: string[] | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The Amazon Resource Names (ARNs) of Network Load Balancers to remove from the service
|
|
58
|
+
* configuration.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
RemoveNetworkLoadBalancerArns?: string[] | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to the service configuration.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
AddGatewayLoadBalancerArns?: string[] | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from the service configuration.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
RemoveGatewayLoadBalancerArns?: string[] | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The IP address types to add to the service configuration.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
AddSupportedIpAddressTypes?: string[] | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The IP address types to remove from the service configuration.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
RemoveSupportedIpAddressTypes?: string[] | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The supported Regions to add to the service configuration.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
AddSupportedRegions?: string[] | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The supported Regions to remove from the service configuration.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
RemoveSupportedRegions?: string[] | undefined;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export interface ModifyVpcEndpointServiceConfigurationResult {
|
|
97
|
+
/**
|
|
98
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
Return?: boolean | undefined;
|
|
102
|
+
}
|
|
9
103
|
/**
|
|
10
104
|
* @public
|
|
11
105
|
*/
|