@aws-sdk/client-ec2 3.449.0 → 3.450.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/dist-cjs/EC2.js +2 -0
- package/dist-cjs/commands/DescribeInstanceTopologyCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_6.js +1 -4
- package/dist-cjs/models/models_7.js +4 -1
- package/dist-cjs/pagination/DescribeInstanceTopologyPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +180 -20
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/DescribeInstanceTopologyCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_6.js +0 -3
- package/dist-es/models/models_7.js +3 -0
- package/dist-es/pagination/DescribeInstanceTopologyPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +158 -0
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +6 -6
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +4 -4
- package/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +6 -6
- package/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +148 -0
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +1 -1
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +4 -4
- package/dist-types/commands/DisableImageCommand.d.ts +3 -3
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +2 -2
- package/dist-types/commands/GetCoipPoolUsageCommand.d.ts +1 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -2
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +2 -2
- package/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +4 -3
- package/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +1 -2
- package/dist-types/commands/ModifyFleetCommand.d.ts +2 -2
- package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +2 -2
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +4 -4
- package/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +7 -15
- package/dist-types/models/models_1.d.ts +19 -3
- package/dist-types/models/models_2.d.ts +11 -21
- package/dist-types/models/models_3.d.ts +22 -24
- package/dist-types/models/models_4.d.ts +122 -64
- package/dist-types/models/models_5.d.ts +108 -155
- package/dist-types/models/models_6.d.ts +127 -71
- package/dist-types/models/models_7.d.ts +44 -1
- package/dist-types/pagination/DescribeInstanceTopologyPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +20 -17
- package/dist-types/ts3.4/models/models_5.d.ts +18 -16
- package/dist-types/ts3.4/models/models_6.d.ts +16 -13
- package/dist-types/ts3.4/models/models_7.d.ts +14 -1
- package/dist-types/ts3.4/pagination/DescribeInstanceTopologyPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +3 -3
|
@@ -808,7 +808,7 @@ export interface DeleteVerifiedAccessEndpointRequest {
|
|
|
808
808
|
export interface DeleteVerifiedAccessEndpointResult {
|
|
809
809
|
/**
|
|
810
810
|
* @public
|
|
811
|
-
* <p>
|
|
811
|
+
* <p>Details about the Verified Access endpoint.</p>
|
|
812
812
|
*/
|
|
813
813
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
814
814
|
}
|
|
@@ -841,7 +841,7 @@ export interface DeleteVerifiedAccessGroupRequest {
|
|
|
841
841
|
export interface DeleteVerifiedAccessGroupResult {
|
|
842
842
|
/**
|
|
843
843
|
* @public
|
|
844
|
-
* <p>
|
|
844
|
+
* <p>Details about the Verified Access group.</p>
|
|
845
845
|
*/
|
|
846
846
|
VerifiedAccessGroup?: VerifiedAccessGroup;
|
|
847
847
|
}
|
|
@@ -874,7 +874,7 @@ export interface DeleteVerifiedAccessInstanceRequest {
|
|
|
874
874
|
export interface DeleteVerifiedAccessInstanceResult {
|
|
875
875
|
/**
|
|
876
876
|
* @public
|
|
877
|
-
* <p>
|
|
877
|
+
* <p>Details about the Verified Access instance.</p>
|
|
878
878
|
*/
|
|
879
879
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
880
880
|
}
|
|
@@ -907,7 +907,7 @@ export interface DeleteVerifiedAccessTrustProviderRequest {
|
|
|
907
907
|
export interface DeleteVerifiedAccessTrustProviderResult {
|
|
908
908
|
/**
|
|
909
909
|
* @public
|
|
910
|
-
* <p>
|
|
910
|
+
* <p>Details about the Verified Access trust provider.</p>
|
|
911
911
|
*/
|
|
912
912
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
913
913
|
}
|
|
@@ -4480,7 +4480,7 @@ export interface DescribeExportTasksResult {
|
|
|
4480
4480
|
export interface DescribeFastLaunchImagesRequest {
|
|
4481
4481
|
/**
|
|
4482
4482
|
* @public
|
|
4483
|
-
* <p>
|
|
4483
|
+
* <p>Specify one or more Windows AMI image IDs for the request.</p>
|
|
4484
4484
|
*/
|
|
4485
4485
|
ImageIds?: string[];
|
|
4486
4486
|
/**
|
|
@@ -4493,10 +4493,6 @@ export interface DescribeFastLaunchImagesRequest {
|
|
|
4493
4493
|
* </li>
|
|
4494
4494
|
* <li>
|
|
4495
4495
|
* <p>
|
|
4496
|
-
* <code>launch-template</code> - The launch template that is associated with the pre-provisioned Windows AMI.</p>
|
|
4497
|
-
* </li>
|
|
4498
|
-
* <li>
|
|
4499
|
-
* <p>
|
|
4500
4496
|
* <code>owner-id</code> - The owner ID for the pre-provisioning resource.</p>
|
|
4501
4497
|
* </li>
|
|
4502
4498
|
* <li>
|
|
@@ -4528,22 +4524,22 @@ export interface DescribeFastLaunchImagesRequest {
|
|
|
4528
4524
|
}
|
|
4529
4525
|
/**
|
|
4530
4526
|
* @public
|
|
4531
|
-
* <p>Identifies the launch template
|
|
4527
|
+
* <p>Identifies the launch template that the AMI uses for Windows fast launch.</p>
|
|
4532
4528
|
*/
|
|
4533
4529
|
export interface FastLaunchLaunchTemplateSpecificationResponse {
|
|
4534
4530
|
/**
|
|
4535
4531
|
* @public
|
|
4536
|
-
* <p>The ID of the launch template
|
|
4532
|
+
* <p>The ID of the launch template that the AMI uses for Windows fast launch.</p>
|
|
4537
4533
|
*/
|
|
4538
4534
|
LaunchTemplateId?: string;
|
|
4539
4535
|
/**
|
|
4540
4536
|
* @public
|
|
4541
|
-
* <p>The name of the launch template
|
|
4537
|
+
* <p>The name of the launch template that the AMI uses for Windows fast launch.</p>
|
|
4542
4538
|
*/
|
|
4543
4539
|
LaunchTemplateName?: string;
|
|
4544
4540
|
/**
|
|
4545
4541
|
* @public
|
|
4546
|
-
* <p>The version of the launch template
|
|
4542
|
+
* <p>The version of the launch template that the AMI uses for Windows fast launch.</p>
|
|
4547
4543
|
*/
|
|
4548
4544
|
Version?: string;
|
|
4549
4545
|
}
|
|
@@ -4560,12 +4556,14 @@ export declare const FastLaunchResourceType: {
|
|
|
4560
4556
|
export type FastLaunchResourceType = (typeof FastLaunchResourceType)[keyof typeof FastLaunchResourceType];
|
|
4561
4557
|
/**
|
|
4562
4558
|
* @public
|
|
4563
|
-
* <p>Configuration settings for creating and managing pre-provisioned snapshots for a fast
|
|
4559
|
+
* <p>Configuration settings for creating and managing pre-provisioned snapshots for a Windows fast launch
|
|
4560
|
+
* enabled Windows AMI.</p>
|
|
4564
4561
|
*/
|
|
4565
4562
|
export interface FastLaunchSnapshotConfigurationResponse {
|
|
4566
4563
|
/**
|
|
4567
4564
|
* @public
|
|
4568
|
-
* <p>The number of pre-provisioned snapshots requested to keep on hand for a fast
|
|
4565
|
+
* <p>The number of pre-provisioned snapshots requested to keep on hand for a Windows fast launch
|
|
4566
|
+
* enabled AMI.</p>
|
|
4569
4567
|
*/
|
|
4570
4568
|
TargetResourceCount?: number;
|
|
4571
4569
|
}
|
|
@@ -4587,18 +4585,18 @@ export declare const FastLaunchStateCode: {
|
|
|
4587
4585
|
export type FastLaunchStateCode = (typeof FastLaunchStateCode)[keyof typeof FastLaunchStateCode];
|
|
4588
4586
|
/**
|
|
4589
4587
|
* @public
|
|
4590
|
-
* <p>Describe details about a fast
|
|
4588
|
+
* <p>Describe details about a Windows image with Windows fast launch enabled that meets the requested
|
|
4591
4589
|
* criteria. Criteria are defined by the <code>DescribeFastLaunchImages</code> action filters.</p>
|
|
4592
4590
|
*/
|
|
4593
4591
|
export interface DescribeFastLaunchImagesSuccessItem {
|
|
4594
4592
|
/**
|
|
4595
4593
|
* @public
|
|
4596
|
-
* <p>The image ID that identifies the fast
|
|
4594
|
+
* <p>The image ID that identifies the Windows fast launch enabled image.</p>
|
|
4597
4595
|
*/
|
|
4598
4596
|
ImageId?: string;
|
|
4599
4597
|
/**
|
|
4600
4598
|
* @public
|
|
4601
|
-
* <p>The resource type that
|
|
4599
|
+
* <p>The resource type that Amazon EC2 uses for pre-provisioning the Windows AMI. Supported values
|
|
4602
4600
|
* include: <code>snapshot</code>.</p>
|
|
4603
4601
|
*/
|
|
4604
4602
|
ResourceType?: FastLaunchResourceType;
|
|
@@ -4610,34 +4608,34 @@ export interface DescribeFastLaunchImagesSuccessItem {
|
|
|
4610
4608
|
SnapshotConfiguration?: FastLaunchSnapshotConfigurationResponse;
|
|
4611
4609
|
/**
|
|
4612
4610
|
* @public
|
|
4613
|
-
* <p>The launch template that the fast
|
|
4611
|
+
* <p>The launch template that the Windows fast launch enabled AMI uses when it launches
|
|
4614
4612
|
* Windows instances from pre-provisioned snapshots.</p>
|
|
4615
4613
|
*/
|
|
4616
4614
|
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationResponse;
|
|
4617
4615
|
/**
|
|
4618
4616
|
* @public
|
|
4619
4617
|
* <p>The maximum number of instances that Amazon EC2 can launch at the same time to create
|
|
4620
|
-
* pre-provisioned snapshots for Windows
|
|
4618
|
+
* pre-provisioned snapshots for Windows fast launch.</p>
|
|
4621
4619
|
*/
|
|
4622
4620
|
MaxParallelLaunches?: number;
|
|
4623
4621
|
/**
|
|
4624
4622
|
* @public
|
|
4625
|
-
* <p>The owner ID for the fast
|
|
4623
|
+
* <p>The owner ID for the Windows fast launch enabled AMI.</p>
|
|
4626
4624
|
*/
|
|
4627
4625
|
OwnerId?: string;
|
|
4628
4626
|
/**
|
|
4629
4627
|
* @public
|
|
4630
|
-
* <p>The current state of
|
|
4628
|
+
* <p>The current state of Windows fast launch for the specified Windows AMI.</p>
|
|
4631
4629
|
*/
|
|
4632
4630
|
State?: FastLaunchStateCode;
|
|
4633
4631
|
/**
|
|
4634
4632
|
* @public
|
|
4635
|
-
* <p>The reason that
|
|
4633
|
+
* <p>The reason that Windows fast launch for the AMI changed to the current state.</p>
|
|
4636
4634
|
*/
|
|
4637
4635
|
StateTransitionReason?: string;
|
|
4638
4636
|
/**
|
|
4639
4637
|
* @public
|
|
4640
|
-
* <p>The time that
|
|
4638
|
+
* <p>The time that Windows fast launch for the AMI changed to the current state.</p>
|
|
4641
4639
|
*/
|
|
4642
4640
|
StateTransitionTime?: Date;
|
|
4643
4641
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AlternatePathHint, AttachmentStatus, BatchState, CurrencyCodeValues, Explanation, IamInstanceProfile, IamInstanceProfileSpecification, InstanceEventWindow, IpamResourceDiscoveryAssociation, IpPermission, PathComponent, ReservedInstancesListing, ResourceType, SecurityGroupRule, Tag, TagSpecification, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, UserIdGroupPair } from "./models_0";
|
|
2
2
|
import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, HostnameType, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InternetGateway, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlatformValues, PrivateIpAddressSpecification, SpotInstanceType, StateReason, Subnet, TargetCapacityUnitType, Tenancy } from "./models_1";
|
|
3
|
-
import { PlacementGroup, ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain
|
|
3
|
+
import { PlacementGroup, ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain } from "./models_2";
|
|
4
4
|
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, DeviceType, EnclaveOptions, EventInformation, Filter, HypervisorType, IdFormat, InstanceBlockDeviceMapping, InstanceTagNotificationAttribute, PermissionGroup, ProductCode, VirtualizationType } from "./models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -2242,6 +2242,127 @@ export interface DescribeInstanceStatusResult {
|
|
|
2242
2242
|
*/
|
|
2243
2243
|
NextToken?: string;
|
|
2244
2244
|
}
|
|
2245
|
+
/**
|
|
2246
|
+
* @public
|
|
2247
|
+
*/
|
|
2248
|
+
export interface DescribeInstanceTopologyRequest {
|
|
2249
|
+
/**
|
|
2250
|
+
* @public
|
|
2251
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
2252
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
2253
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
2254
|
+
*/
|
|
2255
|
+
DryRun?: boolean;
|
|
2256
|
+
/**
|
|
2257
|
+
* @public
|
|
2258
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
2259
|
+
*/
|
|
2260
|
+
NextToken?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* @public
|
|
2263
|
+
* <p>The maximum number of items to return for this request.
|
|
2264
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
2265
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
2266
|
+
* <p>You can't specify this parameter and the instance IDs parameter in the same request.</p>
|
|
2267
|
+
* <p>Default: <code>20</code>
|
|
2268
|
+
* </p>
|
|
2269
|
+
*/
|
|
2270
|
+
MaxResults?: number;
|
|
2271
|
+
/**
|
|
2272
|
+
* @public
|
|
2273
|
+
* <p>The instance IDs.</p>
|
|
2274
|
+
* <p>Default: Describes all your instances.</p>
|
|
2275
|
+
* <p>Constraints: Maximum 100 explicitly specified instance IDs.</p>
|
|
2276
|
+
*/
|
|
2277
|
+
InstanceIds?: string[];
|
|
2278
|
+
/**
|
|
2279
|
+
* @public
|
|
2280
|
+
* <p>The name of the placement group that each instance is in.</p>
|
|
2281
|
+
* <p>Constraints: Maximum 100 explicitly specified placement group names.</p>
|
|
2282
|
+
*/
|
|
2283
|
+
GroupNames?: string[];
|
|
2284
|
+
/**
|
|
2285
|
+
* @public
|
|
2286
|
+
* <p>The filters.</p>
|
|
2287
|
+
* <ul>
|
|
2288
|
+
* <li>
|
|
2289
|
+
* <p>
|
|
2290
|
+
* <code>availability-zone</code> - The name of the Availability Zone (for
|
|
2291
|
+
* example, <code>us-west-2a</code>) or Local Zone (for example,
|
|
2292
|
+
* <code>us-west-2-lax-1b</code>) that the instance is in.</p>
|
|
2293
|
+
* </li>
|
|
2294
|
+
* <li>
|
|
2295
|
+
* <p>
|
|
2296
|
+
* <code>instance-type</code> - The instance type (for example,
|
|
2297
|
+
* <code>p4d.24xlarge</code>) or instance family (for example,
|
|
2298
|
+
* <code>p4d*</code>). You can use the <code>*</code> wildcard to match zero or
|
|
2299
|
+
* more characters, or the <code>?</code> wildcard to match zero or one
|
|
2300
|
+
* character.</p>
|
|
2301
|
+
* </li>
|
|
2302
|
+
* <li>
|
|
2303
|
+
* <p>
|
|
2304
|
+
* <code>zone-id</code> - The ID of the Availability Zone (for example,
|
|
2305
|
+
* <code>usw2-az2</code>) or Local Zone (for example,
|
|
2306
|
+
* <code>usw2-lax1-az1</code>) that the instance is in.</p>
|
|
2307
|
+
* </li>
|
|
2308
|
+
* </ul>
|
|
2309
|
+
*/
|
|
2310
|
+
Filters?: Filter[];
|
|
2311
|
+
}
|
|
2312
|
+
/**
|
|
2313
|
+
* @public
|
|
2314
|
+
* <p>Information about the instance topology.</p>
|
|
2315
|
+
*/
|
|
2316
|
+
export interface InstanceTopology {
|
|
2317
|
+
/**
|
|
2318
|
+
* @public
|
|
2319
|
+
* <p>The instance ID.</p>
|
|
2320
|
+
*/
|
|
2321
|
+
InstanceId?: string;
|
|
2322
|
+
/**
|
|
2323
|
+
* @public
|
|
2324
|
+
* <p>The instance type.</p>
|
|
2325
|
+
*/
|
|
2326
|
+
InstanceType?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* @public
|
|
2329
|
+
* <p>The name of the placement group that the instance is in.</p>
|
|
2330
|
+
*/
|
|
2331
|
+
GroupName?: string;
|
|
2332
|
+
/**
|
|
2333
|
+
* @public
|
|
2334
|
+
* <p>The network nodes. The nodes are hashed based on your account. Instances from
|
|
2335
|
+
* different accounts running under the same droplet will return a different hashed list of
|
|
2336
|
+
* strings.</p>
|
|
2337
|
+
*/
|
|
2338
|
+
NetworkNodes?: string[];
|
|
2339
|
+
/**
|
|
2340
|
+
* @public
|
|
2341
|
+
* <p>The name of the Availability Zone or Local Zone that the instance is in.</p>
|
|
2342
|
+
*/
|
|
2343
|
+
AvailabilityZone?: string;
|
|
2344
|
+
/**
|
|
2345
|
+
* @public
|
|
2346
|
+
* <p>The ID of the Availability Zone or Local Zone that the instance is in.</p>
|
|
2347
|
+
*/
|
|
2348
|
+
ZoneId?: string;
|
|
2349
|
+
}
|
|
2350
|
+
/**
|
|
2351
|
+
* @public
|
|
2352
|
+
*/
|
|
2353
|
+
export interface DescribeInstanceTopologyResult {
|
|
2354
|
+
/**
|
|
2355
|
+
* @public
|
|
2356
|
+
* <p>Information about the topology of each instance.</p>
|
|
2357
|
+
*/
|
|
2358
|
+
Instances?: InstanceTopology[];
|
|
2359
|
+
/**
|
|
2360
|
+
* @public
|
|
2361
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
|
|
2362
|
+
* are no more items to return.</p>
|
|
2363
|
+
*/
|
|
2364
|
+
NextToken?: string;
|
|
2365
|
+
}
|
|
2245
2366
|
/**
|
|
2246
2367
|
* @public
|
|
2247
2368
|
* @enum
|
|
@@ -11509,69 +11630,6 @@ export interface DescribeTransitGatewayPolicyTablesRequest {
|
|
|
11509
11630
|
*/
|
|
11510
11631
|
DryRun?: boolean;
|
|
11511
11632
|
}
|
|
11512
|
-
/**
|
|
11513
|
-
* @public
|
|
11514
|
-
*/
|
|
11515
|
-
export interface DescribeTransitGatewayPolicyTablesResult {
|
|
11516
|
-
/**
|
|
11517
|
-
* @public
|
|
11518
|
-
* <p>Describes the transit gateway policy tables.</p>
|
|
11519
|
-
*/
|
|
11520
|
-
TransitGatewayPolicyTables?: TransitGatewayPolicyTable[];
|
|
11521
|
-
/**
|
|
11522
|
-
* @public
|
|
11523
|
-
* <p>The token for the next page of results.</p>
|
|
11524
|
-
*/
|
|
11525
|
-
NextToken?: string;
|
|
11526
|
-
}
|
|
11527
|
-
/**
|
|
11528
|
-
* @public
|
|
11529
|
-
*/
|
|
11530
|
-
export interface DescribeTransitGatewayRouteTableAnnouncementsRequest {
|
|
11531
|
-
/**
|
|
11532
|
-
* @public
|
|
11533
|
-
* <p>The IDs of the transit gateway route tables that are being advertised.</p>
|
|
11534
|
-
*/
|
|
11535
|
-
TransitGatewayRouteTableAnnouncementIds?: string[];
|
|
11536
|
-
/**
|
|
11537
|
-
* @public
|
|
11538
|
-
* <p>The filters associated with the transit gateway policy table.</p>
|
|
11539
|
-
*/
|
|
11540
|
-
Filters?: Filter[];
|
|
11541
|
-
/**
|
|
11542
|
-
* @public
|
|
11543
|
-
* <p>The maximum number of results to return with a single call.
|
|
11544
|
-
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
11545
|
-
*/
|
|
11546
|
-
MaxResults?: number;
|
|
11547
|
-
/**
|
|
11548
|
-
* @public
|
|
11549
|
-
* <p>The token for the next page of results.</p>
|
|
11550
|
-
*/
|
|
11551
|
-
NextToken?: string;
|
|
11552
|
-
/**
|
|
11553
|
-
* @public
|
|
11554
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
11555
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
11556
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
11557
|
-
*/
|
|
11558
|
-
DryRun?: boolean;
|
|
11559
|
-
}
|
|
11560
|
-
/**
|
|
11561
|
-
* @public
|
|
11562
|
-
*/
|
|
11563
|
-
export interface DescribeTransitGatewayRouteTableAnnouncementsResult {
|
|
11564
|
-
/**
|
|
11565
|
-
* @public
|
|
11566
|
-
* <p>Describes the transit gateway route table announcement.</p>
|
|
11567
|
-
*/
|
|
11568
|
-
TransitGatewayRouteTableAnnouncements?: TransitGatewayRouteTableAnnouncement[];
|
|
11569
|
-
/**
|
|
11570
|
-
* @public
|
|
11571
|
-
* <p>The token for the next page of results.</p>
|
|
11572
|
-
*/
|
|
11573
|
-
NextToken?: string;
|
|
11574
|
-
}
|
|
11575
11633
|
/**
|
|
11576
11634
|
* @internal
|
|
11577
11635
|
*/
|