@aws-sdk/client-ec2 3.989.0 → 3.991.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/schemas/schemas_0.js +147 -104
- package/dist-es/schemas/schemas_0.js +86 -43
- package/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRegionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +2 -1
- package/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +2 -1
- package/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTransitGatewayCommand.d.ts +2 -1
- package/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/dist-types/models/models_3.d.ts +34 -72
- package/dist-types/models/models_4.d.ts +90 -89
- package/dist-types/models/models_5.d.ts +88 -33
- package/dist-types/models/models_6.d.ts +33 -48
- package/dist-types/models/models_7.d.ts +48 -1
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_3.d.ts +8 -16
- package/dist-types/ts3.4/models/models_4.d.ts +21 -23
- package/dist-types/ts3.4/models/models_5.d.ts +22 -11
- package/dist-types/ts3.4/models/models_6.d.ts +11 -14
- package/dist-types/ts3.4/models/models_7.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +6 -6
|
@@ -1628,6 +1628,17 @@ export interface DescribeAvailabilityZonesRequest {
|
|
|
1628
1628
|
*/
|
|
1629
1629
|
Filters?: Filter[] | undefined;
|
|
1630
1630
|
}
|
|
1631
|
+
/**
|
|
1632
|
+
* <p>Describes the geography information for an Availability Zone or Local Zone.</p>
|
|
1633
|
+
* @public
|
|
1634
|
+
*/
|
|
1635
|
+
export interface AvailabilityZoneGeography {
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>The name of the geography, for example, <code>United States of America</code>.</p>
|
|
1638
|
+
* @public
|
|
1639
|
+
*/
|
|
1640
|
+
Name?: string | undefined;
|
|
1641
|
+
}
|
|
1631
1642
|
/**
|
|
1632
1643
|
* <p>Describes a message about an Availability Zone, Local Zone, or Wavelength Zone.</p>
|
|
1633
1644
|
* @public
|
|
@@ -1639,6 +1650,18 @@ export interface AvailabilityZoneMessage {
|
|
|
1639
1650
|
*/
|
|
1640
1651
|
Message?: string | undefined;
|
|
1641
1652
|
}
|
|
1653
|
+
/**
|
|
1654
|
+
* <p>Describes the sub-geography information for an Availability Zone or Local Zone.</p>
|
|
1655
|
+
* @public
|
|
1656
|
+
*/
|
|
1657
|
+
export interface AvailabilityZoneSubGeography {
|
|
1658
|
+
/**
|
|
1659
|
+
* <p>The name of the sub-geography, for example, <code>Oregon.</code>
|
|
1660
|
+
* </p>
|
|
1661
|
+
* @public
|
|
1662
|
+
*/
|
|
1663
|
+
Name?: string | undefined;
|
|
1664
|
+
}
|
|
1642
1665
|
/**
|
|
1643
1666
|
* <p>Describes Availability Zones, Local Zones, and Wavelength Zones.</p>
|
|
1644
1667
|
* @public
|
|
@@ -1722,6 +1745,17 @@ export interface AvailabilityZone {
|
|
|
1722
1745
|
* @public
|
|
1723
1746
|
*/
|
|
1724
1747
|
GroupLongName?: string | undefined;
|
|
1748
|
+
/**
|
|
1749
|
+
* <p>The geography information for the Availability Zone or Local Zone. The geography is returned as a list.</p>
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1752
|
+
Geography?: AvailabilityZoneGeography[] | undefined;
|
|
1753
|
+
/**
|
|
1754
|
+
* <p>The sub-geography information for the Availability Zone or Local Zone. The sub-geography is returned
|
|
1755
|
+
* as a list.</p>
|
|
1756
|
+
* @public
|
|
1757
|
+
*/
|
|
1758
|
+
SubGeography?: AvailabilityZoneSubGeography[] | undefined;
|
|
1725
1759
|
/**
|
|
1726
1760
|
* <p>The state of the Availability Zone, Local Zone, or Wavelength Zone. The possible values are
|
|
1727
1761
|
* <code>available</code>, <code>unavailable</code>, and <code>constrained</code>.</p>
|
|
@@ -10038,75 +10072,3 @@ export interface InstanceState {
|
|
|
10038
10072
|
*/
|
|
10039
10073
|
Name?: InstanceStateName | undefined;
|
|
10040
10074
|
}
|
|
10041
|
-
/**
|
|
10042
|
-
* <p>Information about the instance and the AMI used to launch the instance.</p>
|
|
10043
|
-
* @public
|
|
10044
|
-
*/
|
|
10045
|
-
export interface InstanceImageMetadata {
|
|
10046
|
-
/**
|
|
10047
|
-
* <p>The ID of the instance.</p>
|
|
10048
|
-
* @public
|
|
10049
|
-
*/
|
|
10050
|
-
InstanceId?: string | undefined;
|
|
10051
|
-
/**
|
|
10052
|
-
* <p>The instance type.</p>
|
|
10053
|
-
* @public
|
|
10054
|
-
*/
|
|
10055
|
-
InstanceType?: _InstanceType | undefined;
|
|
10056
|
-
/**
|
|
10057
|
-
* <p>The time the instance was launched.</p>
|
|
10058
|
-
* @public
|
|
10059
|
-
*/
|
|
10060
|
-
LaunchTime?: Date | undefined;
|
|
10061
|
-
/**
|
|
10062
|
-
* <p>The Availability Zone or Local Zone of the instance.</p>
|
|
10063
|
-
* @public
|
|
10064
|
-
*/
|
|
10065
|
-
AvailabilityZone?: string | undefined;
|
|
10066
|
-
/**
|
|
10067
|
-
* <p>The ID of the Availability Zone or Local Zone of the instance.</p>
|
|
10068
|
-
* @public
|
|
10069
|
-
*/
|
|
10070
|
-
ZoneId?: string | undefined;
|
|
10071
|
-
/**
|
|
10072
|
-
* <p>The current state of the instance.</p>
|
|
10073
|
-
* @public
|
|
10074
|
-
*/
|
|
10075
|
-
State?: InstanceState | undefined;
|
|
10076
|
-
/**
|
|
10077
|
-
* <p>The ID of the Amazon Web Services account that owns the instance.</p>
|
|
10078
|
-
* @public
|
|
10079
|
-
*/
|
|
10080
|
-
OwnerId?: string | undefined;
|
|
10081
|
-
/**
|
|
10082
|
-
* <p>Any tags assigned to the instance.</p>
|
|
10083
|
-
* @public
|
|
10084
|
-
*/
|
|
10085
|
-
Tags?: Tag[] | undefined;
|
|
10086
|
-
/**
|
|
10087
|
-
* <p>Information about the AMI used to launch the instance.</p>
|
|
10088
|
-
* @public
|
|
10089
|
-
*/
|
|
10090
|
-
ImageMetadata?: ImageMetadata | undefined;
|
|
10091
|
-
/**
|
|
10092
|
-
* <p>The entity that manages the instance.</p>
|
|
10093
|
-
* @public
|
|
10094
|
-
*/
|
|
10095
|
-
Operator?: OperatorResponse | undefined;
|
|
10096
|
-
}
|
|
10097
|
-
/**
|
|
10098
|
-
* @public
|
|
10099
|
-
*/
|
|
10100
|
-
export interface DescribeInstanceImageMetadataResult {
|
|
10101
|
-
/**
|
|
10102
|
-
* <p>Information about the instance and the AMI used to launch the instance.</p>
|
|
10103
|
-
* @public
|
|
10104
|
-
*/
|
|
10105
|
-
InstanceImageMetadata?: InstanceImageMetadata[] | undefined;
|
|
10106
|
-
/**
|
|
10107
|
-
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
|
|
10108
|
-
* are no more items to return.</p>
|
|
10109
|
-
* @public
|
|
10110
|
-
*/
|
|
10111
|
-
NextToken?: string | undefined;
|
|
10112
|
-
}
|
|
@@ -1,8 +1,80 @@
|
|
|
1
|
-
import { _InstanceType, ActivityStatus, AllocationStrategy, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, BandwidthWeightingType, BatchState, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, EventType, ExcessCapacityTerminationPolicy, FindingsFound, FleetType, FlexibleEnaQueuesSupport, HaStatus, HostnameType, HttpTokensState, HypervisorType, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceInterruptionBehavior, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, OnDemandAllocationStrategy, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, RebootMigrationSupport, RecurringChargeFrequency, ReplacementStrategy, ReservedInstanceState, ResourceType, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SecondaryNetworkType, SecurityGroupVpcAssociationState, ServiceLinkVirtualInterfaceConfigurationState, SnapshotAttributeName, SnapshotState, SpotInstanceState, SpotInstanceType, SqlServerLicenseUsage, StatusName, StatusType, StorageTier, SummaryStatus, SupportedAdditionalProcessorFeature, TargetCapacityUnitType, Tenancy, TieringOperationStatus,
|
|
1
|
+
import { _InstanceType, ActivityStatus, AllocationStrategy, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, BandwidthWeightingType, BatchState, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, EventType, ExcessCapacityTerminationPolicy, FindingsFound, FleetType, FlexibleEnaQueuesSupport, HaStatus, HostnameType, HttpTokensState, HypervisorType, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceInterruptionBehavior, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, OnDemandAllocationStrategy, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, RebootMigrationSupport, RecurringChargeFrequency, ReplacementStrategy, ReservedInstanceState, ResourceType, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SecondaryNetworkType, SecurityGroupVpcAssociationState, ServiceLinkVirtualInterfaceConfigurationState, SnapshotAttributeName, SnapshotState, SpotInstanceState, SpotInstanceType, SqlServerLicenseUsage, StatusName, StatusType, StorageTier, SummaryStatus, SupportedAdditionalProcessorFeature, TargetCapacityUnitType, Tenancy, TieringOperationStatus, UsageClassType, VirtualizationType } from "./enums";
|
|
2
2
|
import { type IamInstanceProfile, type IamInstanceProfileSpecification, type OperatorResponse, ActiveInstance, AlternatePathHint, Explanation, IpamResourceDiscoveryAssociation, IpPermission, MacModificationTask, PathComponent, ReservedInstancesListing, SecurityGroupRule, Subnet, Tag, TagSpecification, UserIdGroupPair } from "./models_0";
|
|
3
3
|
import { type AttributeValue, type CapacityReservationTargetResponse, type ConnectionTrackingSpecificationRequest, type EnaSrdSpecificationRequest, type FleetLaunchTemplateSpecification, type InstanceRequirements, type NetworkInterfaceAttachment, type Placement, type StateReason, BlockDeviceMapping, GroupIdentifier, InstanceIpv6Address, InternetGateway, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfacePermission, PlacementGroup, PrivateIpAddressSpecification, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, RouteTable, SecondaryNetwork } from "./models_1";
|
|
4
4
|
import { type SpotDatafeedSubscription, type SpotInstanceStateFault, SecondarySubnet, Snapshot, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorSession, TrafficMirrorTarget } from "./models_2";
|
|
5
|
-
import { type AttributeBooleanValue, type EnclaveOptions, type EventInformation, type InstanceState, Byoasn, Filter, IdFormat, InstanceBlockDeviceMapping, ProductCode } from "./models_3";
|
|
5
|
+
import { type AttributeBooleanValue, type EnclaveOptions, type EventInformation, type ImageMetadata, type InstanceState, Byoasn, Filter, IdFormat, InstanceBlockDeviceMapping, ProductCode } from "./models_3";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Information about the instance and the AMI used to launch the instance.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface InstanceImageMetadata {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ID of the instance.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
InstanceId?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The instance type.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
InstanceType?: _InstanceType | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The time the instance was launched.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
LaunchTime?: Date | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The Availability Zone or Local Zone of the instance.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
AvailabilityZone?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The ID of the Availability Zone or Local Zone of the instance.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
ZoneId?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The current state of the instance.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
State?: InstanceState | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The ID of the Amazon Web Services account that owns the instance.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
OwnerId?: string | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>Any tags assigned to the instance.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
Tags?: Tag[] | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>Information about the AMI used to launch the instance.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
ImageMetadata?: ImageMetadata | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The entity that manages the instance.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
Operator?: OperatorResponse | undefined;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export interface DescribeInstanceImageMetadataResult {
|
|
66
|
+
/**
|
|
67
|
+
* <p>Information about the instance and the AMI used to launch the instance.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
InstanceImageMetadata?: InstanceImageMetadata[] | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
|
|
73
|
+
* are no more items to return.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
NextToken?: string | undefined;
|
|
77
|
+
}
|
|
6
78
|
/**
|
|
7
79
|
* @public
|
|
8
80
|
*/
|
|
@@ -7471,6 +7543,17 @@ export interface DescribeRegionsRequest {
|
|
|
7471
7543
|
*/
|
|
7472
7544
|
Filters?: Filter[] | undefined;
|
|
7473
7545
|
}
|
|
7546
|
+
/**
|
|
7547
|
+
* <p>Describes the geography information for a Region.</p>
|
|
7548
|
+
* @public
|
|
7549
|
+
*/
|
|
7550
|
+
export interface RegionGeography {
|
|
7551
|
+
/**
|
|
7552
|
+
* <p>The name of the geography, for example, <code>United States of America</code>.</p>
|
|
7553
|
+
* @public
|
|
7554
|
+
*/
|
|
7555
|
+
Name?: string | undefined;
|
|
7556
|
+
}
|
|
7474
7557
|
/**
|
|
7475
7558
|
* <p>Describes a Region.</p>
|
|
7476
7559
|
* @public
|
|
@@ -7482,6 +7565,11 @@ export interface Region {
|
|
|
7482
7565
|
* @public
|
|
7483
7566
|
*/
|
|
7484
7567
|
OptInStatus?: string | undefined;
|
|
7568
|
+
/**
|
|
7569
|
+
* <p>The geography information for the Region. The geography is returned as a list.</p>
|
|
7570
|
+
* @public
|
|
7571
|
+
*/
|
|
7572
|
+
Geography?: RegionGeography[] | undefined;
|
|
7485
7573
|
/**
|
|
7486
7574
|
* <p>The name of the Region.</p>
|
|
7487
7575
|
* @public
|
|
@@ -13161,90 +13249,3 @@ export interface DescribeTransitGatewayAttachmentsRequest {
|
|
|
13161
13249
|
*/
|
|
13162
13250
|
DryRun?: boolean | undefined;
|
|
13163
13251
|
}
|
|
13164
|
-
/**
|
|
13165
|
-
* <p>Describes an association.</p>
|
|
13166
|
-
* @public
|
|
13167
|
-
*/
|
|
13168
|
-
export interface TransitGatewayAttachmentAssociation {
|
|
13169
|
-
/**
|
|
13170
|
-
* <p>The ID of the route table for the transit gateway.</p>
|
|
13171
|
-
* @public
|
|
13172
|
-
*/
|
|
13173
|
-
TransitGatewayRouteTableId?: string | undefined;
|
|
13174
|
-
/**
|
|
13175
|
-
* <p>The state of the association.</p>
|
|
13176
|
-
* @public
|
|
13177
|
-
*/
|
|
13178
|
-
State?: TransitGatewayAssociationState | undefined;
|
|
13179
|
-
}
|
|
13180
|
-
/**
|
|
13181
|
-
* <p>Describes an attachment between a resource and a transit gateway.</p>
|
|
13182
|
-
* @public
|
|
13183
|
-
*/
|
|
13184
|
-
export interface TransitGatewayAttachment {
|
|
13185
|
-
/**
|
|
13186
|
-
* <p>The ID of the attachment.</p>
|
|
13187
|
-
* @public
|
|
13188
|
-
*/
|
|
13189
|
-
TransitGatewayAttachmentId?: string | undefined;
|
|
13190
|
-
/**
|
|
13191
|
-
* <p>The ID of the transit gateway.</p>
|
|
13192
|
-
* @public
|
|
13193
|
-
*/
|
|
13194
|
-
TransitGatewayId?: string | undefined;
|
|
13195
|
-
/**
|
|
13196
|
-
* <p>The ID of the Amazon Web Services account that owns the transit gateway.</p>
|
|
13197
|
-
* @public
|
|
13198
|
-
*/
|
|
13199
|
-
TransitGatewayOwnerId?: string | undefined;
|
|
13200
|
-
/**
|
|
13201
|
-
* <p>The ID of the Amazon Web Services account that owns the resource.</p>
|
|
13202
|
-
* @public
|
|
13203
|
-
*/
|
|
13204
|
-
ResourceOwnerId?: string | undefined;
|
|
13205
|
-
/**
|
|
13206
|
-
* <p>The resource type. Note that the <code>tgw-peering</code> resource type has been deprecated.</p>
|
|
13207
|
-
* @public
|
|
13208
|
-
*/
|
|
13209
|
-
ResourceType?: TransitGatewayAttachmentResourceType | undefined;
|
|
13210
|
-
/**
|
|
13211
|
-
* <p>The ID of the resource.</p>
|
|
13212
|
-
* @public
|
|
13213
|
-
*/
|
|
13214
|
-
ResourceId?: string | undefined;
|
|
13215
|
-
/**
|
|
13216
|
-
* <p>The attachment state. Note that the <code>initiating</code> state has been deprecated.</p>
|
|
13217
|
-
* @public
|
|
13218
|
-
*/
|
|
13219
|
-
State?: TransitGatewayAttachmentState | undefined;
|
|
13220
|
-
/**
|
|
13221
|
-
* <p>The association.</p>
|
|
13222
|
-
* @public
|
|
13223
|
-
*/
|
|
13224
|
-
Association?: TransitGatewayAttachmentAssociation | undefined;
|
|
13225
|
-
/**
|
|
13226
|
-
* <p>The creation time.</p>
|
|
13227
|
-
* @public
|
|
13228
|
-
*/
|
|
13229
|
-
CreationTime?: Date | undefined;
|
|
13230
|
-
/**
|
|
13231
|
-
* <p>The tags for the attachment.</p>
|
|
13232
|
-
* @public
|
|
13233
|
-
*/
|
|
13234
|
-
Tags?: Tag[] | undefined;
|
|
13235
|
-
}
|
|
13236
|
-
/**
|
|
13237
|
-
* @public
|
|
13238
|
-
*/
|
|
13239
|
-
export interface DescribeTransitGatewayAttachmentsResult {
|
|
13240
|
-
/**
|
|
13241
|
-
* <p>Information about the attachments.</p>
|
|
13242
|
-
* @public
|
|
13243
|
-
*/
|
|
13244
|
-
TransitGatewayAttachments?: TransitGatewayAttachment[] | undefined;
|
|
13245
|
-
/**
|
|
13246
|
-
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
13247
|
-
* @public
|
|
13248
|
-
*/
|
|
13249
|
-
NextToken?: string | undefined;
|
|
13250
|
-
}
|
|
@@ -1,8 +1,95 @@
|
|
|
1
|
-
import { AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerStatus, CapacityReservationState, CapacityTenancy, ClientCertificateRevocationListStatusCode, Comparison, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FilterByDimension, GroupBy, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, IngestionStatus, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, Metric, MetricType, PayerResponsibility, PeriodType, ReservationEndDateType, ReservationState, ReservationType, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAttachmentResourceType, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
|
|
1
|
+
import { AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerStatus, CapacityReservationState, CapacityTenancy, ClientCertificateRevocationListStatusCode, Comparison, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FilterByDimension, GroupBy, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, IngestionStatus, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, Metric, MetricType, PayerResponsibility, PeriodType, ReservationEndDateType, ReservationState, ReservationType, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
|
|
2
2
|
import { type ActiveVpnTunnelStatus, type AddressTransfer, type AsnAssociation, type AssociationStatus, type IamInstanceProfileAssociation, type InstanceEventWindow, type InterruptibleCapacityAllocation, type InterruptionInfo, type IpamResourceDiscoveryAssociation, type RouteServerAssociation, type SubnetIpv6CidrBlockAssociation, type TransitGatewayAssociation, type TransitGatewayMulticastDomainAssociations, type TransitGatewayPolicyTableAssociation, type VpcCidrBlockAssociation, type VpcIpv6CidrBlockAssociation, AllowedPrincipal, NatGatewayAddress, Tag, TagSpecification, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, VerifiedAccessInstance, VerifiedAccessTrustProvider, Volume, Vpc, VpcEncryptionControl, VpcPeeringConnection } from "./models_0";
|
|
3
3
|
import { ConnectionNotification, DnsEntry, ServiceConfiguration, ServiceTypeDetail, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMeteringPolicy, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion, VpcEndpoint, VpnConcentrator, VpnConnection, VpnGateway } from "./models_2";
|
|
4
4
|
import { type AttributeBooleanValue, type ExportTaskS3Location, type FastLaunchLaunchTemplateSpecificationResponse, type FastLaunchSnapshotConfigurationResponse, Filter, ProductCode } from "./models_3";
|
|
5
5
|
import { RegisteredInstance } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Describes an association.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface TransitGatewayAttachmentAssociation {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ID of the route table for the transit gateway.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
TransitGatewayRouteTableId?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The state of the association.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
State?: TransitGatewayAssociationState | undefined;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* <p>Describes an attachment between a resource and a transit gateway.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface TransitGatewayAttachment {
|
|
27
|
+
/**
|
|
28
|
+
* <p>The ID of the attachment.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The ID of the transit gateway.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
TransitGatewayId?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The ID of the Amazon Web Services account that owns the transit gateway.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
TransitGatewayOwnerId?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The ID of the Amazon Web Services account that owns the resource.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
ResourceOwnerId?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The resource type. Note that the <code>tgw-peering</code> resource type has been deprecated.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
ResourceType?: TransitGatewayAttachmentResourceType | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The ID of the resource.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
ResourceId?: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The attachment state. Note that the <code>initiating</code> state has been deprecated.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
State?: TransitGatewayAttachmentState | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The association.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
Association?: TransitGatewayAttachmentAssociation | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The creation time.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
CreationTime?: Date | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The tags for the attachment.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
Tags?: Tag[] | undefined;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export interface DescribeTransitGatewayAttachmentsResult {
|
|
82
|
+
/**
|
|
83
|
+
* <p>Information about the attachments.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
TransitGatewayAttachments?: TransitGatewayAttachment[] | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
NextToken?: string | undefined;
|
|
92
|
+
}
|
|
6
93
|
/**
|
|
7
94
|
* @public
|
|
8
95
|
*/
|
|
@@ -7936,35 +8023,3 @@ export interface InstanceFamilyCreditSpecification {
|
|
|
7936
8023
|
*/
|
|
7937
8024
|
CpuCredits?: string | undefined;
|
|
7938
8025
|
}
|
|
7939
|
-
/**
|
|
7940
|
-
* @public
|
|
7941
|
-
*/
|
|
7942
|
-
export interface GetDefaultCreditSpecificationResult {
|
|
7943
|
-
/**
|
|
7944
|
-
* <p>The default credit option for CPU usage of the instance family.</p>
|
|
7945
|
-
* @public
|
|
7946
|
-
*/
|
|
7947
|
-
InstanceFamilyCreditSpecification?: InstanceFamilyCreditSpecification | undefined;
|
|
7948
|
-
}
|
|
7949
|
-
/**
|
|
7950
|
-
* @public
|
|
7951
|
-
*/
|
|
7952
|
-
export interface GetEbsDefaultKmsKeyIdRequest {
|
|
7953
|
-
/**
|
|
7954
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7955
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7956
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7957
|
-
* @public
|
|
7958
|
-
*/
|
|
7959
|
-
DryRun?: boolean | undefined;
|
|
7960
|
-
}
|
|
7961
|
-
/**
|
|
7962
|
-
* @public
|
|
7963
|
-
*/
|
|
7964
|
-
export interface GetEbsDefaultKmsKeyIdResult {
|
|
7965
|
-
/**
|
|
7966
|
-
* <p>The Amazon Resource Name (ARN) of the default KMS key for encryption by default.</p>
|
|
7967
|
-
* @public
|
|
7968
|
-
*/
|
|
7969
|
-
KmsKeyId?: string | undefined;
|
|
7970
|
-
}
|
|
@@ -1,10 +1,42 @@
|
|
|
1
1
|
import { _InstanceType, Affinity, AnalysisStatus, ArchitectureType, ArchitectureValues, AutoAcceptSharedAttachmentsValue, AutoPlacement, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, DnsSupportValue, EkPubKeyFormat, EkPubKeyType, EncryptionSupportOptionValue, EndDateType, ExcessCapacityTerminationPolicy, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, HostMaintenance, HostnameType, HostRecovery, HostTenancy, HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, IpAddressType, IpamAddressHistoryResourceType, IpamComplianceStatus, IpamDiscoveryFailureCode, IpamManagementState, IpamMeteredAccount, IpamNetworkInterfaceAttachmentStatus, IpamOverlapStatus, IpamPolicyManagedBy, IpamPolicyResourceType, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPublicAddressAssociationStatus, IpamPublicAddressAwsService, IpamPublicAddressType, IpamResourceCidrIpSource, IpamResourceType, IpamTier, LockMode, LockState, ManagedBy, MetadataDefaultHttpTokensState, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, OperationType, PartitionLoadFrequency, PaymentOption, PermissionGroup, PlatformValues, PublicIpDnsOption, RouteServerPersistRoutesAction, RouteServerRouteInstallationStatus, RouteServerRouteStatus, SecurityGroupReferencingSupportValue, SelfServicePortal, ShutdownBehavior, SnapshotAttributeName, SnapshotBlockPublicAccessState, SSEType, TargetCapacityUnitType, TargetStorageTier, TrafficDirection, TrafficMirrorFilterRuleField, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorSessionField, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, UnsuccessfulInstanceCreditSpecificationErrorCode, VirtualizationType, VolumeState, VolumeType, VpnEcmpSupportValue } from "./enums";
|
|
2
2
|
import { type AddressAttribute, type ClientConnectOptions, type ClientLoginBannerOptions, type ClientRouteEnforcementOptions, type ConnectionLogOptions, type EnaSrdSpecification, type InstanceEventWindow, type OperatorResponse, type SubnetAssociation, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddIpamOrganizationalUnitExclusion, AddPrefixListEntry, IpamPoolAllocation, RouteServerAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayPolicyTableAssociation, UnsuccessfulItem } from "./models_0";
|
|
3
3
|
import { type AttributeValue, type CapacityReservationTarget, type ConnectionTrackingSpecificationRequest, type ExternalAuthorityConfiguration, type InstanceRequirementsRequest, type Ipam, type IpamPool, type IpamPrefixListResolver, type IpamPrefixListResolverTarget, type IpamResourceDiscovery, type IpamScope, type LaunchTemplate, type LocalGatewayRoute, type ManagedPrefixList, type NetworkInsightsAccessScopeContent, type Placement, type ResponseLaunchTemplateData, type RouteServer, type TargetCapacitySpecificationRequest, FleetLaunchTemplateConfigRequest, InstanceEventWindowTimeRangeRequest, IpamPrefixListResolverRuleRequest, IpamResourceTag, RequestIpamResourceTag } from "./models_1";
|
|
4
|
-
import { type TrafficMirrorFilter, type TrafficMirrorFilterRule, type TrafficMirrorPortRangeRequest, type TrafficMirrorSession,
|
|
4
|
+
import { type TrafficMirrorFilter, type TrafficMirrorFilterRule, type TrafficMirrorPortRangeRequest, type TrafficMirrorSession, SubnetCidrReservation, TransitGatewayMeteringPolicyEntry, TransitGatewayPrefixListReference } from "./models_2";
|
|
5
5
|
import { type AttributeBooleanValue, type ConversionTask, type FpgaImageAttribute, type SnapshotTaskDetail, Filter, ImportImageLicenseConfigurationResponse, IpamPoolCidr, LaunchPermission, SnapshotDetail } from "./models_3";
|
|
6
6
|
import { type InstanceMetadataOptionsResponse, type InstanceStatusEvent, CreateVolumePermission, LaunchTemplateConfig, ReservedInstancesConfiguration } from "./models_4";
|
|
7
7
|
import { type InstanceFamilyCreditSpecification, RouteServerPropagation } from "./models_5";
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface GetDefaultCreditSpecificationResult {
|
|
12
|
+
/**
|
|
13
|
+
* <p>The default credit option for CPU usage of the instance family.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
InstanceFamilyCreditSpecification?: InstanceFamilyCreditSpecification | undefined;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface GetEbsDefaultKmsKeyIdRequest {
|
|
22
|
+
/**
|
|
23
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
24
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
25
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
DryRun?: boolean | undefined;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export interface GetEbsDefaultKmsKeyIdResult {
|
|
34
|
+
/**
|
|
35
|
+
* <p>The Amazon Resource Name (ARN) of the default KMS key for encryption by default.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
KmsKeyId?: string | undefined;
|
|
39
|
+
}
|
|
8
40
|
/**
|
|
9
41
|
* @public
|
|
10
42
|
*/
|
|
@@ -8784,50 +8816,3 @@ export interface ModifyTransitGatewayRequest {
|
|
|
8784
8816
|
*/
|
|
8785
8817
|
DryRun?: boolean | undefined;
|
|
8786
8818
|
}
|
|
8787
|
-
/**
|
|
8788
|
-
* @public
|
|
8789
|
-
*/
|
|
8790
|
-
export interface ModifyTransitGatewayResult {
|
|
8791
|
-
/**
|
|
8792
|
-
* <p>Information about the transit gateway.</p>
|
|
8793
|
-
* @public
|
|
8794
|
-
*/
|
|
8795
|
-
TransitGateway?: TransitGateway | undefined;
|
|
8796
|
-
}
|
|
8797
|
-
/**
|
|
8798
|
-
* @public
|
|
8799
|
-
*/
|
|
8800
|
-
export interface ModifyTransitGatewayMeteringPolicyRequest {
|
|
8801
|
-
/**
|
|
8802
|
-
* <p>The ID of the transit gateway metering policy to modify.</p>
|
|
8803
|
-
* @public
|
|
8804
|
-
*/
|
|
8805
|
-
TransitGatewayMeteringPolicyId: string | undefined;
|
|
8806
|
-
/**
|
|
8807
|
-
* <p>The IDs of middlebox attachments to add to the metering policy.</p>
|
|
8808
|
-
* @public
|
|
8809
|
-
*/
|
|
8810
|
-
AddMiddleboxAttachmentIds?: string[] | undefined;
|
|
8811
|
-
/**
|
|
8812
|
-
* <p>The IDs of middlebox attachments to remove from the metering policy.</p>
|
|
8813
|
-
* @public
|
|
8814
|
-
*/
|
|
8815
|
-
RemoveMiddleboxAttachmentIds?: string[] | undefined;
|
|
8816
|
-
/**
|
|
8817
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8818
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8819
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8820
|
-
* @public
|
|
8821
|
-
*/
|
|
8822
|
-
DryRun?: boolean | undefined;
|
|
8823
|
-
}
|
|
8824
|
-
/**
|
|
8825
|
-
* @public
|
|
8826
|
-
*/
|
|
8827
|
-
export interface ModifyTransitGatewayMeteringPolicyResult {
|
|
8828
|
-
/**
|
|
8829
|
-
* <p>Information about the modified transit gateway metering policy.</p>
|
|
8830
|
-
* @public
|
|
8831
|
-
*/
|
|
8832
|
-
TransitGatewayMeteringPolicy?: TransitGatewayMeteringPolicy | undefined;
|
|
8833
|
-
}
|
|
@@ -1,11 +1,58 @@
|
|
|
1
1
|
import { _InstanceType, AddressAttributeName, AmdSevSnpSpecification, ApplianceModeSupportValue, ArchitectureValues, BootModeValues, CapacityManagerStatus, CapacityReservationInstancePlatform, CurrencyCodeValues, DnsSupportValue, HostnameType, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InternetGatewayBlockMode, InternetGatewayExclusionMode, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, Ipv6SupportValue, MarketType, MembershipType, NestedVirtualizationSpecification, PayerResponsibility, ReportInstanceReasonCodes, ReportStatusType, ResetFpgaImageAttributeName, ResetImageAttributeName, RuleAction, SecondaryInterfaceType, SecurityGroupReferencingSupportValue, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TpmSupportValues, TransitGatewayAttachmentResourceType, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy } from "./enums";
|
|
2
2
|
import { type AddressAttribute, type ByoipCidr, type CapacityReservation, type ClientVpnAuthorizationRuleStatus, type IamInstanceProfileAssociation, type IamInstanceProfileSpecification, type PortRange, type RouteTableAssociationState, type TransitGatewayMulticastDomainAssociations, type TransitGatewayPeeringAttachment, type TransitGatewayVpcAttachment, type VerifiedAccessInstance, type VerifiedAccessSseSpecificationResponse, type VerifiedAccessTrustProvider, type VpcEncryptionControl, AddedPrincipal, IpPermission, NatGatewayAddress, TagSpecification, UnsuccessfulItem } from "./models_0";
|
|
3
3
|
import { type CreditSpecificationRequest, type IcmpTypeCode, type ManagedPrefixList, type OperatorRequest, type Placement, BlockDeviceMapping, ElasticGpuSpecification, InstanceIpv6Address, LocalGatewayRoute } from "./models_1";
|
|
4
|
-
import { type DnsOptionsSpecification, type TransitGatewayPrefixListReference, type VerifiedAccessEndpoint, type VerifiedAccessGroup, type VerifiedAccessSseSpecificationRequest, type VpcBlockPublicAccessExclusion, type VpnConnection, type VpnTunnelLogOptionsSpecification, IKEVersionsRequestListValue, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SubnetConfiguration, TransitGatewayRoute } from "./models_2";
|
|
4
|
+
import { type DnsOptionsSpecification, type TransitGateway, type TransitGatewayMeteringPolicy, type TransitGatewayPrefixListReference, type VerifiedAccessEndpoint, type VerifiedAccessGroup, type VerifiedAccessSseSpecificationRequest, type VpcBlockPublicAccessExclusion, type VpnConnection, type VpnTunnelLogOptionsSpecification, IKEVersionsRequestListValue, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SubnetConfiguration, TransitGatewayRoute } from "./models_2";
|
|
5
5
|
import { type AttributeBooleanValue, type Byoasn, type ClientVpnConnectionStatus, type InstanceState, type InstanceTagNotificationAttribute, type IpamPoolCidr, CapacityBlock, CapacityBlockExtension, Filter } from "./models_3";
|
|
6
6
|
import { type Monitoring, type NetworkInsightsAccessScopeAnalysis, type NetworkInsightsAnalysis, type PublicIpv4PoolRange, type RunInstancesMonitoringEnabled, type SpotFleetRequestConfigData, type SpotPlacement, InstanceNetworkInterfaceSpecification, ScheduledInstance, SpotInstanceRequest } from "./models_4";
|
|
7
7
|
import type { VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
|
|
8
8
|
import { type CapacityReservationSpecification, Purchase } from "./models_6";
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export interface ModifyTransitGatewayResult {
|
|
13
|
+
/**
|
|
14
|
+
* <p>Information about the transit gateway.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
TransitGateway?: TransitGateway | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface ModifyTransitGatewayMeteringPolicyRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID of the transit gateway metering policy to modify.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
TransitGatewayMeteringPolicyId: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The IDs of middlebox attachments to add to the metering policy.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
AddMiddleboxAttachmentIds?: string[] | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The IDs of middlebox attachments to remove from the metering policy.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
RemoveMiddleboxAttachmentIds?: string[] | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
40
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
41
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
DryRun?: boolean | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface ModifyTransitGatewayMeteringPolicyResult {
|
|
50
|
+
/**
|
|
51
|
+
* <p>Information about the modified transit gateway metering policy.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
TransitGatewayMeteringPolicy?: TransitGatewayMeteringPolicy | undefined;
|
|
55
|
+
}
|
|
9
56
|
/**
|
|
10
57
|
* @public
|
|
11
58
|
*/
|
|
@@ -135,7 +135,9 @@ export declare var AuthorizeSecurityGroupIngressRequest$: StaticStructureSchema;
|
|
|
135
135
|
export declare var AuthorizeSecurityGroupIngressResult$: StaticStructureSchema;
|
|
136
136
|
export declare var AvailabilityZone$: StaticStructureSchema;
|
|
137
137
|
export declare var AvailabilityZoneAddress$: StaticStructureSchema;
|
|
138
|
+
export declare var AvailabilityZoneGeography$: StaticStructureSchema;
|
|
138
139
|
export declare var AvailabilityZoneMessage$: StaticStructureSchema;
|
|
140
|
+
export declare var AvailabilityZoneSubGeography$: StaticStructureSchema;
|
|
139
141
|
export declare var AvailableCapacity$: StaticStructureSchema;
|
|
140
142
|
export declare var BaselineEbsBandwidthMbps$: StaticStructureSchema;
|
|
141
143
|
export declare var BaselineEbsBandwidthMbpsRequest$: StaticStructureSchema;
|
|
@@ -1962,6 +1964,7 @@ export declare var RecurringCharge$: StaticStructureSchema;
|
|
|
1962
1964
|
export declare var ReferencedSecurityGroup$: StaticStructureSchema;
|
|
1963
1965
|
export declare var Region$: StaticStructureSchema;
|
|
1964
1966
|
export declare var RegionalSummary$: StaticStructureSchema;
|
|
1967
|
+
export declare var RegionGeography$: StaticStructureSchema;
|
|
1965
1968
|
export declare var RegisteredInstance$: StaticStructureSchema;
|
|
1966
1969
|
export declare var RegisterImageRequest$: StaticStructureSchema;
|
|
1967
1970
|
export declare var RegisterImageResult$: StaticStructureSchema;
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeInstanceImageMetadataResult,
|
|
11
|
-
} from "../models/models_3";
|
|
8
|
+
import { DescribeInstanceImageMetadataRequest } from "../models/models_3";
|
|
9
|
+
import { DescribeInstanceImageMetadataResult } from "../models/models_4";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeInstanceImageMetadataCommandInput
|