@aws-sdk/client-ec2 3.44.0 → 3.47.1
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 +48 -0
- package/README.md +3 -3
- package/dist-cjs/EC2.js +15 -0
- package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +2 -1
- package/dist-cjs/commands/GetLaunchTemplateDataCommand.js +1 -2
- package/dist-cjs/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +1 -32
- package/dist-cjs/models/models_1.js +10 -11
- package/dist-cjs/models/models_2.js +16 -12
- package/dist-cjs/models/models_3.js +17 -24
- package/dist-cjs/models/models_4.js +24 -24
- package/dist-cjs/models/models_5.js +36 -36
- package/dist-cjs/models/models_6.js +32 -2
- package/dist-cjs/protocols/Aws_ec2.js +123 -13
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-cjs/waiters/index.js +1 -0
- package/dist-cjs/waiters/waitForInternetGatewayExists.js +43 -0
- package/dist-es/EC2.js +15 -0
- package/dist-es/commands/GetIpamResourceCidrsCommand.js +2 -1
- package/dist-es/commands/GetLaunchTemplateDataCommand.js +1 -2
- package/dist-es/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +1 -32
- package/dist-es/models/models_1.js +5 -4
- package/dist-es/models/models_2.js +8 -4
- package/dist-es/models/models_3.js +9 -12
- package/dist-es/models/models_4.js +12 -12
- package/dist-es/models/models_5.js +20 -20
- package/dist-es/models/models_6.js +20 -0
- package/dist-es/protocols/Aws_ec2.js +112 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForInternetGatewayExists.js +58 -0
- package/dist-types/EC2.d.ts +15 -5
- package/dist-types/EC2Client.d.ts +11 -6
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -1
- package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +2 -1
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -2
- package/dist-types/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/models/models_1.d.ts +32 -38
- package/dist-types/models/models_2.d.ts +46 -40
- package/dist-types/models/models_3.d.ts +86 -88
- package/dist-types/models/models_4.d.ts +99 -115
- package/dist-types/models/models_5.d.ts +163 -144
- package/dist-types/models/models_6.d.ts +149 -8
- package/dist-types/protocols/Aws_ec2.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/EC2.d.ts +5 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -3
- package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +10 -17
- package/dist-types/ts3.4/models/models_2.d.ts +23 -19
- package/dist-types/ts3.4/models/models_3.d.ts +25 -46
- package/dist-types/ts3.4/models/models_4.d.ts +50 -60
- package/dist-types/ts3.4/models/models_5.d.ts +86 -64
- package/dist-types/ts3.4/models/models_6.d.ts +62 -3
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +7 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForInternetGatewayExists.d.ts +14 -0
- package/package.json +41 -48
|
@@ -1357,6 +1357,10 @@ export declare enum LaunchTemplateHttpTokensState {
|
|
|
1357
1357
|
optional = "optional",
|
|
1358
1358
|
required = "required"
|
|
1359
1359
|
}
|
|
1360
|
+
export declare enum LaunchTemplateInstanceMetadataTagsState {
|
|
1361
|
+
disabled = "disabled",
|
|
1362
|
+
enabled = "enabled"
|
|
1363
|
+
}
|
|
1360
1364
|
|
|
1361
1365
|
export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
1362
1366
|
|
|
@@ -1367,6 +1371,8 @@ export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
|
1367
1371
|
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | string;
|
|
1368
1372
|
|
|
1369
1373
|
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | string;
|
|
1374
|
+
|
|
1375
|
+
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | string;
|
|
1370
1376
|
}
|
|
1371
1377
|
export declare namespace LaunchTemplateInstanceMetadataOptionsRequest {
|
|
1372
1378
|
|
|
@@ -1844,6 +1850,8 @@ export interface LaunchTemplateInstanceMetadataOptions {
|
|
|
1844
1850
|
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | string;
|
|
1845
1851
|
|
|
1846
1852
|
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | string;
|
|
1853
|
+
|
|
1854
|
+
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | string;
|
|
1847
1855
|
}
|
|
1848
1856
|
export declare namespace LaunchTemplateInstanceMetadataOptions {
|
|
1849
1857
|
|
|
@@ -2843,6 +2851,8 @@ export interface PlacementGroup {
|
|
|
2843
2851
|
GroupId?: string;
|
|
2844
2852
|
|
|
2845
2853
|
Tags?: Tag[];
|
|
2854
|
+
|
|
2855
|
+
GroupArn?: string;
|
|
2846
2856
|
}
|
|
2847
2857
|
export declare namespace PlacementGroup {
|
|
2848
2858
|
|
|
@@ -3919,20 +3929,3 @@ export declare namespace CreateTransitGatewayConnectPeerRequest {
|
|
|
3919
3929
|
const filterSensitiveLog: (obj: CreateTransitGatewayConnectPeerRequest) => any;
|
|
3920
3930
|
}
|
|
3921
3931
|
export declare type BgpStatus = "down" | "up";
|
|
3922
|
-
|
|
3923
|
-
export interface TransitGatewayAttachmentBgpConfiguration {
|
|
3924
|
-
|
|
3925
|
-
TransitGatewayAsn?: number;
|
|
3926
|
-
|
|
3927
|
-
PeerAsn?: number;
|
|
3928
|
-
|
|
3929
|
-
TransitGatewayAddress?: string;
|
|
3930
|
-
|
|
3931
|
-
PeerAddress?: string;
|
|
3932
|
-
|
|
3933
|
-
BgpStatus?: BgpStatus | string;
|
|
3934
|
-
}
|
|
3935
|
-
export declare namespace TransitGatewayAttachmentBgpConfiguration {
|
|
3936
|
-
|
|
3937
|
-
const filterSensitiveLog: (obj: TransitGatewayAttachmentBgpConfiguration) => any;
|
|
3938
|
-
}
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, ApplianceModeSupportValue, AssociationStatus, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthenticationType, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, DnsSupportValue, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, GatewayType, InstanceEventWindowState, Ipv6SupportValue, Tag, TagSpecification, Tenancy, TransitGatewayAttachmentResourceType, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TransportProtocol, UnsuccessfulItem, VolumeAttachment, Vpc, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import { DiskImageFormat, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, PlatformValues, ProtocolValue, SubnetCidrReservation, TransitGateway,
|
|
2
|
+
import { BgpStatus, DiskImageFormat, GroupIdentifier, Ipam, IpamPool, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, PlatformValues, ProtocolValue, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
|
|
3
|
+
|
|
4
|
+
export interface TransitGatewayAttachmentBgpConfiguration {
|
|
5
|
+
|
|
6
|
+
TransitGatewayAsn?: number;
|
|
7
|
+
|
|
8
|
+
PeerAsn?: number;
|
|
9
|
+
|
|
10
|
+
TransitGatewayAddress?: string;
|
|
11
|
+
|
|
12
|
+
PeerAddress?: string;
|
|
13
|
+
|
|
14
|
+
BgpStatus?: BgpStatus | string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace TransitGatewayAttachmentBgpConfiguration {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: TransitGatewayAttachmentBgpConfiguration) => any;
|
|
19
|
+
}
|
|
3
20
|
|
|
4
21
|
export interface TransitGatewayConnectPeerConfiguration {
|
|
5
22
|
|
|
@@ -655,6 +672,9 @@ export declare namespace CreateVpcEndpointServiceConfigurationRequest {
|
|
|
655
672
|
|
|
656
673
|
const filterSensitiveLog: (obj: CreateVpcEndpointServiceConfigurationRequest) => any;
|
|
657
674
|
}
|
|
675
|
+
export declare enum PayerResponsibility {
|
|
676
|
+
ServiceOwner = "ServiceOwner"
|
|
677
|
+
}
|
|
658
678
|
export declare enum DnsNameState {
|
|
659
679
|
Failed = "failed",
|
|
660
680
|
PendingVerification = "pendingVerification",
|
|
@@ -723,6 +743,8 @@ export interface ServiceConfiguration {
|
|
|
723
743
|
|
|
724
744
|
PrivateDnsNameConfiguration?: PrivateDnsNameConfiguration;
|
|
725
745
|
|
|
746
|
+
PayerResponsibility?: PayerResponsibility | string;
|
|
747
|
+
|
|
726
748
|
Tags?: Tag[];
|
|
727
749
|
}
|
|
728
750
|
export declare namespace ServiceConfiguration {
|
|
@@ -3423,21 +3445,3 @@ export declare namespace ImportInstanceTaskDetails {
|
|
|
3423
3445
|
|
|
3424
3446
|
const filterSensitiveLog: (obj: ImportInstanceTaskDetails) => any;
|
|
3425
3447
|
}
|
|
3426
|
-
|
|
3427
|
-
export interface ImportVolumeTaskDetails {
|
|
3428
|
-
|
|
3429
|
-
AvailabilityZone?: string;
|
|
3430
|
-
|
|
3431
|
-
BytesConverted?: number;
|
|
3432
|
-
|
|
3433
|
-
Description?: string;
|
|
3434
|
-
|
|
3435
|
-
Image?: DiskImageDescription;
|
|
3436
|
-
|
|
3437
|
-
Volume?: DiskImageVolumeDescription;
|
|
3438
|
-
}
|
|
3439
|
-
export declare namespace ImportVolumeTaskDetails {
|
|
3440
|
-
|
|
3441
|
-
const filterSensitiveLog: (obj: ImportVolumeTaskDetails) => any;
|
|
3442
|
-
}
|
|
3443
|
-
export declare type ConversionTaskState = "active" | "cancelled" | "cancelling" | "completed";
|
|
@@ -1,6 +1,24 @@
|
|
|
1
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, ReservedInstancesListing, Tag, Tenancy } from "./models_0";
|
|
2
2
|
import { BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, DefaultTargetCapacityType, DestinationFileFormat, 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, ReplaceRootVolumeTask, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType } from "./models_1";
|
|
3
|
-
import {
|
|
3
|
+
import { DiskImageDescription, DiskImageVolumeDescription, Filter, FleetStateCode, IdFormat, ImportInstanceTaskDetails, InstanceTagNotificationAttribute } from "./models_2";
|
|
4
|
+
|
|
5
|
+
export interface ImportVolumeTaskDetails {
|
|
6
|
+
|
|
7
|
+
AvailabilityZone?: string;
|
|
8
|
+
|
|
9
|
+
BytesConverted?: number;
|
|
10
|
+
|
|
11
|
+
Description?: string;
|
|
12
|
+
|
|
13
|
+
Image?: DiskImageDescription;
|
|
14
|
+
|
|
15
|
+
Volume?: DiskImageVolumeDescription;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace ImportVolumeTaskDetails {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: ImportVolumeTaskDetails) => any;
|
|
20
|
+
}
|
|
21
|
+
export declare type ConversionTaskState = "active" | "cancelled" | "cancelling" | "completed";
|
|
4
22
|
|
|
5
23
|
export interface ConversionTask {
|
|
6
24
|
|
|
@@ -1749,6 +1767,10 @@ export declare enum HttpTokensState {
|
|
|
1749
1767
|
optional = "optional",
|
|
1750
1768
|
required = "required"
|
|
1751
1769
|
}
|
|
1770
|
+
export declare enum InstanceMetadataTagsState {
|
|
1771
|
+
disabled = "disabled",
|
|
1772
|
+
enabled = "enabled"
|
|
1773
|
+
}
|
|
1752
1774
|
export declare type InstanceMetadataOptionsState = "applied" | "pending";
|
|
1753
1775
|
|
|
1754
1776
|
export interface InstanceMetadataOptionsResponse {
|
|
@@ -1762,6 +1784,8 @@ export interface InstanceMetadataOptionsResponse {
|
|
|
1762
1784
|
HttpEndpoint?: InstanceMetadataEndpointState | string;
|
|
1763
1785
|
|
|
1764
1786
|
HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
|
|
1787
|
+
|
|
1788
|
+
InstanceMetadataTags?: InstanceMetadataTagsState | string;
|
|
1765
1789
|
}
|
|
1766
1790
|
export declare namespace InstanceMetadataOptionsResponse {
|
|
1767
1791
|
|
|
@@ -3938,48 +3962,3 @@ export declare namespace ReservedInstancesConfiguration {
|
|
|
3938
3962
|
|
|
3939
3963
|
const filterSensitiveLog: (obj: ReservedInstancesConfiguration) => any;
|
|
3940
3964
|
}
|
|
3941
|
-
|
|
3942
|
-
export interface ReservedInstancesModificationResult {
|
|
3943
|
-
|
|
3944
|
-
ReservedInstancesId?: string;
|
|
3945
|
-
|
|
3946
|
-
TargetConfiguration?: ReservedInstancesConfiguration;
|
|
3947
|
-
}
|
|
3948
|
-
export declare namespace ReservedInstancesModificationResult {
|
|
3949
|
-
|
|
3950
|
-
const filterSensitiveLog: (obj: ReservedInstancesModificationResult) => any;
|
|
3951
|
-
}
|
|
3952
|
-
|
|
3953
|
-
export interface ReservedInstancesId {
|
|
3954
|
-
|
|
3955
|
-
ReservedInstancesId?: string;
|
|
3956
|
-
}
|
|
3957
|
-
export declare namespace ReservedInstancesId {
|
|
3958
|
-
|
|
3959
|
-
const filterSensitiveLog: (obj: ReservedInstancesId) => any;
|
|
3960
|
-
}
|
|
3961
|
-
|
|
3962
|
-
export interface ReservedInstancesModification {
|
|
3963
|
-
|
|
3964
|
-
ClientToken?: string;
|
|
3965
|
-
|
|
3966
|
-
CreateDate?: Date;
|
|
3967
|
-
|
|
3968
|
-
EffectiveDate?: Date;
|
|
3969
|
-
|
|
3970
|
-
ModificationResults?: ReservedInstancesModificationResult[];
|
|
3971
|
-
|
|
3972
|
-
ReservedInstancesIds?: ReservedInstancesId[];
|
|
3973
|
-
|
|
3974
|
-
ReservedInstancesModificationId?: string;
|
|
3975
|
-
|
|
3976
|
-
Status?: string;
|
|
3977
|
-
|
|
3978
|
-
StatusMessage?: string;
|
|
3979
|
-
|
|
3980
|
-
UpdateDate?: Date;
|
|
3981
|
-
}
|
|
3982
|
-
export declare namespace ReservedInstancesModification {
|
|
3983
|
-
|
|
3984
|
-
const filterSensitiveLog: (obj: ReservedInstancesModification) => any;
|
|
3985
|
-
}
|
|
@@ -1,7 +1,52 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, IpPermission, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest,
|
|
3
|
-
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, IpamPoolCidr, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
|
-
import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringCharge,
|
|
2
|
+
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InstanceRequirementsRequest, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, RequestIpamResourceTag, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, VolumeType } from "./models_1";
|
|
3
|
+
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, IpamPoolCidr, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
|
+
import { ArchitectureType, AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastSnapshotRestoreStateCode, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, ProductCode, RecurringCharge, ReservedInstancesConfiguration, RIProductDescription, Scope, VirtualizationType } from "./models_3";
|
|
5
|
+
|
|
6
|
+
export interface ReservedInstancesModificationResult {
|
|
7
|
+
|
|
8
|
+
ReservedInstancesId?: string;
|
|
9
|
+
|
|
10
|
+
TargetConfiguration?: ReservedInstancesConfiguration;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace ReservedInstancesModificationResult {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: ReservedInstancesModificationResult) => any;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ReservedInstancesId {
|
|
18
|
+
|
|
19
|
+
ReservedInstancesId?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace ReservedInstancesId {
|
|
22
|
+
|
|
23
|
+
const filterSensitiveLog: (obj: ReservedInstancesId) => any;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface ReservedInstancesModification {
|
|
27
|
+
|
|
28
|
+
ClientToken?: string;
|
|
29
|
+
|
|
30
|
+
CreateDate?: Date;
|
|
31
|
+
|
|
32
|
+
EffectiveDate?: Date;
|
|
33
|
+
|
|
34
|
+
ModificationResults?: ReservedInstancesModificationResult[];
|
|
35
|
+
|
|
36
|
+
ReservedInstancesIds?: ReservedInstancesId[];
|
|
37
|
+
|
|
38
|
+
ReservedInstancesModificationId?: string;
|
|
39
|
+
|
|
40
|
+
Status?: string;
|
|
41
|
+
|
|
42
|
+
StatusMessage?: string;
|
|
43
|
+
|
|
44
|
+
UpdateDate?: Date;
|
|
45
|
+
}
|
|
46
|
+
export declare namespace ReservedInstancesModification {
|
|
47
|
+
|
|
48
|
+
const filterSensitiveLog: (obj: ReservedInstancesModification) => any;
|
|
49
|
+
}
|
|
5
50
|
|
|
6
51
|
export interface DescribeReservedInstancesModificationsResult {
|
|
7
52
|
|
|
@@ -2243,6 +2288,8 @@ export interface ServiceDetail {
|
|
|
2243
2288
|
|
|
2244
2289
|
ManagesVpcEndpoints?: boolean;
|
|
2245
2290
|
|
|
2291
|
+
PayerResponsibility?: PayerResponsibility | string;
|
|
2292
|
+
|
|
2246
2293
|
Tags?: Tag[];
|
|
2247
2294
|
|
|
2248
2295
|
PrivateDnsNameVerificationState?: DnsNameState | string;
|
|
@@ -3854,60 +3901,3 @@ export declare enum IpamManagementState {
|
|
|
3854
3901
|
managed = "managed",
|
|
3855
3902
|
unmanaged = "unmanaged"
|
|
3856
3903
|
}
|
|
3857
|
-
|
|
3858
|
-
export interface IpamResourceCidr {
|
|
3859
|
-
|
|
3860
|
-
IpamId?: string;
|
|
3861
|
-
|
|
3862
|
-
IpamScopeId?: string;
|
|
3863
|
-
|
|
3864
|
-
IpamPoolId?: string;
|
|
3865
|
-
|
|
3866
|
-
ResourceRegion?: string;
|
|
3867
|
-
|
|
3868
|
-
ResourceOwnerId?: string;
|
|
3869
|
-
|
|
3870
|
-
ResourceId?: string;
|
|
3871
|
-
|
|
3872
|
-
ResourceName?: string;
|
|
3873
|
-
|
|
3874
|
-
ResourceCidr?: string;
|
|
3875
|
-
|
|
3876
|
-
ResourceType?: IpamResourceType | string;
|
|
3877
|
-
|
|
3878
|
-
ResourceTags?: IpamResourceTag[];
|
|
3879
|
-
|
|
3880
|
-
IpUsage?: number;
|
|
3881
|
-
|
|
3882
|
-
ComplianceStatus?: IpamComplianceStatus | string;
|
|
3883
|
-
|
|
3884
|
-
ManagementState?: IpamManagementState | string;
|
|
3885
|
-
|
|
3886
|
-
OverlapStatus?: IpamOverlapStatus | string;
|
|
3887
|
-
|
|
3888
|
-
VpcId?: string;
|
|
3889
|
-
}
|
|
3890
|
-
export declare namespace IpamResourceCidr {
|
|
3891
|
-
|
|
3892
|
-
const filterSensitiveLog: (obj: IpamResourceCidr) => any;
|
|
3893
|
-
}
|
|
3894
|
-
export interface GetIpamResourceCidrsResult {
|
|
3895
|
-
|
|
3896
|
-
NextToken?: string;
|
|
3897
|
-
|
|
3898
|
-
IpamResourceCidrs?: IpamResourceCidr[];
|
|
3899
|
-
}
|
|
3900
|
-
export declare namespace GetIpamResourceCidrsResult {
|
|
3901
|
-
|
|
3902
|
-
const filterSensitiveLog: (obj: GetIpamResourceCidrsResult) => any;
|
|
3903
|
-
}
|
|
3904
|
-
export interface GetLaunchTemplateDataRequest {
|
|
3905
|
-
|
|
3906
|
-
DryRun?: boolean;
|
|
3907
|
-
|
|
3908
|
-
InstanceId: string | undefined;
|
|
3909
|
-
}
|
|
3910
|
-
export declare namespace GetLaunchTemplateDataRequest {
|
|
3911
|
-
|
|
3912
|
-
const filterSensitiveLog: (obj: GetLaunchTemplateDataRequest) => any;
|
|
3913
|
-
}
|
|
@@ -1,8 +1,65 @@
|
|
|
1
1
|
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions, ClientVpnAuthorizationRuleStatus, ConnectionLogOptions, CurrencyCodeValues, DnsSupportValue, EndDateType, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, Ipv6SupportValue, PortRange, RouteTableAssociationState, SelfServicePortal, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem } from "./models_0";
|
|
2
|
-
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamScope, LaunchTemplate, ManagedPrefixList,
|
|
3
|
-
import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
|
|
4
|
-
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange, ReservedInstancesConfiguration, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_3";
|
|
5
|
-
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification,
|
|
2
|
+
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior, SnapshotState, SpotInstanceType, SubnetCidrReservation, TargetCapacitySpecificationRequest, TargetCapacityUnitType, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, VolumeType, VpnEcmpSupportValue } from "./models_1";
|
|
3
|
+
import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
|
|
4
|
+
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange, ReservedInstancesConfiguration, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_3";
|
|
5
|
+
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification, IpamComplianceStatus, IpamManagementState, IpamOverlapStatus, IpamResourceType, LaunchTemplateConfig, Purchase, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification } from "./models_4";
|
|
6
|
+
|
|
7
|
+
export interface IpamResourceCidr {
|
|
8
|
+
|
|
9
|
+
IpamId?: string;
|
|
10
|
+
|
|
11
|
+
IpamScopeId?: string;
|
|
12
|
+
|
|
13
|
+
IpamPoolId?: string;
|
|
14
|
+
|
|
15
|
+
ResourceRegion?: string;
|
|
16
|
+
|
|
17
|
+
ResourceOwnerId?: string;
|
|
18
|
+
|
|
19
|
+
ResourceId?: string;
|
|
20
|
+
|
|
21
|
+
ResourceName?: string;
|
|
22
|
+
|
|
23
|
+
ResourceCidr?: string;
|
|
24
|
+
|
|
25
|
+
ResourceType?: IpamResourceType | string;
|
|
26
|
+
|
|
27
|
+
ResourceTags?: IpamResourceTag[];
|
|
28
|
+
|
|
29
|
+
IpUsage?: number;
|
|
30
|
+
|
|
31
|
+
ComplianceStatus?: IpamComplianceStatus | string;
|
|
32
|
+
|
|
33
|
+
ManagementState?: IpamManagementState | string;
|
|
34
|
+
|
|
35
|
+
OverlapStatus?: IpamOverlapStatus | string;
|
|
36
|
+
|
|
37
|
+
VpcId?: string;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace IpamResourceCidr {
|
|
40
|
+
|
|
41
|
+
const filterSensitiveLog: (obj: IpamResourceCidr) => any;
|
|
42
|
+
}
|
|
43
|
+
export interface GetIpamResourceCidrsResult {
|
|
44
|
+
|
|
45
|
+
NextToken?: string;
|
|
46
|
+
|
|
47
|
+
IpamResourceCidrs?: IpamResourceCidr[];
|
|
48
|
+
}
|
|
49
|
+
export declare namespace GetIpamResourceCidrsResult {
|
|
50
|
+
|
|
51
|
+
const filterSensitiveLog: (obj: GetIpamResourceCidrsResult) => any;
|
|
52
|
+
}
|
|
53
|
+
export interface GetLaunchTemplateDataRequest {
|
|
54
|
+
|
|
55
|
+
DryRun?: boolean;
|
|
56
|
+
|
|
57
|
+
InstanceId: string | undefined;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace GetLaunchTemplateDataRequest {
|
|
60
|
+
|
|
61
|
+
const filterSensitiveLog: (obj: GetLaunchTemplateDataRequest) => any;
|
|
62
|
+
}
|
|
6
63
|
export interface GetLaunchTemplateDataResult {
|
|
7
64
|
|
|
8
65
|
LaunchTemplateData?: ResponseLaunchTemplateData;
|
|
@@ -1563,6 +1620,8 @@ export interface ModifyInstanceMetadataOptionsRequest {
|
|
|
1563
1620
|
DryRun?: boolean;
|
|
1564
1621
|
|
|
1565
1622
|
HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
|
|
1623
|
+
|
|
1624
|
+
InstanceMetadataTags?: InstanceMetadataTagsState | string;
|
|
1566
1625
|
}
|
|
1567
1626
|
export declare namespace ModifyInstanceMetadataOptionsRequest {
|
|
1568
1627
|
|
|
@@ -2370,6 +2429,26 @@ export declare namespace ModifyVpcEndpointServiceConfigurationResult {
|
|
|
2370
2429
|
|
|
2371
2430
|
const filterSensitiveLog: (obj: ModifyVpcEndpointServiceConfigurationResult) => any;
|
|
2372
2431
|
}
|
|
2432
|
+
export interface ModifyVpcEndpointServicePayerResponsibilityRequest {
|
|
2433
|
+
|
|
2434
|
+
DryRun?: boolean;
|
|
2435
|
+
|
|
2436
|
+
ServiceId: string | undefined;
|
|
2437
|
+
|
|
2438
|
+
PayerResponsibility: PayerResponsibility | string | undefined;
|
|
2439
|
+
}
|
|
2440
|
+
export declare namespace ModifyVpcEndpointServicePayerResponsibilityRequest {
|
|
2441
|
+
|
|
2442
|
+
const filterSensitiveLog: (obj: ModifyVpcEndpointServicePayerResponsibilityRequest) => any;
|
|
2443
|
+
}
|
|
2444
|
+
export interface ModifyVpcEndpointServicePayerResponsibilityResult {
|
|
2445
|
+
|
|
2446
|
+
ReturnValue?: boolean;
|
|
2447
|
+
}
|
|
2448
|
+
export declare namespace ModifyVpcEndpointServicePayerResponsibilityResult {
|
|
2449
|
+
|
|
2450
|
+
const filterSensitiveLog: (obj: ModifyVpcEndpointServicePayerResponsibilityResult) => any;
|
|
2451
|
+
}
|
|
2373
2452
|
export interface ModifyVpcEndpointServicePermissionsRequest {
|
|
2374
2453
|
|
|
2375
2454
|
DryRun?: boolean;
|
|
@@ -2656,11 +2735,11 @@ export interface MoveByoipCidrToIpamRequest {
|
|
|
2656
2735
|
|
|
2657
2736
|
DryRun?: boolean;
|
|
2658
2737
|
|
|
2659
|
-
Cidr
|
|
2738
|
+
Cidr: string | undefined;
|
|
2660
2739
|
|
|
2661
|
-
IpamPoolId
|
|
2740
|
+
IpamPoolId: string | undefined;
|
|
2662
2741
|
|
|
2663
|
-
IpamPoolOwner
|
|
2742
|
+
IpamPoolOwner: string | undefined;
|
|
2664
2743
|
}
|
|
2665
2744
|
export declare namespace MoveByoipCidrToIpamRequest {
|
|
2666
2745
|
|
|
@@ -3773,60 +3852,3 @@ export declare namespace CpuOptionsRequest {
|
|
|
3773
3852
|
|
|
3774
3853
|
const filterSensitiveLog: (obj: CpuOptionsRequest) => any;
|
|
3775
3854
|
}
|
|
3776
|
-
|
|
3777
|
-
export interface ElasticInferenceAccelerator {
|
|
3778
|
-
|
|
3779
|
-
Type: string | undefined;
|
|
3780
|
-
|
|
3781
|
-
Count?: number;
|
|
3782
|
-
}
|
|
3783
|
-
export declare namespace ElasticInferenceAccelerator {
|
|
3784
|
-
|
|
3785
|
-
const filterSensitiveLog: (obj: ElasticInferenceAccelerator) => any;
|
|
3786
|
-
}
|
|
3787
|
-
|
|
3788
|
-
export interface EnclaveOptionsRequest {
|
|
3789
|
-
|
|
3790
|
-
Enabled?: boolean;
|
|
3791
|
-
}
|
|
3792
|
-
export declare namespace EnclaveOptionsRequest {
|
|
3793
|
-
|
|
3794
|
-
const filterSensitiveLog: (obj: EnclaveOptionsRequest) => any;
|
|
3795
|
-
}
|
|
3796
|
-
|
|
3797
|
-
export interface HibernationOptionsRequest {
|
|
3798
|
-
|
|
3799
|
-
Configured?: boolean;
|
|
3800
|
-
}
|
|
3801
|
-
export declare namespace HibernationOptionsRequest {
|
|
3802
|
-
|
|
3803
|
-
const filterSensitiveLog: (obj: HibernationOptionsRequest) => any;
|
|
3804
|
-
}
|
|
3805
|
-
|
|
3806
|
-
export interface SpotMarketOptions {
|
|
3807
|
-
|
|
3808
|
-
MaxPrice?: string;
|
|
3809
|
-
|
|
3810
|
-
SpotInstanceType?: SpotInstanceType | string;
|
|
3811
|
-
|
|
3812
|
-
BlockDurationMinutes?: number;
|
|
3813
|
-
|
|
3814
|
-
ValidUntil?: Date;
|
|
3815
|
-
|
|
3816
|
-
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
|
|
3817
|
-
}
|
|
3818
|
-
export declare namespace SpotMarketOptions {
|
|
3819
|
-
|
|
3820
|
-
const filterSensitiveLog: (obj: SpotMarketOptions) => any;
|
|
3821
|
-
}
|
|
3822
|
-
|
|
3823
|
-
export interface InstanceMarketOptionsRequest {
|
|
3824
|
-
|
|
3825
|
-
MarketType?: MarketType | string;
|
|
3826
|
-
|
|
3827
|
-
SpotOptions?: SpotMarketOptions;
|
|
3828
|
-
}
|
|
3829
|
-
export declare namespace InstanceMarketOptionsRequest {
|
|
3830
|
-
|
|
3831
|
-
const filterSensitiveLog: (obj: InstanceMarketOptionsRequest) => any;
|
|
3832
|
-
}
|
|
@@ -1,9 +1,66 @@
|
|
|
1
1
|
import { _InstanceType, ByoipCidr, HostnameType, IamInstanceProfileSpecification, IpPermission, TagSpecification, TransitGatewayAttachmentResourceType } from "./models_0";
|
|
2
|
-
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceIpv6Address, LocalGatewayRoute, Placement, ShutdownBehavior } from "./models_1";
|
|
2
|
+
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, MarketType, Placement, ShutdownBehavior, SpotInstanceType } from "./models_1";
|
|
3
3
|
import { ClientVpnConnectionStatus, Filter, TransitGatewayRoute } from "./models_2";
|
|
4
|
-
import { HttpTokensState, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_3";
|
|
4
|
+
import { HttpTokensState, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_3";
|
|
5
5
|
import { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled } from "./models_4";
|
|
6
|
-
import { CapacityReservationSpecification, CpuOptionsRequest,
|
|
6
|
+
import { CapacityReservationSpecification, CpuOptionsRequest, InstanceMonitoring } from "./models_5";
|
|
7
|
+
|
|
8
|
+
export interface ElasticInferenceAccelerator {
|
|
9
|
+
|
|
10
|
+
Type: string | undefined;
|
|
11
|
+
|
|
12
|
+
Count?: number;
|
|
13
|
+
}
|
|
14
|
+
export declare namespace ElasticInferenceAccelerator {
|
|
15
|
+
|
|
16
|
+
const filterSensitiveLog: (obj: ElasticInferenceAccelerator) => any;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface EnclaveOptionsRequest {
|
|
20
|
+
|
|
21
|
+
Enabled?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace EnclaveOptionsRequest {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: EnclaveOptionsRequest) => any;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface HibernationOptionsRequest {
|
|
29
|
+
|
|
30
|
+
Configured?: boolean;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace HibernationOptionsRequest {
|
|
33
|
+
|
|
34
|
+
const filterSensitiveLog: (obj: HibernationOptionsRequest) => any;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface SpotMarketOptions {
|
|
38
|
+
|
|
39
|
+
MaxPrice?: string;
|
|
40
|
+
|
|
41
|
+
SpotInstanceType?: SpotInstanceType | string;
|
|
42
|
+
|
|
43
|
+
BlockDurationMinutes?: number;
|
|
44
|
+
|
|
45
|
+
ValidUntil?: Date;
|
|
46
|
+
|
|
47
|
+
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace SpotMarketOptions {
|
|
50
|
+
|
|
51
|
+
const filterSensitiveLog: (obj: SpotMarketOptions) => any;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface InstanceMarketOptionsRequest {
|
|
55
|
+
|
|
56
|
+
MarketType?: MarketType | string;
|
|
57
|
+
|
|
58
|
+
SpotOptions?: SpotMarketOptions;
|
|
59
|
+
}
|
|
60
|
+
export declare namespace InstanceMarketOptionsRequest {
|
|
61
|
+
|
|
62
|
+
const filterSensitiveLog: (obj: InstanceMarketOptionsRequest) => any;
|
|
63
|
+
}
|
|
7
64
|
|
|
8
65
|
export interface LaunchTemplateSpecification {
|
|
9
66
|
|
|
@@ -36,6 +93,8 @@ export interface InstanceMetadataOptionsRequest {
|
|
|
36
93
|
HttpEndpoint?: InstanceMetadataEndpointState | string;
|
|
37
94
|
|
|
38
95
|
HttpProtocolIpv6?: InstanceMetadataProtocolState | string;
|
|
96
|
+
|
|
97
|
+
InstanceMetadataTags?: InstanceMetadataTagsState | string;
|
|
39
98
|
}
|
|
40
99
|
export declare namespace InstanceMetadataOptionsRequest {
|
|
41
100
|
|
|
@@ -444,6 +444,7 @@ import { ModifyVpcAttributeCommandInput, ModifyVpcAttributeCommandOutput } from
|
|
|
444
444
|
import { ModifyVpcEndpointCommandInput, ModifyVpcEndpointCommandOutput } from "../commands/ModifyVpcEndpointCommand";
|
|
445
445
|
import { ModifyVpcEndpointConnectionNotificationCommandInput, ModifyVpcEndpointConnectionNotificationCommandOutput } from "../commands/ModifyVpcEndpointConnectionNotificationCommand";
|
|
446
446
|
import { ModifyVpcEndpointServiceConfigurationCommandInput, ModifyVpcEndpointServiceConfigurationCommandOutput } from "../commands/ModifyVpcEndpointServiceConfigurationCommand";
|
|
447
|
+
import { ModifyVpcEndpointServicePayerResponsibilityCommandInput, ModifyVpcEndpointServicePayerResponsibilityCommandOutput } from "../commands/ModifyVpcEndpointServicePayerResponsibilityCommand";
|
|
447
448
|
import { ModifyVpcEndpointServicePermissionsCommandInput, ModifyVpcEndpointServicePermissionsCommandOutput } from "../commands/ModifyVpcEndpointServicePermissionsCommand";
|
|
448
449
|
import { ModifyVpcPeeringConnectionOptionsCommandInput, ModifyVpcPeeringConnectionOptionsCommandOutput } from "../commands/ModifyVpcPeeringConnectionOptionsCommand";
|
|
449
450
|
import { ModifyVpcTenancyCommandInput, ModifyVpcTenancyCommandOutput } from "../commands/ModifyVpcTenancyCommand";
|
|
@@ -959,6 +960,7 @@ export declare const serializeAws_ec2ModifyVpcAttributeCommand: (input: ModifyVp
|
|
|
959
960
|
export declare const serializeAws_ec2ModifyVpcEndpointCommand: (input: ModifyVpcEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
960
961
|
export declare const serializeAws_ec2ModifyVpcEndpointConnectionNotificationCommand: (input: ModifyVpcEndpointConnectionNotificationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
961
962
|
export declare const serializeAws_ec2ModifyVpcEndpointServiceConfigurationCommand: (input: ModifyVpcEndpointServiceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
963
|
+
export declare const serializeAws_ec2ModifyVpcEndpointServicePayerResponsibilityCommand: (input: ModifyVpcEndpointServicePayerResponsibilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
962
964
|
export declare const serializeAws_ec2ModifyVpcEndpointServicePermissionsCommand: (input: ModifyVpcEndpointServicePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
963
965
|
export declare const serializeAws_ec2ModifyVpcPeeringConnectionOptionsCommand: (input: ModifyVpcPeeringConnectionOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
964
966
|
export declare const serializeAws_ec2ModifyVpcTenancyCommand: (input: ModifyVpcTenancyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -1474,6 +1476,7 @@ export declare const deserializeAws_ec2ModifyVpcAttributeCommand: (output: __Htt
|
|
|
1474
1476
|
export declare const deserializeAws_ec2ModifyVpcEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcEndpointCommandOutput>;
|
|
1475
1477
|
export declare const deserializeAws_ec2ModifyVpcEndpointConnectionNotificationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcEndpointConnectionNotificationCommandOutput>;
|
|
1476
1478
|
export declare const deserializeAws_ec2ModifyVpcEndpointServiceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcEndpointServiceConfigurationCommandOutput>;
|
|
1479
|
+
export declare const deserializeAws_ec2ModifyVpcEndpointServicePayerResponsibilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcEndpointServicePayerResponsibilityCommandOutput>;
|
|
1477
1480
|
export declare const deserializeAws_ec2ModifyVpcEndpointServicePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcEndpointServicePermissionsCommandOutput>;
|
|
1478
1481
|
export declare const deserializeAws_ec2ModifyVpcPeeringConnectionOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcPeeringConnectionOptionsCommandOutput>;
|
|
1479
1482
|
export declare const deserializeAws_ec2ModifyVpcTenancyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyVpcTenancyCommandOutput>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { EC2ClientConfig } from "./EC2Client";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|