@aws-sdk/client-ec2 3.926.0 → 3.927.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 +116 -25
- package/dist-es/models/models_1.js +3 -5
- package/dist-es/models/models_2.js +5 -0
- package/dist-es/models/models_3.js +0 -11
- package/dist-es/models/models_4.js +11 -9
- package/dist-es/models/models_5.js +9 -0
- package/dist-es/protocols/Aws_ec2.js +87 -0
- package/dist-types/commands/CreateIpamScopeCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +2 -1
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -2
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +8 -0
- package/dist-types/commands/DeleteIpamScopeCommand.d.ts +4 -0
- package/dist-types/commands/DescribeIpamScopesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +1 -2
- package/dist-types/commands/ModifyIpamScopeCommand.d.ts +9 -0
- package/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/ModifyVpcEndpointCommand.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +58 -188
- package/dist-types/models/models_2.d.ts +189 -110
- package/dist-types/models/models_3.d.ts +176 -61
- package/dist-types/models/models_4.d.ts +61 -66
- package/dist-types/models/models_5.d.ts +67 -77
- package/dist-types/models/models_6.d.ts +77 -58
- package/dist-types/models/models_7.d.ts +69 -41
- package/dist-types/models/models_8.d.ts +41 -4
- package/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_1.d.ts +17 -38
- package/dist-types/ts3.4/models/models_2.d.ts +40 -27
- package/dist-types/ts3.4/models/models_3.d.ts +29 -21
- package/dist-types/ts3.4/models/models_4.d.ts +22 -23
- package/dist-types/ts3.4/models/models_5.d.ts +22 -23
- package/dist-types/ts3.4/models/models_6.d.ts +22 -16
- package/dist-types/ts3.4/models/models_7.d.ts +17 -13
- package/dist-types/ts3.4/models/models_8.d.ts +13 -8
- package/package.json +5 -5
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeTrunkInterfaceAssociationsResult,
|
|
11
|
-
} from "../models/models_5";
|
|
8
|
+
import { DescribeTrunkInterfaceAssociationsRequest } from "../models/models_5";
|
|
9
|
+
import { DescribeTrunkInterfaceAssociationsResult } from "../models/models_6";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeTrunkInterfaceAssociationsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DescribeVerifiedAccessEndpointsRequest,
|
|
10
10
|
DescribeVerifiedAccessEndpointsResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_6";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DescribeVerifiedAccessEndpointsCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
GetFlowLogsIntegrationTemplateResult,
|
|
11
|
-
} from "../models/models_6";
|
|
8
|
+
import { GetFlowLogsIntegrationTemplateRequest } from "../models/models_6";
|
|
9
|
+
import { GetFlowLogsIntegrationTemplateResult } from "../models/models_7";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface GetFlowLogsIntegrationTemplateCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetGroupsForCapacityReservationRequest,
|
|
10
|
+
GetGroupsForCapacityReservationResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface GetGroupsForCapacityReservationCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ModifyTransitGatewayVpcAttachmentResult,
|
|
11
|
-
} from "../models/models_7";
|
|
8
|
+
import { ModifyTransitGatewayVpcAttachmentRequest } from "../models/models_7";
|
|
9
|
+
import { ModifyTransitGatewayVpcAttachmentResult } from "../models/models_8";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ModifyTransitGatewayVpcAttachmentCommandInput
|
|
@@ -2951,12 +2951,26 @@ export interface IpamResourceDiscovery {
|
|
|
2951
2951
|
export interface CreateIpamResourceDiscoveryResult {
|
|
2952
2952
|
IpamResourceDiscovery?: IpamResourceDiscovery | undefined;
|
|
2953
2953
|
}
|
|
2954
|
+
export declare const IpamScopeExternalAuthorityType: {
|
|
2955
|
+
readonly infoblox: "infoblox";
|
|
2956
|
+
};
|
|
2957
|
+
export type IpamScopeExternalAuthorityType =
|
|
2958
|
+
(typeof IpamScopeExternalAuthorityType)[keyof typeof IpamScopeExternalAuthorityType];
|
|
2959
|
+
export interface ExternalAuthorityConfiguration {
|
|
2960
|
+
Type?: IpamScopeExternalAuthorityType | undefined;
|
|
2961
|
+
ExternalResourceIdentifier?: string | undefined;
|
|
2962
|
+
}
|
|
2954
2963
|
export interface CreateIpamScopeRequest {
|
|
2955
2964
|
DryRun?: boolean | undefined;
|
|
2956
2965
|
IpamId: string | undefined;
|
|
2957
2966
|
Description?: string | undefined;
|
|
2958
2967
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
2959
2968
|
ClientToken?: string | undefined;
|
|
2969
|
+
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
2970
|
+
}
|
|
2971
|
+
export interface IpamScopeExternalAuthorityConfiguration {
|
|
2972
|
+
Type?: IpamScopeExternalAuthorityType | undefined;
|
|
2973
|
+
ExternalResourceIdentifier?: string | undefined;
|
|
2960
2974
|
}
|
|
2961
2975
|
export declare const IpamScopeState: {
|
|
2962
2976
|
readonly create_complete: "create-complete";
|
|
@@ -2986,6 +3000,9 @@ export interface IpamScope {
|
|
|
2986
3000
|
PoolCount?: number | undefined;
|
|
2987
3001
|
State?: IpamScopeState | undefined;
|
|
2988
3002
|
Tags?: Tag[] | undefined;
|
|
3003
|
+
ExternalAuthorityConfiguration?:
|
|
3004
|
+
| IpamScopeExternalAuthorityConfiguration
|
|
3005
|
+
| undefined;
|
|
2989
3006
|
}
|
|
2990
3007
|
export interface CreateIpamScopeResult {
|
|
2991
3008
|
IpamScope?: IpamScope | undefined;
|
|
@@ -3179,44 +3196,6 @@ export interface InstanceIpv6AddressRequest {
|
|
|
3179
3196
|
export interface Ipv6PrefixSpecificationRequest {
|
|
3180
3197
|
Ipv6Prefix?: string | undefined;
|
|
3181
3198
|
}
|
|
3182
|
-
export interface PrivateIpAddressSpecification {
|
|
3183
|
-
Primary?: boolean | undefined;
|
|
3184
|
-
PrivateIpAddress?: string | undefined;
|
|
3185
|
-
}
|
|
3186
|
-
export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
|
|
3187
|
-
AssociateCarrierIpAddress?: boolean | undefined;
|
|
3188
|
-
AssociatePublicIpAddress?: boolean | undefined;
|
|
3189
|
-
DeleteOnTermination?: boolean | undefined;
|
|
3190
|
-
Description?: string | undefined;
|
|
3191
|
-
DeviceIndex?: number | undefined;
|
|
3192
|
-
Groups?: string[] | undefined;
|
|
3193
|
-
InterfaceType?: string | undefined;
|
|
3194
|
-
Ipv6AddressCount?: number | undefined;
|
|
3195
|
-
Ipv6Addresses?: InstanceIpv6AddressRequest[] | undefined;
|
|
3196
|
-
NetworkInterfaceId?: string | undefined;
|
|
3197
|
-
PrivateIpAddress?: string | undefined;
|
|
3198
|
-
PrivateIpAddresses?: PrivateIpAddressSpecification[] | undefined;
|
|
3199
|
-
SecondaryPrivateIpAddressCount?: number | undefined;
|
|
3200
|
-
SubnetId?: string | undefined;
|
|
3201
|
-
NetworkCardIndex?: number | undefined;
|
|
3202
|
-
Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | undefined;
|
|
3203
|
-
Ipv4PrefixCount?: number | undefined;
|
|
3204
|
-
Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | undefined;
|
|
3205
|
-
Ipv6PrefixCount?: number | undefined;
|
|
3206
|
-
PrimaryIpv6?: boolean | undefined;
|
|
3207
|
-
EnaSrdSpecification?: EnaSrdSpecificationRequest | undefined;
|
|
3208
|
-
ConnectionTrackingSpecification?:
|
|
3209
|
-
| ConnectionTrackingSpecificationRequest
|
|
3210
|
-
| undefined;
|
|
3211
|
-
EnaQueueCount?: number | undefined;
|
|
3212
|
-
}
|
|
3213
|
-
export declare const InstanceBandwidthWeighting: {
|
|
3214
|
-
readonly DEFAULT: "default";
|
|
3215
|
-
readonly EBS_1: "ebs-1";
|
|
3216
|
-
readonly VPC_1: "vpc-1";
|
|
3217
|
-
};
|
|
3218
|
-
export type InstanceBandwidthWeighting =
|
|
3219
|
-
(typeof InstanceBandwidthWeighting)[keyof typeof InstanceBandwidthWeighting];
|
|
3220
3199
|
export declare const CopySnapshotRequestFilterSensitiveLog: (
|
|
3221
3200
|
obj: CopySnapshotRequest
|
|
3222
3201
|
) => any;
|
|
@@ -31,9 +31,10 @@ import {
|
|
|
31
31
|
ConnectionTrackingSpecificationRequest,
|
|
32
32
|
CreditSpecificationRequest,
|
|
33
33
|
ElasticGpuSpecification,
|
|
34
|
+
EnaSrdSpecificationRequest,
|
|
34
35
|
HostnameType,
|
|
35
|
-
InstanceBandwidthWeighting,
|
|
36
36
|
InstanceInterruptionBehavior,
|
|
37
|
+
InstanceIpv6AddressRequest,
|
|
37
38
|
InstanceRequirements,
|
|
38
39
|
InstanceRequirementsRequest,
|
|
39
40
|
Ipv4PrefixSpecificationRequest,
|
|
@@ -53,14 +54,12 @@ import {
|
|
|
53
54
|
LaunchTemplateInstanceMetadataOptionsRequest,
|
|
54
55
|
LaunchTemplateInstanceMetadataProtocolIpv6,
|
|
55
56
|
LaunchTemplateInstanceMetadataTagsState,
|
|
56
|
-
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest,
|
|
57
57
|
LaunchTemplateLicenseConfigurationRequest,
|
|
58
58
|
LaunchTemplatesMonitoringRequest,
|
|
59
59
|
MacModificationTask,
|
|
60
60
|
MacSystemIntegrityProtectionSettingStatus,
|
|
61
61
|
MarketType,
|
|
62
62
|
OperatorResponse,
|
|
63
|
-
PrivateIpAddressSpecification,
|
|
64
63
|
ShutdownBehavior,
|
|
65
64
|
SnapshotLocationEnum,
|
|
66
65
|
SpotInstanceType,
|
|
@@ -69,6 +68,44 @@ import {
|
|
|
69
68
|
Tenancy,
|
|
70
69
|
VolumeType,
|
|
71
70
|
} from "./models_1";
|
|
71
|
+
export interface PrivateIpAddressSpecification {
|
|
72
|
+
Primary?: boolean | undefined;
|
|
73
|
+
PrivateIpAddress?: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
|
|
76
|
+
AssociateCarrierIpAddress?: boolean | undefined;
|
|
77
|
+
AssociatePublicIpAddress?: boolean | undefined;
|
|
78
|
+
DeleteOnTermination?: boolean | undefined;
|
|
79
|
+
Description?: string | undefined;
|
|
80
|
+
DeviceIndex?: number | undefined;
|
|
81
|
+
Groups?: string[] | undefined;
|
|
82
|
+
InterfaceType?: string | undefined;
|
|
83
|
+
Ipv6AddressCount?: number | undefined;
|
|
84
|
+
Ipv6Addresses?: InstanceIpv6AddressRequest[] | undefined;
|
|
85
|
+
NetworkInterfaceId?: string | undefined;
|
|
86
|
+
PrivateIpAddress?: string | undefined;
|
|
87
|
+
PrivateIpAddresses?: PrivateIpAddressSpecification[] | undefined;
|
|
88
|
+
SecondaryPrivateIpAddressCount?: number | undefined;
|
|
89
|
+
SubnetId?: string | undefined;
|
|
90
|
+
NetworkCardIndex?: number | undefined;
|
|
91
|
+
Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | undefined;
|
|
92
|
+
Ipv4PrefixCount?: number | undefined;
|
|
93
|
+
Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | undefined;
|
|
94
|
+
Ipv6PrefixCount?: number | undefined;
|
|
95
|
+
PrimaryIpv6?: boolean | undefined;
|
|
96
|
+
EnaSrdSpecification?: EnaSrdSpecificationRequest | undefined;
|
|
97
|
+
ConnectionTrackingSpecification?:
|
|
98
|
+
| ConnectionTrackingSpecificationRequest
|
|
99
|
+
| undefined;
|
|
100
|
+
EnaQueueCount?: number | undefined;
|
|
101
|
+
}
|
|
102
|
+
export declare const InstanceBandwidthWeighting: {
|
|
103
|
+
readonly DEFAULT: "default";
|
|
104
|
+
readonly EBS_1: "ebs-1";
|
|
105
|
+
readonly VPC_1: "vpc-1";
|
|
106
|
+
};
|
|
107
|
+
export type InstanceBandwidthWeighting =
|
|
108
|
+
(typeof InstanceBandwidthWeighting)[keyof typeof InstanceBandwidthWeighting];
|
|
72
109
|
export interface LaunchTemplateNetworkPerformanceOptionsRequest {
|
|
73
110
|
BandwidthWeighting?: InstanceBandwidthWeighting | undefined;
|
|
74
111
|
}
|
|
@@ -2254,30 +2291,6 @@ export interface VerifiedAccessEndpoint {
|
|
|
2254
2291
|
RdsOptions?: VerifiedAccessEndpointRdsOptions | undefined;
|
|
2255
2292
|
CidrOptions?: VerifiedAccessEndpointCidrOptions | undefined;
|
|
2256
2293
|
}
|
|
2257
|
-
export interface CreateVerifiedAccessEndpointResult {
|
|
2258
|
-
VerifiedAccessEndpoint?: VerifiedAccessEndpoint | undefined;
|
|
2259
|
-
}
|
|
2260
|
-
export interface CreateVerifiedAccessGroupRequest {
|
|
2261
|
-
VerifiedAccessInstanceId: string | undefined;
|
|
2262
|
-
Description?: string | undefined;
|
|
2263
|
-
PolicyDocument?: string | undefined;
|
|
2264
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
2265
|
-
ClientToken?: string | undefined;
|
|
2266
|
-
DryRun?: boolean | undefined;
|
|
2267
|
-
SseSpecification?: VerifiedAccessSseSpecificationRequest | undefined;
|
|
2268
|
-
}
|
|
2269
|
-
export interface VerifiedAccessGroup {
|
|
2270
|
-
VerifiedAccessGroupId?: string | undefined;
|
|
2271
|
-
VerifiedAccessInstanceId?: string | undefined;
|
|
2272
|
-
Description?: string | undefined;
|
|
2273
|
-
Owner?: string | undefined;
|
|
2274
|
-
VerifiedAccessGroupArn?: string | undefined;
|
|
2275
|
-
CreationTime?: string | undefined;
|
|
2276
|
-
LastUpdatedTime?: string | undefined;
|
|
2277
|
-
DeletionTime?: string | undefined;
|
|
2278
|
-
Tags?: Tag[] | undefined;
|
|
2279
|
-
SseSpecification?: VerifiedAccessSseSpecificationResponse | undefined;
|
|
2280
|
-
}
|
|
2281
2294
|
export declare const RequestLaunchTemplateDataFilterSensitiveLog: (
|
|
2282
2295
|
obj: RequestLaunchTemplateData
|
|
2283
2296
|
) => any;
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
UnsuccessfulItem,
|
|
17
17
|
UserTrustProviderType,
|
|
18
18
|
VerifiedAccessInstance,
|
|
19
|
+
VerifiedAccessSseSpecificationResponse,
|
|
19
20
|
VerifiedAccessTrustProvider,
|
|
20
21
|
VpcAttachment,
|
|
21
22
|
VpcPeeringConnection,
|
|
@@ -64,9 +65,32 @@ import {
|
|
|
64
65
|
TransitGatewayRouteTable,
|
|
65
66
|
TransitGatewayRouteTableAnnouncement,
|
|
66
67
|
VerifiedAccessEndpoint,
|
|
67
|
-
VerifiedAccessGroup,
|
|
68
68
|
VerifiedAccessSseSpecificationRequest,
|
|
69
69
|
} from "./models_2";
|
|
70
|
+
export interface CreateVerifiedAccessEndpointResult {
|
|
71
|
+
VerifiedAccessEndpoint?: VerifiedAccessEndpoint | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface CreateVerifiedAccessGroupRequest {
|
|
74
|
+
VerifiedAccessInstanceId: string | undefined;
|
|
75
|
+
Description?: string | undefined;
|
|
76
|
+
PolicyDocument?: string | undefined;
|
|
77
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
78
|
+
ClientToken?: string | undefined;
|
|
79
|
+
DryRun?: boolean | undefined;
|
|
80
|
+
SseSpecification?: VerifiedAccessSseSpecificationRequest | undefined;
|
|
81
|
+
}
|
|
82
|
+
export interface VerifiedAccessGroup {
|
|
83
|
+
VerifiedAccessGroupId?: string | undefined;
|
|
84
|
+
VerifiedAccessInstanceId?: string | undefined;
|
|
85
|
+
Description?: string | undefined;
|
|
86
|
+
Owner?: string | undefined;
|
|
87
|
+
VerifiedAccessGroupArn?: string | undefined;
|
|
88
|
+
CreationTime?: string | undefined;
|
|
89
|
+
LastUpdatedTime?: string | undefined;
|
|
90
|
+
DeletionTime?: string | undefined;
|
|
91
|
+
Tags?: Tag[] | undefined;
|
|
92
|
+
SseSpecification?: VerifiedAccessSseSpecificationResponse | undefined;
|
|
93
|
+
}
|
|
70
94
|
export interface CreateVerifiedAccessGroupResult {
|
|
71
95
|
VerifiedAccessGroup?: VerifiedAccessGroup | undefined;
|
|
72
96
|
}
|
|
@@ -210,6 +234,8 @@ export type DnsRecordIpType =
|
|
|
210
234
|
export interface DnsOptionsSpecification {
|
|
211
235
|
DnsRecordIpType?: DnsRecordIpType | undefined;
|
|
212
236
|
PrivateDnsOnlyForInboundResolverEndpoint?: boolean | undefined;
|
|
237
|
+
PrivateDnsPreference?: string | undefined;
|
|
238
|
+
PrivateDnsSpecifiedDomains?: string[] | undefined;
|
|
213
239
|
}
|
|
214
240
|
export interface SubnetConfiguration {
|
|
215
241
|
SubnetId?: string | undefined;
|
|
@@ -251,6 +277,8 @@ export interface DnsEntry {
|
|
|
251
277
|
export interface DnsOptions {
|
|
252
278
|
DnsRecordIpType?: DnsRecordIpType | undefined;
|
|
253
279
|
PrivateDnsOnlyForInboundResolverEndpoint?: boolean | undefined;
|
|
280
|
+
PrivateDnsPreference?: string | undefined;
|
|
281
|
+
PrivateDnsSpecifiedDomains?: string[] | undefined;
|
|
254
282
|
}
|
|
255
283
|
export interface SecurityGroupIdentifier {
|
|
256
284
|
GroupId?: string | undefined;
|
|
@@ -1589,26 +1617,6 @@ export declare const MetricType: {
|
|
|
1589
1617
|
readonly aggregate_latency: "aggregate-latency";
|
|
1590
1618
|
};
|
|
1591
1619
|
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
1592
|
-
export declare const PeriodType: {
|
|
1593
|
-
readonly fifteen_minutes: "fifteen-minutes";
|
|
1594
|
-
readonly five_minutes: "five-minutes";
|
|
1595
|
-
readonly one_day: "one-day";
|
|
1596
|
-
readonly one_hour: "one-hour";
|
|
1597
|
-
readonly one_week: "one-week";
|
|
1598
|
-
readonly three_hours: "three-hours";
|
|
1599
|
-
};
|
|
1600
|
-
export type PeriodType = (typeof PeriodType)[keyof typeof PeriodType];
|
|
1601
|
-
export declare const StatisticType: {
|
|
1602
|
-
readonly p50: "p50";
|
|
1603
|
-
};
|
|
1604
|
-
export type StatisticType = (typeof StatisticType)[keyof typeof StatisticType];
|
|
1605
|
-
export interface Subscription {
|
|
1606
|
-
Source?: string | undefined;
|
|
1607
|
-
Destination?: string | undefined;
|
|
1608
|
-
Metric?: MetricType | undefined;
|
|
1609
|
-
Statistic?: StatisticType | undefined;
|
|
1610
|
-
Period?: PeriodType | undefined;
|
|
1611
|
-
}
|
|
1612
1620
|
export declare const CreateVerifiedAccessNativeApplicationOidcOptionsFilterSensitiveLog: (
|
|
1613
1621
|
obj: CreateVerifiedAccessNativeApplicationOidcOptions
|
|
1614
1622
|
) => any;
|
|
@@ -50,7 +50,6 @@ import {
|
|
|
50
50
|
FleetReplacementStrategy,
|
|
51
51
|
FleetType,
|
|
52
52
|
HostnameType,
|
|
53
|
-
InstanceBandwidthWeighting,
|
|
54
53
|
InstanceLifecycle,
|
|
55
54
|
LaunchTemplateAndOverridesResponse,
|
|
56
55
|
LogDestinationType,
|
|
@@ -69,6 +68,7 @@ import {
|
|
|
69
68
|
import {
|
|
70
69
|
CapacityReservationTargetResponse,
|
|
71
70
|
GroupIdentifier,
|
|
71
|
+
InstanceBandwidthWeighting,
|
|
72
72
|
InstanceIpv6Address,
|
|
73
73
|
NetworkInterfaceStatus,
|
|
74
74
|
StateReason,
|
|
@@ -78,8 +78,28 @@ import {
|
|
|
78
78
|
FleetStateCode,
|
|
79
79
|
IdFormat,
|
|
80
80
|
InstanceTagNotificationAttribute,
|
|
81
|
-
|
|
81
|
+
MetricType,
|
|
82
82
|
} from "./models_3";
|
|
83
|
+
export declare const PeriodType: {
|
|
84
|
+
readonly fifteen_minutes: "fifteen-minutes";
|
|
85
|
+
readonly five_minutes: "five-minutes";
|
|
86
|
+
readonly one_day: "one-day";
|
|
87
|
+
readonly one_hour: "one-hour";
|
|
88
|
+
readonly one_week: "one-week";
|
|
89
|
+
readonly three_hours: "three-hours";
|
|
90
|
+
};
|
|
91
|
+
export type PeriodType = (typeof PeriodType)[keyof typeof PeriodType];
|
|
92
|
+
export declare const StatisticType: {
|
|
93
|
+
readonly p50: "p50";
|
|
94
|
+
};
|
|
95
|
+
export type StatisticType = (typeof StatisticType)[keyof typeof StatisticType];
|
|
96
|
+
export interface Subscription {
|
|
97
|
+
Source?: string | undefined;
|
|
98
|
+
Destination?: string | undefined;
|
|
99
|
+
Metric?: MetricType | undefined;
|
|
100
|
+
Statistic?: StatisticType | undefined;
|
|
101
|
+
Period?: PeriodType | undefined;
|
|
102
|
+
}
|
|
83
103
|
export interface DescribeAwsNetworkPerformanceMetricSubscriptionsResult {
|
|
84
104
|
NextToken?: string | undefined;
|
|
85
105
|
Subscriptions?: Subscription[] | undefined;
|
|
@@ -2169,27 +2189,6 @@ export interface DescribeInstanceTypesRequest {
|
|
|
2169
2189
|
MaxResults?: number | undefined;
|
|
2170
2190
|
NextToken?: string | undefined;
|
|
2171
2191
|
}
|
|
2172
|
-
export declare const AttachmentLimitType: {
|
|
2173
|
-
readonly DEDICATED: "dedicated";
|
|
2174
|
-
readonly SHARED: "shared";
|
|
2175
|
-
};
|
|
2176
|
-
export type AttachmentLimitType =
|
|
2177
|
-
(typeof AttachmentLimitType)[keyof typeof AttachmentLimitType];
|
|
2178
|
-
export interface EbsOptimizedInfo {
|
|
2179
|
-
BaselineBandwidthInMbps?: number | undefined;
|
|
2180
|
-
BaselineThroughputInMBps?: number | undefined;
|
|
2181
|
-
BaselineIops?: number | undefined;
|
|
2182
|
-
MaximumBandwidthInMbps?: number | undefined;
|
|
2183
|
-
MaximumThroughputInMBps?: number | undefined;
|
|
2184
|
-
MaximumIops?: number | undefined;
|
|
2185
|
-
}
|
|
2186
|
-
export declare const EbsOptimizedSupport: {
|
|
2187
|
-
readonly default: "default";
|
|
2188
|
-
readonly supported: "supported";
|
|
2189
|
-
readonly unsupported: "unsupported";
|
|
2190
|
-
};
|
|
2191
|
-
export type EbsOptimizedSupport =
|
|
2192
|
-
(typeof EbsOptimizedSupport)[keyof typeof EbsOptimizedSupport];
|
|
2193
2192
|
export declare const DescribeBundleTasksResultFilterSensitiveLog: (
|
|
2194
2193
|
obj: DescribeBundleTasksResult
|
|
2195
2194
|
) => any;
|
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
TransitGatewayAttachmentState,
|
|
22
22
|
TransitGatewayPeeringAttachment,
|
|
23
23
|
TransitGatewayVpcAttachment,
|
|
24
|
-
TrunkInterfaceAssociation,
|
|
25
24
|
UserIdGroupPair,
|
|
26
25
|
} from "./models_0";
|
|
27
26
|
import {
|
|
@@ -46,7 +45,6 @@ import {
|
|
|
46
45
|
Ipv6PrefixSpecificationRequest,
|
|
47
46
|
KeyType,
|
|
48
47
|
MacModificationTask,
|
|
49
|
-
PrivateIpAddressSpecification,
|
|
50
48
|
SpotInstanceType,
|
|
51
49
|
Subnet,
|
|
52
50
|
TargetCapacityUnitType,
|
|
@@ -71,6 +69,7 @@ import {
|
|
|
71
69
|
NetworkInterfaceAttachment,
|
|
72
70
|
NetworkInterfacePermission,
|
|
73
71
|
PlacementGroup,
|
|
72
|
+
PrivateIpAddressSpecification,
|
|
74
73
|
ReplaceRootVolumeTask,
|
|
75
74
|
RouteServer,
|
|
76
75
|
RouteServerEndpoint,
|
|
@@ -92,19 +91,36 @@ import {
|
|
|
92
91
|
TransitGatewayPolicyTable,
|
|
93
92
|
TransitGatewayRouteTable,
|
|
94
93
|
TransitGatewayRouteTableAnnouncement,
|
|
95
|
-
VerifiedAccessEndpoint,
|
|
96
94
|
} from "./models_2";
|
|
97
95
|
import { Byoasn, Filter, IdFormat } from "./models_3";
|
|
98
96
|
import {
|
|
99
|
-
AttachmentLimitType,
|
|
100
97
|
AttributeBooleanValue,
|
|
101
|
-
EbsOptimizedInfo,
|
|
102
|
-
EbsOptimizedSupport,
|
|
103
98
|
EventInformation,
|
|
104
99
|
PermissionGroup,
|
|
105
100
|
ProductCode,
|
|
106
101
|
VirtualizationType,
|
|
107
102
|
} from "./models_4";
|
|
103
|
+
export declare const AttachmentLimitType: {
|
|
104
|
+
readonly DEDICATED: "dedicated";
|
|
105
|
+
readonly SHARED: "shared";
|
|
106
|
+
};
|
|
107
|
+
export type AttachmentLimitType =
|
|
108
|
+
(typeof AttachmentLimitType)[keyof typeof AttachmentLimitType];
|
|
109
|
+
export interface EbsOptimizedInfo {
|
|
110
|
+
BaselineBandwidthInMbps?: number | undefined;
|
|
111
|
+
BaselineThroughputInMBps?: number | undefined;
|
|
112
|
+
BaselineIops?: number | undefined;
|
|
113
|
+
MaximumBandwidthInMbps?: number | undefined;
|
|
114
|
+
MaximumThroughputInMBps?: number | undefined;
|
|
115
|
+
MaximumIops?: number | undefined;
|
|
116
|
+
}
|
|
117
|
+
export declare const EbsOptimizedSupport: {
|
|
118
|
+
readonly default: "default";
|
|
119
|
+
readonly supported: "supported";
|
|
120
|
+
readonly unsupported: "unsupported";
|
|
121
|
+
};
|
|
122
|
+
export type EbsOptimizedSupport =
|
|
123
|
+
(typeof EbsOptimizedSupport)[keyof typeof EbsOptimizedSupport];
|
|
108
124
|
export declare const EbsEncryptionSupport: {
|
|
109
125
|
readonly supported: "supported";
|
|
110
126
|
readonly unsupported: "unsupported";
|
|
@@ -2030,23 +2046,6 @@ export interface DescribeTrunkInterfaceAssociationsRequest {
|
|
|
2030
2046
|
NextToken?: string | undefined;
|
|
2031
2047
|
MaxResults?: number | undefined;
|
|
2032
2048
|
}
|
|
2033
|
-
export interface DescribeTrunkInterfaceAssociationsResult {
|
|
2034
|
-
InterfaceAssociations?: TrunkInterfaceAssociation[] | undefined;
|
|
2035
|
-
NextToken?: string | undefined;
|
|
2036
|
-
}
|
|
2037
|
-
export interface DescribeVerifiedAccessEndpointsRequest {
|
|
2038
|
-
VerifiedAccessEndpointIds?: string[] | undefined;
|
|
2039
|
-
VerifiedAccessInstanceId?: string | undefined;
|
|
2040
|
-
VerifiedAccessGroupId?: string | undefined;
|
|
2041
|
-
MaxResults?: number | undefined;
|
|
2042
|
-
NextToken?: string | undefined;
|
|
2043
|
-
Filters?: Filter[] | undefined;
|
|
2044
|
-
DryRun?: boolean | undefined;
|
|
2045
|
-
}
|
|
2046
|
-
export interface DescribeVerifiedAccessEndpointsResult {
|
|
2047
|
-
VerifiedAccessEndpoints?: VerifiedAccessEndpoint[] | undefined;
|
|
2048
|
-
NextToken?: string | undefined;
|
|
2049
|
-
}
|
|
2050
2049
|
export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
|
|
2051
2050
|
obj: DescribeLaunchTemplateVersionsResult
|
|
2052
2051
|
) => any;
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
TransitGatewayAttachmentResourceType,
|
|
21
21
|
TransitGatewayMulticastDomainAssociations,
|
|
22
22
|
TransitGatewayPolicyTableAssociation,
|
|
23
|
+
TrunkInterfaceAssociation,
|
|
23
24
|
UserTrustProviderType,
|
|
24
25
|
VerifiedAccessInstance,
|
|
25
26
|
VerifiedAccessTrustProvider,
|
|
@@ -36,7 +37,7 @@ import {
|
|
|
36
37
|
VolumeType,
|
|
37
38
|
Vpc,
|
|
38
39
|
} from "./models_1";
|
|
39
|
-
import {
|
|
40
|
+
import { VerifiedAccessEndpoint } from "./models_2";
|
|
40
41
|
import {
|
|
41
42
|
ConnectionNotification,
|
|
42
43
|
DnsEntry,
|
|
@@ -44,12 +45,11 @@ import {
|
|
|
44
45
|
Filter,
|
|
45
46
|
MetricType,
|
|
46
47
|
PayerResponsibility,
|
|
47
|
-
PeriodType,
|
|
48
48
|
ServiceConfiguration,
|
|
49
49
|
ServiceConnectivityType,
|
|
50
50
|
ServiceTypeDetail,
|
|
51
51
|
State,
|
|
52
|
-
|
|
52
|
+
VerifiedAccessGroup,
|
|
53
53
|
VpcBlockPublicAccessExclusion,
|
|
54
54
|
VpcEndpoint,
|
|
55
55
|
VpnConnection,
|
|
@@ -63,9 +63,28 @@ import {
|
|
|
63
63
|
FastLaunchSnapshotConfigurationResponse,
|
|
64
64
|
FastLaunchStateCode,
|
|
65
65
|
FastSnapshotRestoreStateCode,
|
|
66
|
+
PeriodType,
|
|
66
67
|
ProductCode,
|
|
67
68
|
ReservationState,
|
|
69
|
+
StatisticType,
|
|
68
70
|
} from "./models_4";
|
|
71
|
+
export interface DescribeTrunkInterfaceAssociationsResult {
|
|
72
|
+
InterfaceAssociations?: TrunkInterfaceAssociation[] | undefined;
|
|
73
|
+
NextToken?: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface DescribeVerifiedAccessEndpointsRequest {
|
|
76
|
+
VerifiedAccessEndpointIds?: string[] | undefined;
|
|
77
|
+
VerifiedAccessInstanceId?: string | undefined;
|
|
78
|
+
VerifiedAccessGroupId?: string | undefined;
|
|
79
|
+
MaxResults?: number | undefined;
|
|
80
|
+
NextToken?: string | undefined;
|
|
81
|
+
Filters?: Filter[] | undefined;
|
|
82
|
+
DryRun?: boolean | undefined;
|
|
83
|
+
}
|
|
84
|
+
export interface DescribeVerifiedAccessEndpointsResult {
|
|
85
|
+
VerifiedAccessEndpoints?: VerifiedAccessEndpoint[] | undefined;
|
|
86
|
+
NextToken?: string | undefined;
|
|
87
|
+
}
|
|
69
88
|
export interface DescribeVerifiedAccessGroupsRequest {
|
|
70
89
|
VerifiedAccessGroupIds?: string[] | undefined;
|
|
71
90
|
VerifiedAccessInstanceId?: string | undefined;
|
|
@@ -1685,19 +1704,6 @@ export interface GetFlowLogsIntegrationTemplateRequest {
|
|
|
1685
1704
|
ConfigDeliveryS3DestinationArn: string | undefined;
|
|
1686
1705
|
IntegrateServices: IntegrateServices | undefined;
|
|
1687
1706
|
}
|
|
1688
|
-
export interface GetFlowLogsIntegrationTemplateResult {
|
|
1689
|
-
Result?: string | undefined;
|
|
1690
|
-
}
|
|
1691
|
-
export interface GetGroupsForCapacityReservationRequest {
|
|
1692
|
-
CapacityReservationId: string | undefined;
|
|
1693
|
-
NextToken?: string | undefined;
|
|
1694
|
-
MaxResults?: number | undefined;
|
|
1695
|
-
DryRun?: boolean | undefined;
|
|
1696
|
-
}
|
|
1697
|
-
export interface CapacityReservationGroup {
|
|
1698
|
-
GroupArn?: string | undefined;
|
|
1699
|
-
OwnerId?: string | undefined;
|
|
1700
|
-
}
|
|
1701
1707
|
export declare const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog: (
|
|
1702
1708
|
obj: DescribeVerifiedAccessTrustProvidersResult
|
|
1703
1709
|
) => any;
|
|
@@ -24,7 +24,6 @@ import {
|
|
|
24
24
|
TransitGatewayAssociationState,
|
|
25
25
|
TransitGatewayAttachmentResourceType,
|
|
26
26
|
TransitGatewayPolicyTableAssociation,
|
|
27
|
-
TransitGatewayVpcAttachment,
|
|
28
27
|
UnsuccessfulItem,
|
|
29
28
|
} from "./models_0";
|
|
30
29
|
import {
|
|
@@ -39,10 +38,10 @@ import {
|
|
|
39
38
|
ConnectionTrackingSpecificationRequest,
|
|
40
39
|
DiskImageFormat,
|
|
41
40
|
EndDateType,
|
|
41
|
+
ExternalAuthorityConfiguration,
|
|
42
42
|
FleetExcessCapacityTerminationPolicy,
|
|
43
43
|
FleetLaunchTemplateConfigRequest,
|
|
44
44
|
HostnameType,
|
|
45
|
-
InstanceBandwidthWeighting,
|
|
46
45
|
InstanceEventWindowTimeRangeRequest,
|
|
47
46
|
InstanceMatchCriteria,
|
|
48
47
|
InstanceRequirementsRequest,
|
|
@@ -72,6 +71,7 @@ import {
|
|
|
72
71
|
AutoAcceptSharedAttachmentsValue,
|
|
73
72
|
DefaultRouteTableAssociationValue,
|
|
74
73
|
DefaultRouteTablePropagationValue,
|
|
74
|
+
InstanceBandwidthWeighting,
|
|
75
75
|
LaunchTemplate,
|
|
76
76
|
LocalGatewayRoute,
|
|
77
77
|
ManagedPrefixList,
|
|
@@ -127,7 +127,6 @@ import {
|
|
|
127
127
|
SnapshotAttributeName,
|
|
128
128
|
} from "./models_5";
|
|
129
129
|
import {
|
|
130
|
-
CapacityReservationGroup,
|
|
131
130
|
InstanceFamilyCreditSpecification,
|
|
132
131
|
ManagedBy,
|
|
133
132
|
RouteServerPropagation,
|
|
@@ -135,6 +134,19 @@ import {
|
|
|
135
134
|
TransitGatewayPropagationState,
|
|
136
135
|
UnlimitedSupportedInstanceFamily,
|
|
137
136
|
} from "./models_6";
|
|
137
|
+
export interface GetFlowLogsIntegrationTemplateResult {
|
|
138
|
+
Result?: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface GetGroupsForCapacityReservationRequest {
|
|
141
|
+
CapacityReservationId: string | undefined;
|
|
142
|
+
NextToken?: string | undefined;
|
|
143
|
+
MaxResults?: number | undefined;
|
|
144
|
+
DryRun?: boolean | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface CapacityReservationGroup {
|
|
147
|
+
GroupArn?: string | undefined;
|
|
148
|
+
OwnerId?: string | undefined;
|
|
149
|
+
}
|
|
138
150
|
export interface GetGroupsForCapacityReservationResult {
|
|
139
151
|
NextToken?: string | undefined;
|
|
140
152
|
CapacityReservationGroups?: CapacityReservationGroup[] | undefined;
|
|
@@ -1639,6 +1651,8 @@ export interface ModifyIpamScopeRequest {
|
|
|
1639
1651
|
DryRun?: boolean | undefined;
|
|
1640
1652
|
IpamScopeId: string | undefined;
|
|
1641
1653
|
Description?: string | undefined;
|
|
1654
|
+
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
1655
|
+
RemoveExternalAuthorityConfiguration?: boolean | undefined;
|
|
1642
1656
|
}
|
|
1643
1657
|
export interface ModifyIpamScopeResult {
|
|
1644
1658
|
IpamScope?: IpamScope | undefined;
|
|
@@ -1923,16 +1937,6 @@ export interface ModifyTransitGatewayVpcAttachmentRequest {
|
|
|
1923
1937
|
Options?: ModifyTransitGatewayVpcAttachmentRequestOptions | undefined;
|
|
1924
1938
|
DryRun?: boolean | undefined;
|
|
1925
1939
|
}
|
|
1926
|
-
export interface ModifyTransitGatewayVpcAttachmentResult {
|
|
1927
|
-
TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment | undefined;
|
|
1928
|
-
}
|
|
1929
|
-
export interface ModifyVerifiedAccessEndpointPortRange {
|
|
1930
|
-
FromPort?: number | undefined;
|
|
1931
|
-
ToPort?: number | undefined;
|
|
1932
|
-
}
|
|
1933
|
-
export interface ModifyVerifiedAccessEndpointCidrOptions {
|
|
1934
|
-
PortRanges?: ModifyVerifiedAccessEndpointPortRange[] | undefined;
|
|
1935
|
-
}
|
|
1936
1940
|
export declare const GetInstanceTpmEkPubResultFilterSensitiveLog: (
|
|
1937
1941
|
obj: GetInstanceTpmEkPubResult
|
|
1938
1942
|
) => any;
|