@aws-sdk/client-ec2 3.872.0 → 3.875.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 +40 -5
- package/dist-es/models/models_1.js +10 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_ec2.js +21 -0
- package/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +3 -1
- package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeClientVpnConnectionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeIpamPoolsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +1 -2
- package/dist-types/commands/GetSerialConsoleAccessStatusCommand.d.ts +1 -1
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +1 -2
- package/dist-types/models/models_1.d.ts +40 -89
- package/dist-types/models/models_2.d.ts +89 -33
- package/dist-types/models/models_3.d.ts +33 -184
- package/dist-types/models/models_4.d.ts +200 -49
- package/dist-types/models/models_5.d.ts +49 -130
- package/dist-types/models/models_6.d.ts +132 -42
- package/dist-types/models/models_7.d.ts +38 -48
- package/dist-types/models/models_8.d.ts +49 -1
- package/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +17 -15
- package/dist-types/ts3.4/models/models_2.d.ts +18 -9
- package/dist-types/ts3.4/models/models_3.d.ts +8 -13
- package/dist-types/ts3.4/models/models_4.d.ts +17 -12
- package/dist-types/ts3.4/models/models_5.d.ts +13 -22
- package/dist-types/ts3.4/models/models_6.d.ts +24 -8
- package/dist-types/ts3.4/models/models_7.d.ts +7 -11
- package/dist-types/ts3.4/models/models_8.d.ts +11 -1
- package/package.json +12 -12
|
@@ -1290,12 +1290,26 @@ export interface ConnectionLogOptions {
|
|
|
1290
1290
|
CloudwatchLogGroup?: string | undefined;
|
|
1291
1291
|
CloudwatchLogStream?: string | undefined;
|
|
1292
1292
|
}
|
|
1293
|
+
export declare const EndpointIpAddressType: {
|
|
1294
|
+
readonly dual_stack: "dual-stack";
|
|
1295
|
+
readonly ipv4: "ipv4";
|
|
1296
|
+
readonly ipv6: "ipv6";
|
|
1297
|
+
};
|
|
1298
|
+
export type EndpointIpAddressType =
|
|
1299
|
+
(typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
|
|
1293
1300
|
export declare const SelfServicePortal: {
|
|
1294
1301
|
readonly disabled: "disabled";
|
|
1295
1302
|
readonly enabled: "enabled";
|
|
1296
1303
|
};
|
|
1297
1304
|
export type SelfServicePortal =
|
|
1298
1305
|
(typeof SelfServicePortal)[keyof typeof SelfServicePortal];
|
|
1306
|
+
export declare const TrafficIpAddressType: {
|
|
1307
|
+
readonly dual_stack: "dual-stack";
|
|
1308
|
+
readonly ipv4: "ipv4";
|
|
1309
|
+
readonly ipv6: "ipv6";
|
|
1310
|
+
};
|
|
1311
|
+
export type TrafficIpAddressType =
|
|
1312
|
+
(typeof TrafficIpAddressType)[keyof typeof TrafficIpAddressType];
|
|
1299
1313
|
export declare const TransportProtocol: {
|
|
1300
1314
|
readonly tcp: "tcp";
|
|
1301
1315
|
readonly udp: "udp";
|
|
@@ -1303,7 +1317,7 @@ export declare const TransportProtocol: {
|
|
|
1303
1317
|
export type TransportProtocol =
|
|
1304
1318
|
(typeof TransportProtocol)[keyof typeof TransportProtocol];
|
|
1305
1319
|
export interface CreateClientVpnEndpointRequest {
|
|
1306
|
-
ClientCidrBlock
|
|
1320
|
+
ClientCidrBlock?: string | undefined;
|
|
1307
1321
|
ServerCertificateArn: string | undefined;
|
|
1308
1322
|
AuthenticationOptions: ClientVpnAuthenticationRequest[] | undefined;
|
|
1309
1323
|
ConnectionLogOptions: ConnectionLogOptions | undefined;
|
|
@@ -1323,6 +1337,8 @@ export interface CreateClientVpnEndpointRequest {
|
|
|
1323
1337
|
ClientLoginBannerOptions?: ClientLoginBannerOptions | undefined;
|
|
1324
1338
|
ClientRouteEnforcementOptions?: ClientRouteEnforcementOptions | undefined;
|
|
1325
1339
|
DisconnectOnSessionTimeout?: boolean | undefined;
|
|
1340
|
+
EndpointIpAddressType?: EndpointIpAddressType | undefined;
|
|
1341
|
+
TrafficIpAddressType?: TrafficIpAddressType | undefined;
|
|
1326
1342
|
}
|
|
1327
1343
|
export declare const ClientVpnEndpointStatusCode: {
|
|
1328
1344
|
readonly available: "available";
|
|
@@ -3028,20 +3044,6 @@ export interface LaunchTemplateLicenseConfiguration {
|
|
|
3028
3044
|
export interface LaunchTemplateInstanceMaintenanceOptions {
|
|
3029
3045
|
AutoRecovery?: LaunchTemplateAutoRecoveryState | undefined;
|
|
3030
3046
|
}
|
|
3031
|
-
export declare const LaunchTemplateInstanceMetadataOptionsState: {
|
|
3032
|
-
readonly applied: "applied";
|
|
3033
|
-
readonly pending: "pending";
|
|
3034
|
-
};
|
|
3035
|
-
export type LaunchTemplateInstanceMetadataOptionsState =
|
|
3036
|
-
(typeof LaunchTemplateInstanceMetadataOptionsState)[keyof typeof LaunchTemplateInstanceMetadataOptionsState];
|
|
3037
|
-
export interface LaunchTemplateInstanceMetadataOptions {
|
|
3038
|
-
State?: LaunchTemplateInstanceMetadataOptionsState | undefined;
|
|
3039
|
-
HttpTokens?: LaunchTemplateHttpTokensState | undefined;
|
|
3040
|
-
HttpPutResponseHopLimit?: number | undefined;
|
|
3041
|
-
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | undefined;
|
|
3042
|
-
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | undefined;
|
|
3043
|
-
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | undefined;
|
|
3044
|
-
}
|
|
3045
3047
|
export declare const CopySnapshotRequestFilterSensitiveLog: (
|
|
3046
3048
|
obj: CopySnapshotRequest
|
|
3047
3049
|
) => any;
|
|
@@ -47,10 +47,13 @@ import {
|
|
|
47
47
|
LaunchTemplateElasticInferenceAcceleratorResponse,
|
|
48
48
|
LaunchTemplateEnclaveOptions,
|
|
49
49
|
LaunchTemplateHibernationOptions,
|
|
50
|
+
LaunchTemplateHttpTokensState,
|
|
50
51
|
LaunchTemplateIamInstanceProfileSpecification,
|
|
51
52
|
LaunchTemplateInstanceMaintenanceOptions,
|
|
52
53
|
LaunchTemplateInstanceMarketOptions,
|
|
53
|
-
|
|
54
|
+
LaunchTemplateInstanceMetadataEndpointState,
|
|
55
|
+
LaunchTemplateInstanceMetadataProtocolIpv6,
|
|
56
|
+
LaunchTemplateInstanceMetadataTagsState,
|
|
54
57
|
LaunchTemplateLicenseConfiguration,
|
|
55
58
|
MacModificationTask,
|
|
56
59
|
MacSystemIntegrityProtectionSettingStatus,
|
|
@@ -65,6 +68,20 @@ import {
|
|
|
65
68
|
VolumeType,
|
|
66
69
|
Vpc,
|
|
67
70
|
} from "./models_1";
|
|
71
|
+
export declare const LaunchTemplateInstanceMetadataOptionsState: {
|
|
72
|
+
readonly applied: "applied";
|
|
73
|
+
readonly pending: "pending";
|
|
74
|
+
};
|
|
75
|
+
export type LaunchTemplateInstanceMetadataOptionsState =
|
|
76
|
+
(typeof LaunchTemplateInstanceMetadataOptionsState)[keyof typeof LaunchTemplateInstanceMetadataOptionsState];
|
|
77
|
+
export interface LaunchTemplateInstanceMetadataOptions {
|
|
78
|
+
State?: LaunchTemplateInstanceMetadataOptionsState | undefined;
|
|
79
|
+
HttpTokens?: LaunchTemplateHttpTokensState | undefined;
|
|
80
|
+
HttpPutResponseHopLimit?: number | undefined;
|
|
81
|
+
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | undefined;
|
|
82
|
+
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | undefined;
|
|
83
|
+
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | undefined;
|
|
84
|
+
}
|
|
68
85
|
export interface LaunchTemplatesMonitoring {
|
|
69
86
|
Enabled?: boolean | undefined;
|
|
70
87
|
}
|
|
@@ -2294,14 +2311,6 @@ export interface SecurityGroupIdentifier {
|
|
|
2294
2311
|
GroupId?: string | undefined;
|
|
2295
2312
|
GroupName?: string | undefined;
|
|
2296
2313
|
}
|
|
2297
|
-
export interface SubnetIpPrefixes {
|
|
2298
|
-
SubnetId?: string | undefined;
|
|
2299
|
-
IpPrefixes?: string[] | undefined;
|
|
2300
|
-
}
|
|
2301
|
-
export interface LastError {
|
|
2302
|
-
Message?: string | undefined;
|
|
2303
|
-
Code?: string | undefined;
|
|
2304
|
-
}
|
|
2305
2314
|
export declare const ResponseLaunchTemplateDataFilterSensitiveLog: (
|
|
2306
2315
|
obj: ResponseLaunchTemplateData
|
|
2307
2316
|
) => any;
|
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
import {
|
|
43
43
|
DnsEntry,
|
|
44
44
|
DnsOptions,
|
|
45
|
-
LastError,
|
|
46
45
|
LocalGatewayRoute,
|
|
47
46
|
LocalGatewayRouteTable,
|
|
48
47
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation,
|
|
@@ -55,7 +54,6 @@ import {
|
|
|
55
54
|
RouteServerPeer,
|
|
56
55
|
SecurityGroupIdentifier,
|
|
57
56
|
SubnetCidrReservation,
|
|
58
|
-
SubnetIpPrefixes,
|
|
59
57
|
TransitGateway,
|
|
60
58
|
TransitGatewayConnect,
|
|
61
59
|
TransitGatewayConnectPeer,
|
|
@@ -70,6 +68,14 @@ import {
|
|
|
70
68
|
VpcBlockPublicAccessExclusion,
|
|
71
69
|
VpcEndpointType,
|
|
72
70
|
} from "./models_2";
|
|
71
|
+
export interface SubnetIpPrefixes {
|
|
72
|
+
SubnetId?: string | undefined;
|
|
73
|
+
IpPrefixes?: string[] | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface LastError {
|
|
76
|
+
Message?: string | undefined;
|
|
77
|
+
Code?: string | undefined;
|
|
78
|
+
}
|
|
73
79
|
export declare const State: {
|
|
74
80
|
readonly Available: "Available";
|
|
75
81
|
readonly Deleted: "Deleted";
|
|
@@ -1631,17 +1637,6 @@ export interface CapacityReservationFleet {
|
|
|
1631
1637
|
InstanceTypeSpecifications?: FleetCapacityReservation[] | undefined;
|
|
1632
1638
|
Tags?: Tag[] | undefined;
|
|
1633
1639
|
}
|
|
1634
|
-
export interface DescribeCapacityReservationFleetsResult {
|
|
1635
|
-
CapacityReservationFleets?: CapacityReservationFleet[] | undefined;
|
|
1636
|
-
NextToken?: string | undefined;
|
|
1637
|
-
}
|
|
1638
|
-
export interface DescribeCapacityReservationsRequest {
|
|
1639
|
-
CapacityReservationIds?: string[] | undefined;
|
|
1640
|
-
NextToken?: string | undefined;
|
|
1641
|
-
MaxResults?: number | undefined;
|
|
1642
|
-
Filters?: Filter[] | undefined;
|
|
1643
|
-
DryRun?: boolean | undefined;
|
|
1644
|
-
}
|
|
1645
1640
|
export declare const VpnTunnelOptionsSpecificationFilterSensitiveLog: (
|
|
1646
1641
|
obj: VpnTunnelOptionsSpecification
|
|
1647
1642
|
) => any;
|
|
@@ -34,6 +34,7 @@ import {
|
|
|
34
34
|
DiskImageFormat,
|
|
35
35
|
Ec2InstanceConnectEndpoint,
|
|
36
36
|
EgressOnlyInternetGateway,
|
|
37
|
+
EndpointIpAddressType,
|
|
37
38
|
ExportTask,
|
|
38
39
|
FleetCapacityReservationUsageStrategy,
|
|
39
40
|
FleetExcessCapacityTerminationPolicy,
|
|
@@ -47,7 +48,6 @@ import {
|
|
|
47
48
|
InstanceLifecycle,
|
|
48
49
|
InternetGateway,
|
|
49
50
|
IpamExternalResourceVerificationToken,
|
|
50
|
-
IpamPool,
|
|
51
51
|
LaunchTemplateAndOverridesResponse,
|
|
52
52
|
LogDestinationType,
|
|
53
53
|
OperatorResponse,
|
|
@@ -56,6 +56,7 @@ import {
|
|
|
56
56
|
SpotAllocationStrategy,
|
|
57
57
|
SpotInstanceInterruptionBehavior,
|
|
58
58
|
TargetCapacityUnitType,
|
|
59
|
+
TrafficIpAddressType,
|
|
59
60
|
TrafficType,
|
|
60
61
|
TransportProtocol,
|
|
61
62
|
} from "./models_1";
|
|
@@ -67,11 +68,23 @@ import {
|
|
|
67
68
|
} from "./models_2";
|
|
68
69
|
import {
|
|
69
70
|
Byoasn,
|
|
71
|
+
CapacityReservationFleet,
|
|
70
72
|
Filter,
|
|
71
73
|
FleetStateCode,
|
|
72
74
|
IdFormat,
|
|
73
75
|
InstanceTagNotificationAttribute,
|
|
74
76
|
} from "./models_3";
|
|
77
|
+
export interface DescribeCapacityReservationFleetsResult {
|
|
78
|
+
CapacityReservationFleets?: CapacityReservationFleet[] | undefined;
|
|
79
|
+
NextToken?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface DescribeCapacityReservationsRequest {
|
|
82
|
+
CapacityReservationIds?: string[] | undefined;
|
|
83
|
+
NextToken?: string | undefined;
|
|
84
|
+
MaxResults?: number | undefined;
|
|
85
|
+
Filters?: Filter[] | undefined;
|
|
86
|
+
DryRun?: boolean | undefined;
|
|
87
|
+
}
|
|
75
88
|
export interface DescribeCapacityReservationsResult {
|
|
76
89
|
NextToken?: string | undefined;
|
|
77
90
|
CapacityReservations?: CapacityReservation[] | undefined;
|
|
@@ -153,6 +166,7 @@ export interface ClientVpnConnection {
|
|
|
153
166
|
IngressPackets?: string | undefined;
|
|
154
167
|
EgressPackets?: string | undefined;
|
|
155
168
|
ClientIp?: string | undefined;
|
|
169
|
+
ClientIpv6Address?: string | undefined;
|
|
156
170
|
CommonName?: string | undefined;
|
|
157
171
|
Status?: ClientVpnConnectionStatus | undefined;
|
|
158
172
|
ConnectionEndTime?: string | undefined;
|
|
@@ -253,6 +267,8 @@ export interface ClientVpnEndpoint {
|
|
|
253
267
|
| ClientRouteEnforcementResponseOptions
|
|
254
268
|
| undefined;
|
|
255
269
|
DisconnectOnSessionTimeout?: boolean | undefined;
|
|
270
|
+
EndpointIpAddressType?: EndpointIpAddressType | undefined;
|
|
271
|
+
TrafficIpAddressType?: TrafficIpAddressType | undefined;
|
|
256
272
|
}
|
|
257
273
|
export interface DescribeClientVpnEndpointsResult {
|
|
258
274
|
ClientVpnEndpoints?: ClientVpnEndpoint[] | undefined;
|
|
@@ -2099,17 +2115,6 @@ export interface DescribeIpamPoolsRequest {
|
|
|
2099
2115
|
NextToken?: string | undefined;
|
|
2100
2116
|
IpamPoolIds?: string[] | undefined;
|
|
2101
2117
|
}
|
|
2102
|
-
export interface DescribeIpamPoolsResult {
|
|
2103
|
-
NextToken?: string | undefined;
|
|
2104
|
-
IpamPools?: IpamPool[] | undefined;
|
|
2105
|
-
}
|
|
2106
|
-
export interface DescribeIpamResourceDiscoveriesRequest {
|
|
2107
|
-
DryRun?: boolean | undefined;
|
|
2108
|
-
IpamResourceDiscoveryIds?: string[] | undefined;
|
|
2109
|
-
NextToken?: string | undefined;
|
|
2110
|
-
MaxResults?: number | undefined;
|
|
2111
|
-
Filters?: Filter[] | undefined;
|
|
2112
|
-
}
|
|
2113
2118
|
export declare const DiskImageDescriptionFilterSensitiveLog: (
|
|
2114
2119
|
obj: DiskImageDescription
|
|
2115
2120
|
) => any;
|
|
@@ -36,8 +36,8 @@ import {
|
|
|
36
36
|
FleetType,
|
|
37
37
|
InstanceInterruptionBehavior,
|
|
38
38
|
InstanceRequirements,
|
|
39
|
-
IpAddressType,
|
|
40
39
|
Ipam,
|
|
40
|
+
IpamPool,
|
|
41
41
|
IpamResourceDiscovery,
|
|
42
42
|
IpamScope,
|
|
43
43
|
Ipv4PrefixSpecificationRequest,
|
|
@@ -97,13 +97,24 @@ import {
|
|
|
97
97
|
Volume,
|
|
98
98
|
VpcBlockPublicAccessExclusion,
|
|
99
99
|
} from "./models_2";
|
|
100
|
-
import { ConnectionNotification, Filter, IdFormat
|
|
100
|
+
import { ConnectionNotification, Filter, IdFormat } from "./models_3";
|
|
101
101
|
import {
|
|
102
102
|
AttributeBooleanValue,
|
|
103
103
|
EventInformation,
|
|
104
104
|
PermissionGroup,
|
|
105
105
|
ProductCode,
|
|
106
106
|
} from "./models_4";
|
|
107
|
+
export interface DescribeIpamPoolsResult {
|
|
108
|
+
NextToken?: string | undefined;
|
|
109
|
+
IpamPools?: IpamPool[] | undefined;
|
|
110
|
+
}
|
|
111
|
+
export interface DescribeIpamResourceDiscoveriesRequest {
|
|
112
|
+
DryRun?: boolean | undefined;
|
|
113
|
+
IpamResourceDiscoveryIds?: string[] | undefined;
|
|
114
|
+
NextToken?: string | undefined;
|
|
115
|
+
MaxResults?: number | undefined;
|
|
116
|
+
Filters?: Filter[] | undefined;
|
|
117
|
+
}
|
|
107
118
|
export interface DescribeIpamResourceDiscoveriesResult {
|
|
108
119
|
IpamResourceDiscoveries?: IpamResourceDiscovery[] | undefined;
|
|
109
120
|
NextToken?: string | undefined;
|
|
@@ -2034,26 +2045,6 @@ export interface DescribeVpcEndpointConnectionNotificationsResult {
|
|
|
2034
2045
|
ConnectionNotificationSet?: ConnectionNotification[] | undefined;
|
|
2035
2046
|
NextToken?: string | undefined;
|
|
2036
2047
|
}
|
|
2037
|
-
export interface DescribeVpcEndpointConnectionsRequest {
|
|
2038
|
-
DryRun?: boolean | undefined;
|
|
2039
|
-
Filters?: Filter[] | undefined;
|
|
2040
|
-
MaxResults?: number | undefined;
|
|
2041
|
-
NextToken?: string | undefined;
|
|
2042
|
-
}
|
|
2043
|
-
export interface VpcEndpointConnection {
|
|
2044
|
-
ServiceId?: string | undefined;
|
|
2045
|
-
VpcEndpointId?: string | undefined;
|
|
2046
|
-
VpcEndpointOwner?: string | undefined;
|
|
2047
|
-
VpcEndpointState?: State | undefined;
|
|
2048
|
-
CreationTimestamp?: Date | undefined;
|
|
2049
|
-
DnsEntries?: DnsEntry[] | undefined;
|
|
2050
|
-
NetworkLoadBalancerArns?: string[] | undefined;
|
|
2051
|
-
GatewayLoadBalancerArns?: string[] | undefined;
|
|
2052
|
-
IpAddressType?: IpAddressType | undefined;
|
|
2053
|
-
VpcEndpointConnectionId?: string | undefined;
|
|
2054
|
-
Tags?: Tag[] | undefined;
|
|
2055
|
-
VpcEndpointRegion?: string | undefined;
|
|
2056
|
-
}
|
|
2057
2048
|
export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
|
|
2058
2049
|
obj: DescribeLaunchTemplateVersionsResult
|
|
2059
2050
|
) => any;
|
|
@@ -35,11 +35,13 @@ import {
|
|
|
35
35
|
CapacityReservationState,
|
|
36
36
|
DiskImageFormat,
|
|
37
37
|
InstanceRequirementsRequest,
|
|
38
|
+
IpAddressType,
|
|
38
39
|
IpamResourceTag,
|
|
39
40
|
RequestIpamResourceTag,
|
|
40
41
|
Vpc,
|
|
41
42
|
} from "./models_1";
|
|
42
43
|
import {
|
|
44
|
+
DnsEntry,
|
|
43
45
|
NetworkInsightsAccessScopeContent,
|
|
44
46
|
ResponseLaunchTemplateData,
|
|
45
47
|
SSEType,
|
|
@@ -54,6 +56,7 @@ import {
|
|
|
54
56
|
ServiceConfiguration,
|
|
55
57
|
ServiceConnectivityType,
|
|
56
58
|
ServiceTypeDetail,
|
|
59
|
+
State,
|
|
57
60
|
StatisticType,
|
|
58
61
|
VpcEndpoint,
|
|
59
62
|
VpnConnection,
|
|
@@ -73,7 +76,27 @@ import {
|
|
|
73
76
|
PaymentOption,
|
|
74
77
|
VirtualizationType,
|
|
75
78
|
} from "./models_4";
|
|
76
|
-
import { AnalysisStatus, ManagedBy
|
|
79
|
+
import { AnalysisStatus, ManagedBy } from "./models_5";
|
|
80
|
+
export interface DescribeVpcEndpointConnectionsRequest {
|
|
81
|
+
DryRun?: boolean | undefined;
|
|
82
|
+
Filters?: Filter[] | undefined;
|
|
83
|
+
MaxResults?: number | undefined;
|
|
84
|
+
NextToken?: string | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface VpcEndpointConnection {
|
|
87
|
+
ServiceId?: string | undefined;
|
|
88
|
+
VpcEndpointId?: string | undefined;
|
|
89
|
+
VpcEndpointOwner?: string | undefined;
|
|
90
|
+
VpcEndpointState?: State | undefined;
|
|
91
|
+
CreationTimestamp?: Date | undefined;
|
|
92
|
+
DnsEntries?: DnsEntry[] | undefined;
|
|
93
|
+
NetworkLoadBalancerArns?: string[] | undefined;
|
|
94
|
+
GatewayLoadBalancerArns?: string[] | undefined;
|
|
95
|
+
IpAddressType?: IpAddressType | undefined;
|
|
96
|
+
VpcEndpointConnectionId?: string | undefined;
|
|
97
|
+
Tags?: Tag[] | undefined;
|
|
98
|
+
VpcEndpointRegion?: string | undefined;
|
|
99
|
+
}
|
|
77
100
|
export interface DescribeVpcEndpointConnectionsResult {
|
|
78
101
|
VpcEndpointConnections?: VpcEndpointConnection[] | undefined;
|
|
79
102
|
NextToken?: string | undefined;
|
|
@@ -1632,13 +1655,6 @@ export interface GetSecurityGroupsForVpcResult {
|
|
|
1632
1655
|
NextToken?: string | undefined;
|
|
1633
1656
|
SecurityGroupForVpcs?: SecurityGroupForVpc[] | undefined;
|
|
1634
1657
|
}
|
|
1635
|
-
export interface GetSerialConsoleAccessStatusRequest {
|
|
1636
|
-
DryRun?: boolean | undefined;
|
|
1637
|
-
}
|
|
1638
|
-
export interface GetSerialConsoleAccessStatusResult {
|
|
1639
|
-
SerialConsoleAccessEnabled?: boolean | undefined;
|
|
1640
|
-
ManagedBy?: ManagedBy | undefined;
|
|
1641
|
-
}
|
|
1642
1658
|
export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
|
|
1643
1659
|
obj: DescribeVpnConnectionsResult
|
|
1644
1660
|
) => any;
|
|
@@ -163,6 +163,13 @@ import {
|
|
|
163
163
|
TransitGatewayPropagationState,
|
|
164
164
|
UnlimitedSupportedInstanceFamily,
|
|
165
165
|
} from "./models_6";
|
|
166
|
+
export interface GetSerialConsoleAccessStatusRequest {
|
|
167
|
+
DryRun?: boolean | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface GetSerialConsoleAccessStatusResult {
|
|
170
|
+
SerialConsoleAccessEnabled?: boolean | undefined;
|
|
171
|
+
ManagedBy?: ManagedBy | undefined;
|
|
172
|
+
}
|
|
166
173
|
export interface GetSnapshotBlockPublicAccessStateRequest {
|
|
167
174
|
DryRun?: boolean | undefined;
|
|
168
175
|
}
|
|
@@ -1915,17 +1922,6 @@ export interface RegisterInstanceEventNotificationAttributesRequest {
|
|
|
1915
1922
|
export interface RegisterInstanceEventNotificationAttributesResult {
|
|
1916
1923
|
InstanceTagAttribute?: InstanceTagNotificationAttribute | undefined;
|
|
1917
1924
|
}
|
|
1918
|
-
export interface RegisterTransitGatewayMulticastGroupMembersRequest {
|
|
1919
|
-
TransitGatewayMulticastDomainId: string | undefined;
|
|
1920
|
-
GroupIpAddress?: string | undefined;
|
|
1921
|
-
NetworkInterfaceIds: string[] | undefined;
|
|
1922
|
-
DryRun?: boolean | undefined;
|
|
1923
|
-
}
|
|
1924
|
-
export interface TransitGatewayMulticastRegisteredGroupMembers {
|
|
1925
|
-
TransitGatewayMulticastDomainId?: string | undefined;
|
|
1926
|
-
RegisteredNetworkInterfaceIds?: string[] | undefined;
|
|
1927
|
-
GroupIpAddress?: string | undefined;
|
|
1928
|
-
}
|
|
1929
1925
|
export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
|
|
1930
1926
|
obj: GetVpnConnectionDeviceSampleConfigurationResult
|
|
1931
1927
|
) => any;
|
|
@@ -66,8 +66,18 @@ import {
|
|
|
66
66
|
CapacityReservationSpecification,
|
|
67
67
|
InstanceMonitoring,
|
|
68
68
|
Status,
|
|
69
|
-
TransitGatewayMulticastRegisteredGroupMembers,
|
|
70
69
|
} from "./models_7";
|
|
70
|
+
export interface RegisterTransitGatewayMulticastGroupMembersRequest {
|
|
71
|
+
TransitGatewayMulticastDomainId: string | undefined;
|
|
72
|
+
GroupIpAddress?: string | undefined;
|
|
73
|
+
NetworkInterfaceIds: string[] | undefined;
|
|
74
|
+
DryRun?: boolean | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface TransitGatewayMulticastRegisteredGroupMembers {
|
|
77
|
+
TransitGatewayMulticastDomainId?: string | undefined;
|
|
78
|
+
RegisteredNetworkInterfaceIds?: string[] | undefined;
|
|
79
|
+
GroupIpAddress?: string | undefined;
|
|
80
|
+
}
|
|
71
81
|
export interface RegisterTransitGatewayMulticastGroupMembersResult {
|
|
72
82
|
RegisteredMulticastGroupMembers?:
|
|
73
83
|
| TransitGatewayMulticastRegisteredGroupMembers
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.875.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/core": "3.873.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.873.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.873.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.873.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.873.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-ec2": "3.873.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.873.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.873.0",
|
|
31
31
|
"@aws-sdk/types": "3.862.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.873.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.873.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.873.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.1.5",
|
|
36
36
|
"@smithy/core": "^3.8.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.1.1",
|