@aws-sdk/client-ec2 3.88.0 → 3.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/DescribeClientVpnRoutesCommand.js +2 -1
- package/dist-cjs/commands/DescribeClientVpnTargetNetworksCommand.js +3 -3
- package/dist-cjs/commands/DescribePublicIpv4PoolsCommand.js +3 -3
- package/dist-cjs/commands/DescribeRegionsCommand.js +1 -2
- package/dist-cjs/commands/GetEbsEncryptionByDefaultCommand.js +3 -3
- package/dist-cjs/commands/ReplaceTransitGatewayRouteCommand.js +2 -1
- package/dist-cjs/commands/ReportInstanceStatusCommand.js +2 -2
- package/dist-cjs/commands/RequestSpotFleetCommand.js +1 -2
- package/dist-cjs/models/models_2.js +36 -36
- package/dist-cjs/models/models_3.js +36 -36
- package/dist-cjs/models/models_4.js +36 -37
- package/dist-cjs/models/models_5.js +37 -24
- package/dist-cjs/models/models_6.js +20 -2
- package/dist-cjs/protocols/Aws_ec2.js +100 -7
- package/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -1
- package/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +1 -1
- package/dist-es/commands/DescribePublicIpv4PoolsCommand.js +1 -1
- package/dist-es/commands/DescribeRegionsCommand.js +1 -2
- package/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +1 -1
- package/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -1
- package/dist-es/commands/ReportInstanceStatusCommand.js +1 -1
- package/dist-es/commands/RequestSpotFleetCommand.js +1 -2
- package/dist-es/models/models_2.js +26 -20
- package/dist-es/models/models_3.js +20 -20
- package/dist-es/models/models_4.js +20 -23
- package/dist-es/models/models_5.js +23 -12
- package/dist-es/models/models_6.js +12 -0
- package/dist-es/protocols/Aws_ec2.js +106 -8
- package/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +1 -1
- package/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRegionsCommand.d.ts +1 -2
- package/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +2 -1
- package/dist-types/commands/ReportInstanceStatusCommand.d.ts +1 -1
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +1 -2
- package/dist-types/models/models_1.d.ts +4 -4
- package/dist-types/models/models_2.d.ts +78 -164
- package/dist-types/models/models_3.d.ts +156 -162
- package/dist-types/models/models_4.d.ts +186 -75
- package/dist-types/models/models_5.d.ts +93 -121
- package/dist-types/models/models_6.d.ts +119 -1
- package/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_1.d.ts +2 -2
- package/dist-types/ts3.4/models/models_2.d.ts +46 -79
- package/dist-types/ts3.4/models/models_3.d.ts +79 -75
- package/dist-types/ts3.4/models/models_4.d.ts +79 -47
- package/dist-types/ts3.4/models/models_5.d.ts +57 -44
- package/dist-types/ts3.4/models/models_6.d.ts +42 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeClientVpnRoutesRequest
|
|
4
|
+
import { DescribeClientVpnRoutesRequest } from "../models/models_2";
|
|
5
|
+
import { DescribeClientVpnRoutesResult } from "../models/models_3";
|
|
5
6
|
export interface DescribeClientVpnRoutesCommandInput extends DescribeClientVpnRoutesRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface DescribeClientVpnRoutesCommandOutput extends DescribeClientVpnRoutesResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/
|
|
4
|
+
import { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/models_3";
|
|
5
5
|
export interface DescribeClientVpnTargetNetworksCommandInput extends DescribeClientVpnTargetNetworksRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface DescribeClientVpnTargetNetworksCommandOutput extends DescribeClientVpnTargetNetworksResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/
|
|
4
|
+
import { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/models_4";
|
|
5
5
|
export interface DescribePublicIpv4PoolsCommandInput extends DescribePublicIpv4PoolsRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface DescribePublicIpv4PoolsCommandOutput extends DescribePublicIpv4PoolsResult, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeRegionsRequest } from "../models/
|
|
5
|
-
import { DescribeRegionsResult } from "../models/models_4";
|
|
4
|
+
import { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_4";
|
|
6
5
|
export interface DescribeRegionsCommandInput extends DescribeRegionsRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface DescribeRegionsCommandOutput extends DescribeRegionsResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/
|
|
4
|
+
import { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/models_5";
|
|
5
5
|
export interface GetEbsEncryptionByDefaultCommandInput extends GetEbsEncryptionByDefaultRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetEbsEncryptionByDefaultCommandOutput extends GetEbsEncryptionByDefaultResult, __MetadataBearer {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ReplaceTransitGatewayRouteRequest
|
|
4
|
+
import { ReplaceTransitGatewayRouteRequest } from "../models/models_5";
|
|
5
|
+
import { ReplaceTransitGatewayRouteResult } from "../models/models_6";
|
|
5
6
|
export interface ReplaceTransitGatewayRouteCommandInput extends ReplaceTransitGatewayRouteRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ReplaceTransitGatewayRouteCommandOutput extends ReplaceTransitGatewayRouteResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ReportInstanceStatusRequest } from "../models/
|
|
4
|
+
import { ReportInstanceStatusRequest } from "../models/models_6";
|
|
5
5
|
export interface ReportInstanceStatusCommandInput extends ReportInstanceStatusRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface ReportInstanceStatusCommandOutput extends __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { RequestSpotFleetRequest } from "../models/
|
|
5
|
-
import { RequestSpotFleetResponse } from "../models/models_6";
|
|
4
|
+
import { RequestSpotFleetRequest, RequestSpotFleetResponse } from "../models/models_6";
|
|
6
5
|
export interface RequestSpotFleetCommandInput extends RequestSpotFleetRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface RequestSpotFleetCommandOutput extends RequestSpotFleetResponse, __MetadataBearer {
|
|
@@ -3483,8 +3483,6 @@ export declare enum SubnetCidrReservationType {
|
|
|
3483
3483
|
}
|
|
3484
3484
|
export interface CreateSubnetCidrReservationRequest {
|
|
3485
3485
|
|
|
3486
|
-
TagSpecifications?: TagSpecification[];
|
|
3487
|
-
|
|
3488
3486
|
SubnetId: string | undefined;
|
|
3489
3487
|
|
|
3490
3488
|
Cidr: string | undefined;
|
|
@@ -3494,6 +3492,8 @@ export interface CreateSubnetCidrReservationRequest {
|
|
|
3494
3492
|
Description?: string;
|
|
3495
3493
|
|
|
3496
3494
|
DryRun?: boolean;
|
|
3495
|
+
|
|
3496
|
+
TagSpecifications?: TagSpecification[];
|
|
3497
3497
|
}
|
|
3498
3498
|
export declare namespace CreateSubnetCidrReservationRequest {
|
|
3499
3499
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, ApplianceModeSupportValue,
|
|
1
|
+
import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, ApplianceModeSupportValue, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthenticationType, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, DnsSupportValue, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, GatewayType, InstanceEventWindowState, Ipv6SupportValue, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TransportProtocol, UnsuccessfulItem, VolumeAttachment, Vpc, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
2
|
import { CreateTransitGatewayConnectRequestOptions, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, ProtocolValue, SubnetCidrReservation, TransitGateway, VolumeType } from "./models_1";
|
|
3
3
|
export interface CreateTransitGatewayConnectRequest {
|
|
4
4
|
|
|
@@ -549,6 +549,26 @@ export declare namespace CreateVpcResult {
|
|
|
549
549
|
|
|
550
550
|
const filterSensitiveLog: (obj: CreateVpcResult) => any;
|
|
551
551
|
}
|
|
552
|
+
export declare enum DnsRecordIpType {
|
|
553
|
+
dualstack = "dualstack",
|
|
554
|
+
ipv4 = "ipv4",
|
|
555
|
+
ipv6 = "ipv6",
|
|
556
|
+
service_defined = "service-defined"
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
export interface DnsOptionsSpecification {
|
|
560
|
+
|
|
561
|
+
DnsRecordIpType?: DnsRecordIpType | string;
|
|
562
|
+
}
|
|
563
|
+
export declare namespace DnsOptionsSpecification {
|
|
564
|
+
|
|
565
|
+
const filterSensitiveLog: (obj: DnsOptionsSpecification) => any;
|
|
566
|
+
}
|
|
567
|
+
export declare enum IpAddressType {
|
|
568
|
+
dualstack = "dualstack",
|
|
569
|
+
ipv4 = "ipv4",
|
|
570
|
+
ipv6 = "ipv6"
|
|
571
|
+
}
|
|
552
572
|
export declare enum VpcEndpointType {
|
|
553
573
|
Gateway = "Gateway",
|
|
554
574
|
GatewayLoadBalancer = "GatewayLoadBalancer",
|
|
@@ -573,6 +593,10 @@ export interface CreateVpcEndpointRequest {
|
|
|
573
593
|
|
|
574
594
|
SecurityGroupIds?: string[];
|
|
575
595
|
|
|
596
|
+
IpAddressType?: IpAddressType | string;
|
|
597
|
+
|
|
598
|
+
DnsOptions?: DnsOptionsSpecification;
|
|
599
|
+
|
|
576
600
|
ClientToken?: string;
|
|
577
601
|
|
|
578
602
|
PrivateDnsEnabled?: boolean;
|
|
@@ -595,6 +619,15 @@ export declare namespace DnsEntry {
|
|
|
595
619
|
const filterSensitiveLog: (obj: DnsEntry) => any;
|
|
596
620
|
}
|
|
597
621
|
|
|
622
|
+
export interface DnsOptions {
|
|
623
|
+
|
|
624
|
+
DnsRecordIpType?: DnsRecordIpType | string;
|
|
625
|
+
}
|
|
626
|
+
export declare namespace DnsOptions {
|
|
627
|
+
|
|
628
|
+
const filterSensitiveLog: (obj: DnsOptions) => any;
|
|
629
|
+
}
|
|
630
|
+
|
|
598
631
|
export interface SecurityGroupIdentifier {
|
|
599
632
|
|
|
600
633
|
GroupId?: string;
|
|
@@ -647,6 +680,10 @@ export interface VpcEndpoint {
|
|
|
647
680
|
|
|
648
681
|
Groups?: SecurityGroupIdentifier[];
|
|
649
682
|
|
|
683
|
+
IpAddressType?: IpAddressType | string;
|
|
684
|
+
|
|
685
|
+
DnsOptions?: DnsOptions;
|
|
686
|
+
|
|
650
687
|
PrivateDnsEnabled?: boolean;
|
|
651
688
|
|
|
652
689
|
RequesterManaged?: boolean;
|
|
@@ -746,6 +783,8 @@ export interface CreateVpcEndpointServiceConfigurationRequest {
|
|
|
746
783
|
|
|
747
784
|
GatewayLoadBalancerArns?: string[];
|
|
748
785
|
|
|
786
|
+
SupportedIpAddressTypes?: string[];
|
|
787
|
+
|
|
749
788
|
ClientToken?: string;
|
|
750
789
|
|
|
751
790
|
TagSpecifications?: TagSpecification[];
|
|
@@ -798,6 +837,10 @@ export declare namespace ServiceTypeDetail {
|
|
|
798
837
|
|
|
799
838
|
const filterSensitiveLog: (obj: ServiceTypeDetail) => any;
|
|
800
839
|
}
|
|
840
|
+
export declare enum ServiceConnectivityType {
|
|
841
|
+
ipv4 = "ipv4",
|
|
842
|
+
ipv6 = "ipv6"
|
|
843
|
+
}
|
|
801
844
|
|
|
802
845
|
export interface ServiceConfiguration {
|
|
803
846
|
|
|
@@ -819,6 +862,8 @@ export interface ServiceConfiguration {
|
|
|
819
862
|
|
|
820
863
|
GatewayLoadBalancerArns?: string[];
|
|
821
864
|
|
|
865
|
+
SupportedIpAddressTypes?: (ServiceConnectivityType | string)[];
|
|
866
|
+
|
|
822
867
|
BaseEndpointDnsNames?: string[];
|
|
823
868
|
|
|
824
869
|
PrivateDnsName?: string;
|
|
@@ -3351,81 +3396,3 @@ export declare namespace DescribeClientVpnRoutesRequest {
|
|
|
3351
3396
|
|
|
3352
3397
|
const filterSensitiveLog: (obj: DescribeClientVpnRoutesRequest) => any;
|
|
3353
3398
|
}
|
|
3354
|
-
|
|
3355
|
-
export interface ClientVpnRoute {
|
|
3356
|
-
|
|
3357
|
-
ClientVpnEndpointId?: string;
|
|
3358
|
-
|
|
3359
|
-
DestinationCidr?: string;
|
|
3360
|
-
|
|
3361
|
-
TargetSubnet?: string;
|
|
3362
|
-
|
|
3363
|
-
Type?: string;
|
|
3364
|
-
|
|
3365
|
-
Origin?: string;
|
|
3366
|
-
|
|
3367
|
-
Status?: ClientVpnRouteStatus;
|
|
3368
|
-
|
|
3369
|
-
Description?: string;
|
|
3370
|
-
}
|
|
3371
|
-
export declare namespace ClientVpnRoute {
|
|
3372
|
-
|
|
3373
|
-
const filterSensitiveLog: (obj: ClientVpnRoute) => any;
|
|
3374
|
-
}
|
|
3375
|
-
export interface DescribeClientVpnRoutesResult {
|
|
3376
|
-
|
|
3377
|
-
Routes?: ClientVpnRoute[];
|
|
3378
|
-
|
|
3379
|
-
NextToken?: string;
|
|
3380
|
-
}
|
|
3381
|
-
export declare namespace DescribeClientVpnRoutesResult {
|
|
3382
|
-
|
|
3383
|
-
const filterSensitiveLog: (obj: DescribeClientVpnRoutesResult) => any;
|
|
3384
|
-
}
|
|
3385
|
-
export interface DescribeClientVpnTargetNetworksRequest {
|
|
3386
|
-
|
|
3387
|
-
ClientVpnEndpointId: string | undefined;
|
|
3388
|
-
|
|
3389
|
-
AssociationIds?: string[];
|
|
3390
|
-
|
|
3391
|
-
MaxResults?: number;
|
|
3392
|
-
|
|
3393
|
-
NextToken?: string;
|
|
3394
|
-
|
|
3395
|
-
Filters?: Filter[];
|
|
3396
|
-
|
|
3397
|
-
DryRun?: boolean;
|
|
3398
|
-
}
|
|
3399
|
-
export declare namespace DescribeClientVpnTargetNetworksRequest {
|
|
3400
|
-
|
|
3401
|
-
const filterSensitiveLog: (obj: DescribeClientVpnTargetNetworksRequest) => any;
|
|
3402
|
-
}
|
|
3403
|
-
|
|
3404
|
-
export interface TargetNetwork {
|
|
3405
|
-
|
|
3406
|
-
AssociationId?: string;
|
|
3407
|
-
|
|
3408
|
-
VpcId?: string;
|
|
3409
|
-
|
|
3410
|
-
TargetNetworkId?: string;
|
|
3411
|
-
|
|
3412
|
-
ClientVpnEndpointId?: string;
|
|
3413
|
-
|
|
3414
|
-
Status?: AssociationStatus;
|
|
3415
|
-
|
|
3416
|
-
SecurityGroups?: string[];
|
|
3417
|
-
}
|
|
3418
|
-
export declare namespace TargetNetwork {
|
|
3419
|
-
|
|
3420
|
-
const filterSensitiveLog: (obj: TargetNetwork) => any;
|
|
3421
|
-
}
|
|
3422
|
-
export interface DescribeClientVpnTargetNetworksResult {
|
|
3423
|
-
|
|
3424
|
-
ClientVpnTargetNetworks?: TargetNetwork[];
|
|
3425
|
-
|
|
3426
|
-
NextToken?: string;
|
|
3427
|
-
}
|
|
3428
|
-
export declare namespace DescribeClientVpnTargetNetworksResult {
|
|
3429
|
-
|
|
3430
|
-
const filterSensitiveLog: (obj: DescribeClientVpnTargetNetworksResult) => any;
|
|
3431
|
-
}
|
|
@@ -1,6 +1,84 @@
|
|
|
1
|
-
import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AttachmentStatus, AttributeValue, AutoPlacement, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, Tag, TransitGatewayRouteTableRoute } from "./models_0";
|
|
1
|
+
import { _InstanceType, ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AlternatePathHint, AnalysisAclRule, AnalysisComponent, AnalysisRouteTableRoute, AnalysisSecurityGroupRule, AssociationStatus, AttachmentStatus, AttributeValue, AutoPlacement, ClientVpnRouteStatus, CurrencyCodeValues, CustomerGateway, DhcpOptions, EgressOnlyInternetGateway, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, PathComponent, PortRange, Tag, TransitGatewayRouteTableRoute } from "./models_0";
|
|
2
2
|
import { BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, ExportTask, FleetCapacityReservationUsageStrategy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceIpv6Address, InstanceLifecycle, InternetGateway, Ipam, IpamPool, IpamScope, KeyType, LaunchTemplate, LaunchTemplateAndOverridesResponse, LaunchTemplateVersion, LocalGatewayRouteTableVpcAssociation, LogDestinationType, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType } from "./models_1";
|
|
3
3
|
import { Filter, FleetStateCode, IdFormat, InstanceTagNotificationAttribute } from "./models_2";
|
|
4
|
+
|
|
5
|
+
export interface ClientVpnRoute {
|
|
6
|
+
|
|
7
|
+
ClientVpnEndpointId?: string;
|
|
8
|
+
|
|
9
|
+
DestinationCidr?: string;
|
|
10
|
+
|
|
11
|
+
TargetSubnet?: string;
|
|
12
|
+
|
|
13
|
+
Type?: string;
|
|
14
|
+
|
|
15
|
+
Origin?: string;
|
|
16
|
+
|
|
17
|
+
Status?: ClientVpnRouteStatus;
|
|
18
|
+
|
|
19
|
+
Description?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace ClientVpnRoute {
|
|
22
|
+
|
|
23
|
+
const filterSensitiveLog: (obj: ClientVpnRoute) => any;
|
|
24
|
+
}
|
|
25
|
+
export interface DescribeClientVpnRoutesResult {
|
|
26
|
+
|
|
27
|
+
Routes?: ClientVpnRoute[];
|
|
28
|
+
|
|
29
|
+
NextToken?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare namespace DescribeClientVpnRoutesResult {
|
|
32
|
+
|
|
33
|
+
const filterSensitiveLog: (obj: DescribeClientVpnRoutesResult) => any;
|
|
34
|
+
}
|
|
35
|
+
export interface DescribeClientVpnTargetNetworksRequest {
|
|
36
|
+
|
|
37
|
+
ClientVpnEndpointId: string | undefined;
|
|
38
|
+
|
|
39
|
+
AssociationIds?: string[];
|
|
40
|
+
|
|
41
|
+
MaxResults?: number;
|
|
42
|
+
|
|
43
|
+
NextToken?: string;
|
|
44
|
+
|
|
45
|
+
Filters?: Filter[];
|
|
46
|
+
|
|
47
|
+
DryRun?: boolean;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace DescribeClientVpnTargetNetworksRequest {
|
|
50
|
+
|
|
51
|
+
const filterSensitiveLog: (obj: DescribeClientVpnTargetNetworksRequest) => any;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface TargetNetwork {
|
|
55
|
+
|
|
56
|
+
AssociationId?: string;
|
|
57
|
+
|
|
58
|
+
VpcId?: string;
|
|
59
|
+
|
|
60
|
+
TargetNetworkId?: string;
|
|
61
|
+
|
|
62
|
+
ClientVpnEndpointId?: string;
|
|
63
|
+
|
|
64
|
+
Status?: AssociationStatus;
|
|
65
|
+
|
|
66
|
+
SecurityGroups?: string[];
|
|
67
|
+
}
|
|
68
|
+
export declare namespace TargetNetwork {
|
|
69
|
+
|
|
70
|
+
const filterSensitiveLog: (obj: TargetNetwork) => any;
|
|
71
|
+
}
|
|
72
|
+
export interface DescribeClientVpnTargetNetworksResult {
|
|
73
|
+
|
|
74
|
+
ClientVpnTargetNetworks?: TargetNetwork[];
|
|
75
|
+
|
|
76
|
+
NextToken?: string;
|
|
77
|
+
}
|
|
78
|
+
export declare namespace DescribeClientVpnTargetNetworksResult {
|
|
79
|
+
|
|
80
|
+
const filterSensitiveLog: (obj: DescribeClientVpnTargetNetworksResult) => any;
|
|
81
|
+
}
|
|
4
82
|
export interface DescribeCoipPoolsRequest {
|
|
5
83
|
|
|
6
84
|
PoolIds?: string[];
|
|
@@ -3940,77 +4018,3 @@ export declare namespace DescribePrincipalIdFormatResult {
|
|
|
3940
4018
|
|
|
3941
4019
|
const filterSensitiveLog: (obj: DescribePrincipalIdFormatResult) => any;
|
|
3942
4020
|
}
|
|
3943
|
-
export interface DescribePublicIpv4PoolsRequest {
|
|
3944
|
-
|
|
3945
|
-
PoolIds?: string[];
|
|
3946
|
-
|
|
3947
|
-
NextToken?: string;
|
|
3948
|
-
|
|
3949
|
-
MaxResults?: number;
|
|
3950
|
-
|
|
3951
|
-
Filters?: Filter[];
|
|
3952
|
-
}
|
|
3953
|
-
export declare namespace DescribePublicIpv4PoolsRequest {
|
|
3954
|
-
|
|
3955
|
-
const filterSensitiveLog: (obj: DescribePublicIpv4PoolsRequest) => any;
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
export interface PublicIpv4PoolRange {
|
|
3959
|
-
|
|
3960
|
-
FirstAddress?: string;
|
|
3961
|
-
|
|
3962
|
-
LastAddress?: string;
|
|
3963
|
-
|
|
3964
|
-
AddressCount?: number;
|
|
3965
|
-
|
|
3966
|
-
AvailableAddressCount?: number;
|
|
3967
|
-
}
|
|
3968
|
-
export declare namespace PublicIpv4PoolRange {
|
|
3969
|
-
|
|
3970
|
-
const filterSensitiveLog: (obj: PublicIpv4PoolRange) => any;
|
|
3971
|
-
}
|
|
3972
|
-
|
|
3973
|
-
export interface PublicIpv4Pool {
|
|
3974
|
-
|
|
3975
|
-
PoolId?: string;
|
|
3976
|
-
|
|
3977
|
-
Description?: string;
|
|
3978
|
-
|
|
3979
|
-
PoolAddressRanges?: PublicIpv4PoolRange[];
|
|
3980
|
-
|
|
3981
|
-
TotalAddressCount?: number;
|
|
3982
|
-
|
|
3983
|
-
TotalAvailableAddressCount?: number;
|
|
3984
|
-
|
|
3985
|
-
NetworkBorderGroup?: string;
|
|
3986
|
-
|
|
3987
|
-
Tags?: Tag[];
|
|
3988
|
-
}
|
|
3989
|
-
export declare namespace PublicIpv4Pool {
|
|
3990
|
-
|
|
3991
|
-
const filterSensitiveLog: (obj: PublicIpv4Pool) => any;
|
|
3992
|
-
}
|
|
3993
|
-
export interface DescribePublicIpv4PoolsResult {
|
|
3994
|
-
|
|
3995
|
-
PublicIpv4Pools?: PublicIpv4Pool[];
|
|
3996
|
-
|
|
3997
|
-
NextToken?: string;
|
|
3998
|
-
}
|
|
3999
|
-
export declare namespace DescribePublicIpv4PoolsResult {
|
|
4000
|
-
|
|
4001
|
-
const filterSensitiveLog: (obj: DescribePublicIpv4PoolsResult) => any;
|
|
4002
|
-
}
|
|
4003
|
-
export interface DescribeRegionsRequest {
|
|
4004
|
-
|
|
4005
|
-
Filters?: Filter[];
|
|
4006
|
-
|
|
4007
|
-
RegionNames?: string[];
|
|
4008
|
-
|
|
4009
|
-
DryRun?: boolean;
|
|
4010
|
-
|
|
4011
|
-
AllRegions?: boolean;
|
|
4012
|
-
}
|
|
4013
|
-
export declare namespace DescribeRegionsRequest {
|
|
4014
|
-
|
|
4015
|
-
const filterSensitiveLog: (obj: DescribeRegionsRequest) => any;
|
|
4016
|
-
}
|
|
@@ -1,7 +1,81 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, ReservedInstancesListing, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
2
|
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, VolumeType } from "./models_1";
|
|
3
|
-
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
3
|
+
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, IpAddressType, PayerResponsibility, ServiceConfiguration, ServiceConnectivityType, ServiceTypeDetail, State, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
4
|
import { AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, PermissionGroup, ProductCode } from "./models_3";
|
|
5
|
+
export interface DescribePublicIpv4PoolsRequest {
|
|
6
|
+
|
|
7
|
+
PoolIds?: string[];
|
|
8
|
+
|
|
9
|
+
NextToken?: string;
|
|
10
|
+
|
|
11
|
+
MaxResults?: number;
|
|
12
|
+
|
|
13
|
+
Filters?: Filter[];
|
|
14
|
+
}
|
|
15
|
+
export declare namespace DescribePublicIpv4PoolsRequest {
|
|
16
|
+
|
|
17
|
+
const filterSensitiveLog: (obj: DescribePublicIpv4PoolsRequest) => any;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface PublicIpv4PoolRange {
|
|
21
|
+
|
|
22
|
+
FirstAddress?: string;
|
|
23
|
+
|
|
24
|
+
LastAddress?: string;
|
|
25
|
+
|
|
26
|
+
AddressCount?: number;
|
|
27
|
+
|
|
28
|
+
AvailableAddressCount?: number;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace PublicIpv4PoolRange {
|
|
31
|
+
|
|
32
|
+
const filterSensitiveLog: (obj: PublicIpv4PoolRange) => any;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface PublicIpv4Pool {
|
|
36
|
+
|
|
37
|
+
PoolId?: string;
|
|
38
|
+
|
|
39
|
+
Description?: string;
|
|
40
|
+
|
|
41
|
+
PoolAddressRanges?: PublicIpv4PoolRange[];
|
|
42
|
+
|
|
43
|
+
TotalAddressCount?: number;
|
|
44
|
+
|
|
45
|
+
TotalAvailableAddressCount?: number;
|
|
46
|
+
|
|
47
|
+
NetworkBorderGroup?: string;
|
|
48
|
+
|
|
49
|
+
Tags?: Tag[];
|
|
50
|
+
}
|
|
51
|
+
export declare namespace PublicIpv4Pool {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: PublicIpv4Pool) => any;
|
|
54
|
+
}
|
|
55
|
+
export interface DescribePublicIpv4PoolsResult {
|
|
56
|
+
|
|
57
|
+
PublicIpv4Pools?: PublicIpv4Pool[];
|
|
58
|
+
|
|
59
|
+
NextToken?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace DescribePublicIpv4PoolsResult {
|
|
62
|
+
|
|
63
|
+
const filterSensitiveLog: (obj: DescribePublicIpv4PoolsResult) => any;
|
|
64
|
+
}
|
|
65
|
+
export interface DescribeRegionsRequest {
|
|
66
|
+
|
|
67
|
+
Filters?: Filter[];
|
|
68
|
+
|
|
69
|
+
RegionNames?: string[];
|
|
70
|
+
|
|
71
|
+
DryRun?: boolean;
|
|
72
|
+
|
|
73
|
+
AllRegions?: boolean;
|
|
74
|
+
}
|
|
75
|
+
export declare namespace DescribeRegionsRequest {
|
|
76
|
+
|
|
77
|
+
const filterSensitiveLog: (obj: DescribeRegionsRequest) => any;
|
|
78
|
+
}
|
|
5
79
|
|
|
6
80
|
export interface Region {
|
|
7
81
|
|
|
@@ -2333,6 +2407,8 @@ export interface VpcEndpointConnection {
|
|
|
2333
2407
|
NetworkLoadBalancerArns?: string[];
|
|
2334
2408
|
|
|
2335
2409
|
GatewayLoadBalancerArns?: string[];
|
|
2410
|
+
|
|
2411
|
+
IpAddressType?: IpAddressType | string;
|
|
2336
2412
|
}
|
|
2337
2413
|
export declare namespace VpcEndpointConnection {
|
|
2338
2414
|
|
|
@@ -2484,6 +2560,8 @@ export interface ServiceDetail {
|
|
|
2484
2560
|
Tags?: Tag[];
|
|
2485
2561
|
|
|
2486
2562
|
PrivateDnsNameVerificationState?: DnsNameState | string;
|
|
2563
|
+
|
|
2564
|
+
SupportedIpAddressTypes?: (ServiceConnectivityType | string)[];
|
|
2487
2565
|
}
|
|
2488
2566
|
export declare namespace ServiceDetail {
|
|
2489
2567
|
|
|
@@ -3834,49 +3912,3 @@ export declare namespace GetEbsDefaultKmsKeyIdResult {
|
|
|
3834
3912
|
|
|
3835
3913
|
const filterSensitiveLog: (obj: GetEbsDefaultKmsKeyIdResult) => any;
|
|
3836
3914
|
}
|
|
3837
|
-
export interface GetEbsEncryptionByDefaultRequest {
|
|
3838
|
-
|
|
3839
|
-
DryRun?: boolean;
|
|
3840
|
-
}
|
|
3841
|
-
export declare namespace GetEbsEncryptionByDefaultRequest {
|
|
3842
|
-
|
|
3843
|
-
const filterSensitiveLog: (obj: GetEbsEncryptionByDefaultRequest) => any;
|
|
3844
|
-
}
|
|
3845
|
-
export interface GetEbsEncryptionByDefaultResult {
|
|
3846
|
-
|
|
3847
|
-
EbsEncryptionByDefault?: boolean;
|
|
3848
|
-
}
|
|
3849
|
-
export declare namespace GetEbsEncryptionByDefaultResult {
|
|
3850
|
-
|
|
3851
|
-
const filterSensitiveLog: (obj: GetEbsEncryptionByDefaultResult) => any;
|
|
3852
|
-
}
|
|
3853
|
-
export declare enum PartitionLoadFrequency {
|
|
3854
|
-
DAILY = "daily",
|
|
3855
|
-
MONTHLY = "monthly",
|
|
3856
|
-
NONE = "none",
|
|
3857
|
-
WEEKLY = "weekly"
|
|
3858
|
-
}
|
|
3859
|
-
|
|
3860
|
-
export interface AthenaIntegration {
|
|
3861
|
-
|
|
3862
|
-
IntegrationResultS3DestinationArn: string | undefined;
|
|
3863
|
-
|
|
3864
|
-
PartitionLoadFrequency: PartitionLoadFrequency | string | undefined;
|
|
3865
|
-
|
|
3866
|
-
PartitionStartDate?: Date;
|
|
3867
|
-
|
|
3868
|
-
PartitionEndDate?: Date;
|
|
3869
|
-
}
|
|
3870
|
-
export declare namespace AthenaIntegration {
|
|
3871
|
-
|
|
3872
|
-
const filterSensitiveLog: (obj: AthenaIntegration) => any;
|
|
3873
|
-
}
|
|
3874
|
-
|
|
3875
|
-
export interface IntegrateServices {
|
|
3876
|
-
|
|
3877
|
-
AthenaIntegrations?: AthenaIntegration[];
|
|
3878
|
-
}
|
|
3879
|
-
export declare namespace IntegrateServices {
|
|
3880
|
-
|
|
3881
|
-
const filterSensitiveLog: (obj: IntegrateServices) => any;
|
|
3882
|
-
}
|