@aws-sdk/client-ec2 3.866.0 → 3.868.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 +138 -35
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -11
- package/dist-es/models/models_3.js +11 -0
- package/dist-es/protocols/Aws_ec2.js +104 -22
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +11 -1
- package/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +11 -1
- package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +11 -1
- package/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +1 -2
- package/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +1 -1
- package/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +81 -0
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +2 -1
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +41 -43
- package/dist-types/models/models_2.d.ts +44 -152
- package/dist-types/models/models_3.d.ts +153 -78
- package/dist-types/models/models_4.d.ts +77 -48
- package/dist-types/models/models_5.d.ts +50 -99
- package/dist-types/models/models_6.d.ts +94 -61
- package/dist-types/models/models_7.d.ts +132 -70
- package/dist-types/models/models_8.d.ts +69 -1
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +12 -8
- package/dist-types/ts3.4/models/models_2.d.ts +8 -41
- package/dist-types/ts3.4/models/models_3.d.ts +46 -13
- package/dist-types/ts3.4/models/models_4.d.ts +12 -12
- package/dist-types/ts3.4/models/models_5.d.ts +13 -13
- package/dist-types/ts3.4/models/models_6.d.ts +13 -9
- package/dist-types/ts3.4/models/models_7.d.ts +19 -21
- package/dist-types/ts3.4/models/models_8.d.ts +22 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EC2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EC2Client";
|
|
8
|
+
import {
|
|
9
|
+
ModifyInstanceConnectEndpointRequest,
|
|
10
|
+
ModifyInstanceConnectEndpointResult,
|
|
11
|
+
} from "../models/models_7";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ModifyInstanceConnectEndpointCommandInput
|
|
15
|
+
extends ModifyInstanceConnectEndpointRequest {}
|
|
16
|
+
export interface ModifyInstanceConnectEndpointCommandOutput
|
|
17
|
+
extends ModifyInstanceConnectEndpointResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ModifyInstanceConnectEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyInstanceConnectEndpointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ModifyInstanceConnectEndpointCommandInput,
|
|
24
|
+
ModifyInstanceConnectEndpointCommandOutput,
|
|
25
|
+
EC2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ModifyInstanceConnectEndpointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ModifyInstanceConnectEndpointCommandInput,
|
|
33
|
+
ModifyInstanceConnectEndpointCommandOutput,
|
|
34
|
+
EC2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ModifyInstanceConnectEndpointCommand extends ModifyInstanceConnectEndpointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ModifyInstanceConnectEndpointRequest;
|
|
44
|
+
output: ModifyInstanceConnectEndpointResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ModifyInstanceConnectEndpointCommandInput;
|
|
48
|
+
output: ModifyInstanceConnectEndpointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
RegisterTransitGatewayMulticastGroupMembersResult,
|
|
11
|
-
} from "../models/models_7";
|
|
8
|
+
import { RegisterTransitGatewayMulticastGroupMembersRequest } from "../models/models_7";
|
|
9
|
+
import { RegisterTransitGatewayMulticastGroupMembersResult } from "../models/models_8";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface RegisterTransitGatewayMulticastGroupMembersCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RegisterTransitGatewayMulticastGroupSourcesRequest,
|
|
10
10
|
RegisterTransitGatewayMulticastGroupSourcesResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_8";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RegisterTransitGatewayMulticastGroupSourcesCommandInput
|
|
@@ -555,6 +555,7 @@ export * from "./ModifyIdentityIdFormatCommand";
|
|
|
555
555
|
export * from "./ModifyImageAttributeCommand";
|
|
556
556
|
export * from "./ModifyInstanceAttributeCommand";
|
|
557
557
|
export * from "./ModifyInstanceCapacityReservationAttributesCommand";
|
|
558
|
+
export * from "./ModifyInstanceConnectEndpointCommand";
|
|
558
559
|
export * from "./ModifyInstanceCpuOptionsCommand";
|
|
559
560
|
export * from "./ModifyInstanceCreditSpecificationCommand";
|
|
560
561
|
export * from "./ModifyInstanceEventStartTimeCommand";
|
|
@@ -2190,6 +2190,14 @@ export interface CreateInstanceConnectEndpointRequest {
|
|
|
2190
2190
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
2191
2191
|
IpAddressType?: IpAddressType | undefined;
|
|
2192
2192
|
}
|
|
2193
|
+
export interface InstanceConnectEndpointDnsNames {
|
|
2194
|
+
DnsName?: string | undefined;
|
|
2195
|
+
FipsDnsName?: string | undefined;
|
|
2196
|
+
}
|
|
2197
|
+
export interface InstanceConnectEndpointPublicDnsNames {
|
|
2198
|
+
Ipv4?: InstanceConnectEndpointDnsNames | undefined;
|
|
2199
|
+
Dualstack?: InstanceConnectEndpointDnsNames | undefined;
|
|
2200
|
+
}
|
|
2193
2201
|
export declare const Ec2InstanceConnectEndpointState: {
|
|
2194
2202
|
readonly create_complete: "create-complete";
|
|
2195
2203
|
readonly create_failed: "create-failed";
|
|
@@ -2197,6 +2205,9 @@ export declare const Ec2InstanceConnectEndpointState: {
|
|
|
2197
2205
|
readonly delete_complete: "delete-complete";
|
|
2198
2206
|
readonly delete_failed: "delete-failed";
|
|
2199
2207
|
readonly delete_in_progress: "delete-in-progress";
|
|
2208
|
+
readonly update_complete: "update-complete";
|
|
2209
|
+
readonly update_failed: "update-failed";
|
|
2210
|
+
readonly update_in_progress: "update-in-progress";
|
|
2200
2211
|
};
|
|
2201
2212
|
export type Ec2InstanceConnectEndpointState =
|
|
2202
2213
|
(typeof Ec2InstanceConnectEndpointState)[keyof typeof Ec2InstanceConnectEndpointState];
|
|
@@ -2217,6 +2228,7 @@ export interface Ec2InstanceConnectEndpoint {
|
|
|
2217
2228
|
SecurityGroupIds?: string[] | undefined;
|
|
2218
2229
|
Tags?: Tag[] | undefined;
|
|
2219
2230
|
IpAddressType?: IpAddressType | undefined;
|
|
2231
|
+
PublicDnsNames?: InstanceConnectEndpointPublicDnsNames | undefined;
|
|
2220
2232
|
}
|
|
2221
2233
|
export interface CreateInstanceConnectEndpointResult {
|
|
2222
2234
|
InstanceConnectEndpoint?: Ec2InstanceConnectEndpoint | undefined;
|
|
@@ -3030,14 +3042,6 @@ export interface LaunchTemplateInstanceMetadataOptions {
|
|
|
3030
3042
|
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | undefined;
|
|
3031
3043
|
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | undefined;
|
|
3032
3044
|
}
|
|
3033
|
-
export interface LaunchTemplatesMonitoring {
|
|
3034
|
-
Enabled?: boolean | undefined;
|
|
3035
|
-
}
|
|
3036
|
-
export interface ConnectionTrackingSpecification {
|
|
3037
|
-
TcpEstablishedTimeout?: number | undefined;
|
|
3038
|
-
UdpTimeout?: number | undefined;
|
|
3039
|
-
UdpStreamTimeout?: number | undefined;
|
|
3040
|
-
}
|
|
3041
3045
|
export declare const CopySnapshotRequestFilterSensitiveLog: (
|
|
3042
3046
|
obj: CopySnapshotRequest
|
|
3043
3047
|
) => any;
|
|
@@ -32,7 +32,6 @@ import {
|
|
|
32
32
|
} from "./models_0";
|
|
33
33
|
import {
|
|
34
34
|
_InstanceType,
|
|
35
|
-
ConnectionTrackingSpecification,
|
|
36
35
|
ConnectionTrackingSpecificationRequest,
|
|
37
36
|
CreditSpecification,
|
|
38
37
|
ElasticGpuSpecificationResponse,
|
|
@@ -53,7 +52,6 @@ import {
|
|
|
53
52
|
LaunchTemplateInstanceMarketOptions,
|
|
54
53
|
LaunchTemplateInstanceMetadataOptions,
|
|
55
54
|
LaunchTemplateLicenseConfiguration,
|
|
56
|
-
LaunchTemplatesMonitoring,
|
|
57
55
|
MacModificationTask,
|
|
58
56
|
MacSystemIntegrityProtectionSettingStatus,
|
|
59
57
|
OperatorRequest,
|
|
@@ -67,6 +65,14 @@ import {
|
|
|
67
65
|
VolumeType,
|
|
68
66
|
Vpc,
|
|
69
67
|
} from "./models_1";
|
|
68
|
+
export interface LaunchTemplatesMonitoring {
|
|
69
|
+
Enabled?: boolean | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface ConnectionTrackingSpecification {
|
|
72
|
+
TcpEstablishedTimeout?: number | undefined;
|
|
73
|
+
UdpTimeout?: number | undefined;
|
|
74
|
+
UdpStreamTimeout?: number | undefined;
|
|
75
|
+
}
|
|
70
76
|
export interface LaunchTemplateEnaSrdUdpSpecification {
|
|
71
77
|
EnaSrdUdpEnabled?: boolean | undefined;
|
|
72
78
|
}
|
|
@@ -2296,45 +2302,6 @@ export interface LastError {
|
|
|
2296
2302
|
Message?: string | undefined;
|
|
2297
2303
|
Code?: string | undefined;
|
|
2298
2304
|
}
|
|
2299
|
-
export declare const State: {
|
|
2300
|
-
readonly Available: "Available";
|
|
2301
|
-
readonly Deleted: "Deleted";
|
|
2302
|
-
readonly Deleting: "Deleting";
|
|
2303
|
-
readonly Expired: "Expired";
|
|
2304
|
-
readonly Failed: "Failed";
|
|
2305
|
-
readonly Partial: "Partial";
|
|
2306
|
-
readonly Pending: "Pending";
|
|
2307
|
-
readonly PendingAcceptance: "PendingAcceptance";
|
|
2308
|
-
readonly Rejected: "Rejected";
|
|
2309
|
-
};
|
|
2310
|
-
export type State = (typeof State)[keyof typeof State];
|
|
2311
|
-
export interface VpcEndpoint {
|
|
2312
|
-
VpcEndpointId?: string | undefined;
|
|
2313
|
-
VpcEndpointType?: VpcEndpointType | undefined;
|
|
2314
|
-
VpcId?: string | undefined;
|
|
2315
|
-
ServiceName?: string | undefined;
|
|
2316
|
-
State?: State | undefined;
|
|
2317
|
-
PolicyDocument?: string | undefined;
|
|
2318
|
-
RouteTableIds?: string[] | undefined;
|
|
2319
|
-
SubnetIds?: string[] | undefined;
|
|
2320
|
-
Groups?: SecurityGroupIdentifier[] | undefined;
|
|
2321
|
-
IpAddressType?: IpAddressType | undefined;
|
|
2322
|
-
DnsOptions?: DnsOptions | undefined;
|
|
2323
|
-
PrivateDnsEnabled?: boolean | undefined;
|
|
2324
|
-
RequesterManaged?: boolean | undefined;
|
|
2325
|
-
NetworkInterfaceIds?: string[] | undefined;
|
|
2326
|
-
DnsEntries?: DnsEntry[] | undefined;
|
|
2327
|
-
CreationTimestamp?: Date | undefined;
|
|
2328
|
-
Tags?: Tag[] | undefined;
|
|
2329
|
-
OwnerId?: string | undefined;
|
|
2330
|
-
LastError?: LastError | undefined;
|
|
2331
|
-
Ipv4Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
2332
|
-
Ipv6Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
2333
|
-
FailureReason?: string | undefined;
|
|
2334
|
-
ServiceNetworkArn?: string | undefined;
|
|
2335
|
-
ResourceConfigurationArn?: string | undefined;
|
|
2336
|
-
ServiceRegion?: string | undefined;
|
|
2337
|
-
}
|
|
2338
2305
|
export declare const ResponseLaunchTemplateDataFilterSensitiveLog: (
|
|
2339
2306
|
obj: ResponseLaunchTemplateData
|
|
2340
2307
|
) => any;
|
|
@@ -20,7 +20,6 @@ import {
|
|
|
20
20
|
VpcPeeringConnection,
|
|
21
21
|
} from "./models_0";
|
|
22
22
|
import {
|
|
23
|
-
CapacityReservation,
|
|
24
23
|
CapacityReservationTenancy,
|
|
25
24
|
CarrierGateway,
|
|
26
25
|
ClientVpnEndpointStatus,
|
|
@@ -32,6 +31,7 @@ import {
|
|
|
32
31
|
FleetCapacityReservationTenancy,
|
|
33
32
|
FleetInstanceMatchCriteria,
|
|
34
33
|
GatewayType,
|
|
34
|
+
IpAddressType,
|
|
35
35
|
Ipam,
|
|
36
36
|
IpamExternalResourceVerificationToken,
|
|
37
37
|
IpamPool,
|
|
@@ -40,6 +40,9 @@ import {
|
|
|
40
40
|
LaunchTemplate,
|
|
41
41
|
} from "./models_1";
|
|
42
42
|
import {
|
|
43
|
+
DnsEntry,
|
|
44
|
+
DnsOptions,
|
|
45
|
+
LastError,
|
|
43
46
|
LocalGatewayRoute,
|
|
44
47
|
LocalGatewayRouteTable,
|
|
45
48
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation,
|
|
@@ -50,7 +53,9 @@ import {
|
|
|
50
53
|
RouteServer,
|
|
51
54
|
RouteServerEndpoint,
|
|
52
55
|
RouteServerPeer,
|
|
56
|
+
SecurityGroupIdentifier,
|
|
53
57
|
SubnetCidrReservation,
|
|
58
|
+
SubnetIpPrefixes,
|
|
54
59
|
TransitGateway,
|
|
55
60
|
TransitGatewayConnect,
|
|
56
61
|
TransitGatewayConnectPeer,
|
|
@@ -63,8 +68,47 @@ import {
|
|
|
63
68
|
VerifiedAccessEndpoint,
|
|
64
69
|
VerifiedAccessGroup,
|
|
65
70
|
VpcBlockPublicAccessExclusion,
|
|
66
|
-
|
|
71
|
+
VpcEndpointType,
|
|
67
72
|
} from "./models_2";
|
|
73
|
+
export declare const State: {
|
|
74
|
+
readonly Available: "Available";
|
|
75
|
+
readonly Deleted: "Deleted";
|
|
76
|
+
readonly Deleting: "Deleting";
|
|
77
|
+
readonly Expired: "Expired";
|
|
78
|
+
readonly Failed: "Failed";
|
|
79
|
+
readonly Partial: "Partial";
|
|
80
|
+
readonly Pending: "Pending";
|
|
81
|
+
readonly PendingAcceptance: "PendingAcceptance";
|
|
82
|
+
readonly Rejected: "Rejected";
|
|
83
|
+
};
|
|
84
|
+
export type State = (typeof State)[keyof typeof State];
|
|
85
|
+
export interface VpcEndpoint {
|
|
86
|
+
VpcEndpointId?: string | undefined;
|
|
87
|
+
VpcEndpointType?: VpcEndpointType | undefined;
|
|
88
|
+
VpcId?: string | undefined;
|
|
89
|
+
ServiceName?: string | undefined;
|
|
90
|
+
State?: State | undefined;
|
|
91
|
+
PolicyDocument?: string | undefined;
|
|
92
|
+
RouteTableIds?: string[] | undefined;
|
|
93
|
+
SubnetIds?: string[] | undefined;
|
|
94
|
+
Groups?: SecurityGroupIdentifier[] | undefined;
|
|
95
|
+
IpAddressType?: IpAddressType | undefined;
|
|
96
|
+
DnsOptions?: DnsOptions | undefined;
|
|
97
|
+
PrivateDnsEnabled?: boolean | undefined;
|
|
98
|
+
RequesterManaged?: boolean | undefined;
|
|
99
|
+
NetworkInterfaceIds?: string[] | undefined;
|
|
100
|
+
DnsEntries?: DnsEntry[] | undefined;
|
|
101
|
+
CreationTimestamp?: Date | undefined;
|
|
102
|
+
Tags?: Tag[] | undefined;
|
|
103
|
+
OwnerId?: string | undefined;
|
|
104
|
+
LastError?: LastError | undefined;
|
|
105
|
+
Ipv4Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
106
|
+
Ipv6Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
107
|
+
FailureReason?: string | undefined;
|
|
108
|
+
ServiceNetworkArn?: string | undefined;
|
|
109
|
+
ResourceConfigurationArn?: string | undefined;
|
|
110
|
+
ServiceRegion?: string | undefined;
|
|
111
|
+
}
|
|
68
112
|
export interface CreateVpcEndpointResult {
|
|
69
113
|
VpcEndpoint?: VpcEndpoint | undefined;
|
|
70
114
|
ClientToken?: string | undefined;
|
|
@@ -1598,17 +1642,6 @@ export interface DescribeCapacityReservationsRequest {
|
|
|
1598
1642
|
Filters?: Filter[] | undefined;
|
|
1599
1643
|
DryRun?: boolean | undefined;
|
|
1600
1644
|
}
|
|
1601
|
-
export interface DescribeCapacityReservationsResult {
|
|
1602
|
-
NextToken?: string | undefined;
|
|
1603
|
-
CapacityReservations?: CapacityReservation[] | undefined;
|
|
1604
|
-
}
|
|
1605
|
-
export interface DescribeCarrierGatewaysRequest {
|
|
1606
|
-
CarrierGatewayIds?: string[] | undefined;
|
|
1607
|
-
Filters?: Filter[] | undefined;
|
|
1608
|
-
MaxResults?: number | undefined;
|
|
1609
|
-
NextToken?: string | undefined;
|
|
1610
|
-
DryRun?: boolean | undefined;
|
|
1611
|
-
}
|
|
1612
1645
|
export declare const VpnTunnelOptionsSpecificationFilterSensitiveLog: (
|
|
1613
1646
|
obj: VpnTunnelOptionsSpecification
|
|
1614
1647
|
) => any;
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
AmdSevSnpSpecification,
|
|
20
20
|
AttributeValue,
|
|
21
21
|
BlockDeviceMapping,
|
|
22
|
+
CapacityReservation,
|
|
22
23
|
CapacityReservationPreference,
|
|
23
24
|
CapacityReservationTargetResponse,
|
|
24
25
|
CarrierGateway,
|
|
@@ -47,7 +48,6 @@ import {
|
|
|
47
48
|
InternetGateway,
|
|
48
49
|
IpamExternalResourceVerificationToken,
|
|
49
50
|
IpamPool,
|
|
50
|
-
IpamResourceDiscovery,
|
|
51
51
|
LaunchTemplateAndOverridesResponse,
|
|
52
52
|
LogDestinationType,
|
|
53
53
|
OperatorResponse,
|
|
@@ -72,6 +72,17 @@ import {
|
|
|
72
72
|
IdFormat,
|
|
73
73
|
InstanceTagNotificationAttribute,
|
|
74
74
|
} from "./models_3";
|
|
75
|
+
export interface DescribeCapacityReservationsResult {
|
|
76
|
+
NextToken?: string | undefined;
|
|
77
|
+
CapacityReservations?: CapacityReservation[] | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface DescribeCarrierGatewaysRequest {
|
|
80
|
+
CarrierGatewayIds?: string[] | undefined;
|
|
81
|
+
Filters?: Filter[] | undefined;
|
|
82
|
+
MaxResults?: number | undefined;
|
|
83
|
+
NextToken?: string | undefined;
|
|
84
|
+
DryRun?: boolean | undefined;
|
|
85
|
+
}
|
|
75
86
|
export interface DescribeCarrierGatewaysResult {
|
|
76
87
|
CarrierGateways?: CarrierGateway[] | undefined;
|
|
77
88
|
NextToken?: string | undefined;
|
|
@@ -2099,17 +2110,6 @@ export interface DescribeIpamResourceDiscoveriesRequest {
|
|
|
2099
2110
|
MaxResults?: number | undefined;
|
|
2100
2111
|
Filters?: Filter[] | undefined;
|
|
2101
2112
|
}
|
|
2102
|
-
export interface DescribeIpamResourceDiscoveriesResult {
|
|
2103
|
-
IpamResourceDiscoveries?: IpamResourceDiscovery[] | undefined;
|
|
2104
|
-
NextToken?: string | undefined;
|
|
2105
|
-
}
|
|
2106
|
-
export interface DescribeIpamResourceDiscoveryAssociationsRequest {
|
|
2107
|
-
DryRun?: boolean | undefined;
|
|
2108
|
-
IpamResourceDiscoveryAssociationIds?: string[] | undefined;
|
|
2109
|
-
NextToken?: string | undefined;
|
|
2110
|
-
MaxResults?: number | undefined;
|
|
2111
|
-
Filters?: Filter[] | undefined;
|
|
2112
|
-
}
|
|
2113
2113
|
export declare const DiskImageDescriptionFilterSensitiveLog: (
|
|
2114
2114
|
obj: DiskImageDescription
|
|
2115
2115
|
) => any;
|
|
@@ -38,6 +38,7 @@ import {
|
|
|
38
38
|
InstanceRequirements,
|
|
39
39
|
IpAddressType,
|
|
40
40
|
Ipam,
|
|
41
|
+
IpamResourceDiscovery,
|
|
41
42
|
IpamScope,
|
|
42
43
|
Ipv4PrefixSpecificationRequest,
|
|
43
44
|
Ipv6PrefixSpecificationRequest,
|
|
@@ -79,7 +80,6 @@ import {
|
|
|
79
80
|
SnapshotState,
|
|
80
81
|
SpotDatafeedSubscription,
|
|
81
82
|
SpotInstanceStateFault,
|
|
82
|
-
State,
|
|
83
83
|
StorageTier,
|
|
84
84
|
TrafficMirrorFilter,
|
|
85
85
|
TrafficMirrorFilterRule,
|
|
@@ -97,13 +97,24 @@ import {
|
|
|
97
97
|
Volume,
|
|
98
98
|
VpcBlockPublicAccessExclusion,
|
|
99
99
|
} from "./models_2";
|
|
100
|
-
import { ConnectionNotification, Filter, IdFormat } from "./models_3";
|
|
100
|
+
import { ConnectionNotification, Filter, IdFormat, State } 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 DescribeIpamResourceDiscoveriesResult {
|
|
108
|
+
IpamResourceDiscoveries?: IpamResourceDiscovery[] | undefined;
|
|
109
|
+
NextToken?: string | undefined;
|
|
110
|
+
}
|
|
111
|
+
export interface DescribeIpamResourceDiscoveryAssociationsRequest {
|
|
112
|
+
DryRun?: boolean | undefined;
|
|
113
|
+
IpamResourceDiscoveryAssociationIds?: string[] | undefined;
|
|
114
|
+
NextToken?: string | undefined;
|
|
115
|
+
MaxResults?: number | undefined;
|
|
116
|
+
Filters?: Filter[] | undefined;
|
|
117
|
+
}
|
|
107
118
|
export interface DescribeIpamResourceDiscoveryAssociationsResult {
|
|
108
119
|
IpamResourceDiscoveryAssociations?:
|
|
109
120
|
| IpamResourceDiscoveryAssociation[]
|
|
@@ -2042,17 +2053,6 @@ export interface VpcEndpointConnection {
|
|
|
2042
2053
|
Tags?: Tag[] | undefined;
|
|
2043
2054
|
VpcEndpointRegion?: string | undefined;
|
|
2044
2055
|
}
|
|
2045
|
-
export interface DescribeVpcEndpointConnectionsResult {
|
|
2046
|
-
VpcEndpointConnections?: VpcEndpointConnection[] | undefined;
|
|
2047
|
-
NextToken?: string | undefined;
|
|
2048
|
-
}
|
|
2049
|
-
export interface DescribeVpcEndpointsRequest {
|
|
2050
|
-
DryRun?: boolean | undefined;
|
|
2051
|
-
VpcEndpointIds?: string[] | undefined;
|
|
2052
|
-
Filters?: Filter[] | undefined;
|
|
2053
|
-
MaxResults?: number | undefined;
|
|
2054
|
-
NextToken?: string | undefined;
|
|
2055
|
-
}
|
|
2056
2056
|
export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
|
|
2057
2057
|
obj: DescribeLaunchTemplateVersionsResult
|
|
2058
2058
|
) => any;
|
|
@@ -43,7 +43,6 @@ import {
|
|
|
43
43
|
NetworkInsightsAccessScopeContent,
|
|
44
44
|
ResponseLaunchTemplateData,
|
|
45
45
|
SSEType,
|
|
46
|
-
VpcEndpoint,
|
|
47
46
|
} from "./models_2";
|
|
48
47
|
import {
|
|
49
48
|
DnsNameState,
|
|
@@ -56,6 +55,7 @@ import {
|
|
|
56
55
|
ServiceConnectivityType,
|
|
57
56
|
ServiceTypeDetail,
|
|
58
57
|
StatisticType,
|
|
58
|
+
VpcEndpoint,
|
|
59
59
|
VpnConnection,
|
|
60
60
|
VpnGateway,
|
|
61
61
|
} from "./models_3";
|
|
@@ -73,7 +73,18 @@ import {
|
|
|
73
73
|
PaymentOption,
|
|
74
74
|
VirtualizationType,
|
|
75
75
|
} from "./models_4";
|
|
76
|
-
import { AnalysisStatus, ManagedBy } from "./models_5";
|
|
76
|
+
import { AnalysisStatus, ManagedBy, VpcEndpointConnection } from "./models_5";
|
|
77
|
+
export interface DescribeVpcEndpointConnectionsResult {
|
|
78
|
+
VpcEndpointConnections?: VpcEndpointConnection[] | undefined;
|
|
79
|
+
NextToken?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface DescribeVpcEndpointsRequest {
|
|
82
|
+
DryRun?: boolean | undefined;
|
|
83
|
+
VpcEndpointIds?: string[] | undefined;
|
|
84
|
+
Filters?: Filter[] | undefined;
|
|
85
|
+
MaxResults?: number | undefined;
|
|
86
|
+
NextToken?: string | undefined;
|
|
87
|
+
}
|
|
77
88
|
export interface DescribeVpcEndpointsResult {
|
|
78
89
|
VpcEndpoints?: VpcEndpoint[] | undefined;
|
|
79
90
|
NextToken?: string | undefined;
|
|
@@ -1628,13 +1639,6 @@ export interface GetSerialConsoleAccessStatusResult {
|
|
|
1628
1639
|
SerialConsoleAccessEnabled?: boolean | undefined;
|
|
1629
1640
|
ManagedBy?: ManagedBy | undefined;
|
|
1630
1641
|
}
|
|
1631
|
-
export interface GetSnapshotBlockPublicAccessStateRequest {
|
|
1632
|
-
DryRun?: boolean | undefined;
|
|
1633
|
-
}
|
|
1634
|
-
export interface GetSnapshotBlockPublicAccessStateResult {
|
|
1635
|
-
State?: SnapshotBlockPublicAccessState | undefined;
|
|
1636
|
-
ManagedBy?: ManagedBy | undefined;
|
|
1637
|
-
}
|
|
1638
1642
|
export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
|
|
1639
1643
|
obj: DescribeVpnConnectionsResult
|
|
1640
1644
|
) => any;
|
|
@@ -146,6 +146,7 @@ import {
|
|
|
146
146
|
InternetGatewayBlockMode,
|
|
147
147
|
LaunchTemplateConfig,
|
|
148
148
|
LockState,
|
|
149
|
+
ManagedBy,
|
|
149
150
|
PublicIpv4PoolRange,
|
|
150
151
|
ReservedInstancesConfiguration,
|
|
151
152
|
ScheduledInstance,
|
|
@@ -158,9 +159,17 @@ import {
|
|
|
158
159
|
InstanceFamilyCreditSpecification,
|
|
159
160
|
IpamResourceCidr,
|
|
160
161
|
Purchase,
|
|
162
|
+
SnapshotBlockPublicAccessState,
|
|
161
163
|
TransitGatewayPropagationState,
|
|
162
164
|
UnlimitedSupportedInstanceFamily,
|
|
163
165
|
} from "./models_6";
|
|
166
|
+
export interface GetSnapshotBlockPublicAccessStateRequest {
|
|
167
|
+
DryRun?: boolean | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface GetSnapshotBlockPublicAccessStateResult {
|
|
170
|
+
State?: SnapshotBlockPublicAccessState | undefined;
|
|
171
|
+
ManagedBy?: ManagedBy | undefined;
|
|
172
|
+
}
|
|
164
173
|
export interface InstanceRequirementsWithMetadataRequest {
|
|
165
174
|
ArchitectureTypes?: ArchitectureType[] | undefined;
|
|
166
175
|
VirtualizationTypes?: VirtualizationType[] | undefined;
|
|
@@ -822,6 +831,16 @@ export interface ModifyInstanceCapacityReservationAttributesRequest {
|
|
|
822
831
|
export interface ModifyInstanceCapacityReservationAttributesResult {
|
|
823
832
|
Return?: boolean | undefined;
|
|
824
833
|
}
|
|
834
|
+
export interface ModifyInstanceConnectEndpointRequest {
|
|
835
|
+
DryRun?: boolean | undefined;
|
|
836
|
+
InstanceConnectEndpointId: string | undefined;
|
|
837
|
+
IpAddressType?: IpAddressType | undefined;
|
|
838
|
+
SecurityGroupIds?: string[] | undefined;
|
|
839
|
+
PreserveClientIp?: boolean | undefined;
|
|
840
|
+
}
|
|
841
|
+
export interface ModifyInstanceConnectEndpointResult {
|
|
842
|
+
Return?: boolean | undefined;
|
|
843
|
+
}
|
|
825
844
|
export interface ModifyInstanceCpuOptionsRequest {
|
|
826
845
|
InstanceId: string | undefined;
|
|
827
846
|
CoreCount: number | undefined;
|
|
@@ -1907,27 +1926,6 @@ export interface TransitGatewayMulticastRegisteredGroupMembers {
|
|
|
1907
1926
|
RegisteredNetworkInterfaceIds?: string[] | undefined;
|
|
1908
1927
|
GroupIpAddress?: string | undefined;
|
|
1909
1928
|
}
|
|
1910
|
-
export interface RegisterTransitGatewayMulticastGroupMembersResult {
|
|
1911
|
-
RegisteredMulticastGroupMembers?:
|
|
1912
|
-
| TransitGatewayMulticastRegisteredGroupMembers
|
|
1913
|
-
| undefined;
|
|
1914
|
-
}
|
|
1915
|
-
export interface RegisterTransitGatewayMulticastGroupSourcesRequest {
|
|
1916
|
-
TransitGatewayMulticastDomainId: string | undefined;
|
|
1917
|
-
GroupIpAddress?: string | undefined;
|
|
1918
|
-
NetworkInterfaceIds: string[] | undefined;
|
|
1919
|
-
DryRun?: boolean | undefined;
|
|
1920
|
-
}
|
|
1921
|
-
export interface TransitGatewayMulticastRegisteredGroupSources {
|
|
1922
|
-
TransitGatewayMulticastDomainId?: string | undefined;
|
|
1923
|
-
RegisteredNetworkInterfaceIds?: string[] | undefined;
|
|
1924
|
-
GroupIpAddress?: string | undefined;
|
|
1925
|
-
}
|
|
1926
|
-
export interface RegisterTransitGatewayMulticastGroupSourcesResult {
|
|
1927
|
-
RegisteredMulticastGroupSources?:
|
|
1928
|
-
| TransitGatewayMulticastRegisteredGroupSources
|
|
1929
|
-
| undefined;
|
|
1930
|
-
}
|
|
1931
1929
|
export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
|
|
1932
1930
|
obj: GetVpnConnectionDeviceSampleConfigurationResult
|
|
1933
1931
|
) => any;
|
|
@@ -66,7 +66,29 @@ import {
|
|
|
66
66
|
CapacityReservationSpecification,
|
|
67
67
|
InstanceMonitoring,
|
|
68
68
|
Status,
|
|
69
|
+
TransitGatewayMulticastRegisteredGroupMembers,
|
|
69
70
|
} from "./models_7";
|
|
71
|
+
export interface RegisterTransitGatewayMulticastGroupMembersResult {
|
|
72
|
+
RegisteredMulticastGroupMembers?:
|
|
73
|
+
| TransitGatewayMulticastRegisteredGroupMembers
|
|
74
|
+
| undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface RegisterTransitGatewayMulticastGroupSourcesRequest {
|
|
77
|
+
TransitGatewayMulticastDomainId: string | undefined;
|
|
78
|
+
GroupIpAddress?: string | undefined;
|
|
79
|
+
NetworkInterfaceIds: string[] | undefined;
|
|
80
|
+
DryRun?: boolean | undefined;
|
|
81
|
+
}
|
|
82
|
+
export interface TransitGatewayMulticastRegisteredGroupSources {
|
|
83
|
+
TransitGatewayMulticastDomainId?: string | undefined;
|
|
84
|
+
RegisteredNetworkInterfaceIds?: string[] | undefined;
|
|
85
|
+
GroupIpAddress?: string | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface RegisterTransitGatewayMulticastGroupSourcesResult {
|
|
88
|
+
RegisteredMulticastGroupSources?:
|
|
89
|
+
| TransitGatewayMulticastRegisteredGroupSources
|
|
90
|
+
| undefined;
|
|
91
|
+
}
|
|
70
92
|
export interface RejectCapacityReservationBillingOwnershipRequest {
|
|
71
93
|
DryRun?: boolean | undefined;
|
|
72
94
|
CapacityReservationId: string | undefined;
|
|
@@ -2231,6 +2231,10 @@ import {
|
|
|
2231
2231
|
ModifyInstanceCapacityReservationAttributesCommandInput,
|
|
2232
2232
|
ModifyInstanceCapacityReservationAttributesCommandOutput,
|
|
2233
2233
|
} from "../commands/ModifyInstanceCapacityReservationAttributesCommand";
|
|
2234
|
+
import {
|
|
2235
|
+
ModifyInstanceConnectEndpointCommandInput,
|
|
2236
|
+
ModifyInstanceConnectEndpointCommandOutput,
|
|
2237
|
+
} from "../commands/ModifyInstanceConnectEndpointCommand";
|
|
2234
2238
|
import {
|
|
2235
2239
|
ModifyInstanceCpuOptionsCommandInput,
|
|
2236
2240
|
ModifyInstanceCpuOptionsCommandOutput,
|
|
@@ -4983,6 +4987,10 @@ export declare const se_ModifyInstanceCapacityReservationAttributesCommand: (
|
|
|
4983
4987
|
input: ModifyInstanceCapacityReservationAttributesCommandInput,
|
|
4984
4988
|
context: __SerdeContext
|
|
4985
4989
|
) => Promise<__HttpRequest>;
|
|
4990
|
+
export declare const se_ModifyInstanceConnectEndpointCommand: (
|
|
4991
|
+
input: ModifyInstanceConnectEndpointCommandInput,
|
|
4992
|
+
context: __SerdeContext
|
|
4993
|
+
) => Promise<__HttpRequest>;
|
|
4986
4994
|
export declare const se_ModifyInstanceCpuOptionsCommand: (
|
|
4987
4995
|
input: ModifyInstanceCpuOptionsCommandInput,
|
|
4988
4996
|
context: __SerdeContext
|
|
@@ -7735,6 +7743,10 @@ export declare const de_ModifyInstanceCapacityReservationAttributesCommand: (
|
|
|
7735
7743
|
output: __HttpResponse,
|
|
7736
7744
|
context: __SerdeContext
|
|
7737
7745
|
) => Promise<ModifyInstanceCapacityReservationAttributesCommandOutput>;
|
|
7746
|
+
export declare const de_ModifyInstanceConnectEndpointCommand: (
|
|
7747
|
+
output: __HttpResponse,
|
|
7748
|
+
context: __SerdeContext
|
|
7749
|
+
) => Promise<ModifyInstanceConnectEndpointCommandOutput>;
|
|
7738
7750
|
export declare const de_ModifyInstanceCpuOptionsCommand: (
|
|
7739
7751
|
output: __HttpResponse,
|
|
7740
7752
|
context: __SerdeContext
|
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.868.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",
|