@aws-sdk/client-ec2 3.1065.0 → 3.1067.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 +14 -0
- package/dist-cjs/index.js +28 -0
- package/dist-cjs/schemas/schemas_0.js +127 -66
- package/dist-es/EC2.js +4 -0
- package/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
- package/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +65 -4
- package/dist-types/EC2.d.ts +14 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
- package/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
- package/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
- package/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
- package/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
- package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -2
- package/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
- package/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
- package/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
- package/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +37 -22
- package/dist-types/models/models_1.d.ts +24 -100
- package/dist-types/models/models_2.d.ts +100 -34
- package/dist-types/models/models_3.d.ts +73 -120
- package/dist-types/models/models_4.d.ts +128 -172
- package/dist-types/models/models_5.d.ts +204 -183
- package/dist-types/models/models_6.d.ts +186 -119
- package/dist-types/models/models_7.d.ts +115 -1
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/EC2.d.ts +34 -0
- package/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -6
- package/dist-types/ts3.4/models/models_1.d.ts +7 -20
- package/dist-types/ts3.4/models/models_2.d.ts +23 -9
- package/dist-types/ts3.4/models/models_3.d.ts +16 -26
- package/dist-types/ts3.4/models/models_4.d.ts +30 -26
- package/dist-types/ts3.4/models/models_5.d.ts +35 -37
- package/dist-types/ts3.4/models/models_6.d.ts +37 -29
- package/dist-types/ts3.4/models/models_7.d.ts +26 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/
|
|
4
|
+
import type { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/models_6";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetCapacityManagerMetricDataRequest } from "../models/
|
|
5
|
-
import type { GetCapacityManagerMetricDataResult } from "../models/models_6";
|
|
4
|
+
import type { GetCapacityManagerMetricDataRequest, GetCapacityManagerMetricDataResult } from "../models/models_6";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyIpamScopeRequest
|
|
4
|
+
import type { ModifyIpamScopeRequest } from "../models/models_6";
|
|
5
|
+
import type { ModifyIpamScopeResult } from "../models/models_7";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/
|
|
4
|
+
import type { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/
|
|
4
|
+
import type { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -35,6 +35,7 @@ export * from "./AssociateTransitGatewayRouteTableCommand";
|
|
|
35
35
|
export * from "./AssociateTrunkInterfaceCommand";
|
|
36
36
|
export * from "./AssociateVpcCidrBlockCommand";
|
|
37
37
|
export * from "./AttachClassicLinkVpcCommand";
|
|
38
|
+
export * from "./AttachImageWatermarkCommand";
|
|
38
39
|
export * from "./AttachInternetGatewayCommand";
|
|
39
40
|
export * from "./AttachNetworkInterfaceCommand";
|
|
40
41
|
export * from "./AttachVerifiedAccessTrustProviderCommand";
|
|
@@ -454,6 +455,7 @@ export * from "./DescribeVpnConcentratorsCommand";
|
|
|
454
455
|
export * from "./DescribeVpnConnectionsCommand";
|
|
455
456
|
export * from "./DescribeVpnGatewaysCommand";
|
|
456
457
|
export * from "./DetachClassicLinkVpcCommand";
|
|
458
|
+
export * from "./DetachImageWatermarkCommand";
|
|
457
459
|
export * from "./DetachInternetGatewayCommand";
|
|
458
460
|
export * from "./DetachNetworkInterfaceCommand";
|
|
459
461
|
export * from "./DetachVerifiedAccessTrustProviderCommand";
|
|
@@ -4631,6 +4631,43 @@ export interface AttachClassicLinkVpcResult {
|
|
|
4631
4631
|
*/
|
|
4632
4632
|
Return?: boolean | undefined;
|
|
4633
4633
|
}
|
|
4634
|
+
/**
|
|
4635
|
+
* @public
|
|
4636
|
+
*/
|
|
4637
|
+
export interface AttachImageWatermarkRequest {
|
|
4638
|
+
/**
|
|
4639
|
+
* <p>The ID of the AMI.</p>
|
|
4640
|
+
* @public
|
|
4641
|
+
*/
|
|
4642
|
+
ImageId: string | undefined;
|
|
4643
|
+
/**
|
|
4644
|
+
* <p>The name for the watermark. Combined with the caller's account ID to form the
|
|
4645
|
+
* <code>WatermarkKey</code> (<code>accountId:watermarkName</code>).</p>
|
|
4646
|
+
* <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces
|
|
4647
|
+
* ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or
|
|
4648
|
+
* underscores(_)</p>
|
|
4649
|
+
* @public
|
|
4650
|
+
*/
|
|
4651
|
+
WatermarkName: string | undefined;
|
|
4652
|
+
/**
|
|
4653
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
4654
|
+
* and provides an error response. If you have the required permissions, the error response is
|
|
4655
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4656
|
+
* @public
|
|
4657
|
+
*/
|
|
4658
|
+
DryRun?: boolean | undefined;
|
|
4659
|
+
}
|
|
4660
|
+
/**
|
|
4661
|
+
* @public
|
|
4662
|
+
*/
|
|
4663
|
+
export interface AttachImageWatermarkResult {
|
|
4664
|
+
/**
|
|
4665
|
+
* <p>The watermark identifier, in <code>accountId:watermarkName</code> format (for example,
|
|
4666
|
+
* <code>123456789012:approvedAmi</code>).</p>
|
|
4667
|
+
* @public
|
|
4668
|
+
*/
|
|
4669
|
+
WatermarkKey?: string | undefined;
|
|
4670
|
+
}
|
|
4634
4671
|
/**
|
|
4635
4672
|
* @public
|
|
4636
4673
|
*/
|
|
@@ -9351,25 +9388,3 @@ export interface Subnet {
|
|
|
9351
9388
|
*/
|
|
9352
9389
|
MapPublicIpOnLaunch?: boolean | undefined;
|
|
9353
9390
|
}
|
|
9354
|
-
/**
|
|
9355
|
-
* @public
|
|
9356
|
-
*/
|
|
9357
|
-
export interface CreateDefaultSubnetResult {
|
|
9358
|
-
/**
|
|
9359
|
-
* <p>Information about the subnet.</p>
|
|
9360
|
-
* @public
|
|
9361
|
-
*/
|
|
9362
|
-
Subnet?: Subnet | undefined;
|
|
9363
|
-
}
|
|
9364
|
-
/**
|
|
9365
|
-
* @public
|
|
9366
|
-
*/
|
|
9367
|
-
export interface CreateDefaultVpcRequest {
|
|
9368
|
-
/**
|
|
9369
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
9370
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
9371
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9372
|
-
* @public
|
|
9373
|
-
*/
|
|
9374
|
-
DryRun?: boolean | undefined;
|
|
9375
|
-
}
|
|
@@ -1,5 +1,27 @@
|
|
|
1
|
-
import type { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacModificationTaskState, MacModificationTaskType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode,
|
|
2
|
-
import type { AcceleratorCount, AcceleratorCountRequest, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, BlockPublicAccessStates, InstanceEventWindow, Ipv4PrefixSpecification, NatGatewayAddress, OperatorResponse, PortRange, ReservedInstancesListing, Tag, TagSpecification, UnsuccessfulItem, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation } from "./models_0";
|
|
1
|
+
import type { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacModificationTaskState, MacModificationTaskType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode, RouteServerPersistRoutesAction, RouteServerPersistRoutesState, RouteServerState, RuleAction, SecondaryInterfaceType, ShutdownBehavior, SnapshotLocationEnum, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, SpotInstanceType, SpreadLevel, TaggableResourceType, TargetCapacityUnitType, Tenancy, TokenState, TrafficType, VolumeType, VpcEncryptionControlExclusionState, VpcEncryptionControlMode, VpcEncryptionControlState, VpcState, WeekDay } from "./enums";
|
|
2
|
+
import type { AcceleratorCount, AcceleratorCountRequest, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, BlockPublicAccessStates, InstanceEventWindow, Ipv4PrefixSpecification, NatGatewayAddress, OperatorResponse, PortRange, ReservedInstancesListing, Subnet, Tag, TagSpecification, UnsuccessfulItem, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateDefaultSubnetResult {
|
|
7
|
+
/**
|
|
8
|
+
* <p>Information about the subnet.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
Subnet?: Subnet | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface CreateDefaultVpcRequest {
|
|
17
|
+
/**
|
|
18
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
19
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
20
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
DryRun?: boolean | undefined;
|
|
24
|
+
}
|
|
3
25
|
/**
|
|
4
26
|
* <p>Describes an exclusion configuration for VPC Encryption Control.</p>
|
|
5
27
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-encryption-controls.html">Enforce VPC encryption in transit</a> in the <i>Amazon VPC User Guide</i>.</p>
|
|
@@ -12468,101 +12490,3 @@ export interface RouteServerBgpStatus {
|
|
|
12468
12490
|
*/
|
|
12469
12491
|
Status?: RouteServerBgpState | undefined;
|
|
12470
12492
|
}
|
|
12471
|
-
/**
|
|
12472
|
-
* <p>Describes a BGP peer configuration for a route server endpoint.</p>
|
|
12473
|
-
* <p>A route server peer is a session between a route server endpoint and the device deployed in Amazon Web Services (such as a firewall appliance or other network security function running on an EC2 instance). The device must meet these requirements:</p>
|
|
12474
|
-
* <ul>
|
|
12475
|
-
* <li>
|
|
12476
|
-
* <p>Have an elastic network interface in the VPC</p>
|
|
12477
|
-
* </li>
|
|
12478
|
-
* <li>
|
|
12479
|
-
* <p>Support BGP (Border Gateway Protocol)</p>
|
|
12480
|
-
* </li>
|
|
12481
|
-
* <li>
|
|
12482
|
-
* <p>Can initiate BGP sessions</p>
|
|
12483
|
-
* </li>
|
|
12484
|
-
* </ul>
|
|
12485
|
-
* @public
|
|
12486
|
-
*/
|
|
12487
|
-
export interface RouteServerPeer {
|
|
12488
|
-
/**
|
|
12489
|
-
* <p>The unique identifier of the route server peer.</p>
|
|
12490
|
-
* @public
|
|
12491
|
-
*/
|
|
12492
|
-
RouteServerPeerId?: string | undefined;
|
|
12493
|
-
/**
|
|
12494
|
-
* <p>The ID of the route server endpoint associated with this peer.</p>
|
|
12495
|
-
* @public
|
|
12496
|
-
*/
|
|
12497
|
-
RouteServerEndpointId?: string | undefined;
|
|
12498
|
-
/**
|
|
12499
|
-
* <p>The ID of the route server associated with this peer.</p>
|
|
12500
|
-
* @public
|
|
12501
|
-
*/
|
|
12502
|
-
RouteServerId?: string | undefined;
|
|
12503
|
-
/**
|
|
12504
|
-
* <p>The ID of the VPC containing the route server peer.</p>
|
|
12505
|
-
* @public
|
|
12506
|
-
*/
|
|
12507
|
-
VpcId?: string | undefined;
|
|
12508
|
-
/**
|
|
12509
|
-
* <p>The ID of the subnet containing the route server peer.</p>
|
|
12510
|
-
* @public
|
|
12511
|
-
*/
|
|
12512
|
-
SubnetId?: string | undefined;
|
|
12513
|
-
/**
|
|
12514
|
-
* <p>The current state of the route server peer.</p>
|
|
12515
|
-
* @public
|
|
12516
|
-
*/
|
|
12517
|
-
State?: RouteServerPeerState | undefined;
|
|
12518
|
-
/**
|
|
12519
|
-
* <p>The reason for any failure in peer creation or operation.</p>
|
|
12520
|
-
* @public
|
|
12521
|
-
*/
|
|
12522
|
-
FailureReason?: string | undefined;
|
|
12523
|
-
/**
|
|
12524
|
-
* <p>The ID of the Elastic network interface for the route server endpoint.</p>
|
|
12525
|
-
* @public
|
|
12526
|
-
*/
|
|
12527
|
-
EndpointEniId?: string | undefined;
|
|
12528
|
-
/**
|
|
12529
|
-
* <p>The IP address of the Elastic network interface for the route server endpoint.</p>
|
|
12530
|
-
* @public
|
|
12531
|
-
*/
|
|
12532
|
-
EndpointEniAddress?: string | undefined;
|
|
12533
|
-
/**
|
|
12534
|
-
* <p>The IPv4 address of the peer device.</p>
|
|
12535
|
-
* @public
|
|
12536
|
-
*/
|
|
12537
|
-
PeerAddress?: string | undefined;
|
|
12538
|
-
/**
|
|
12539
|
-
* <p>The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.</p>
|
|
12540
|
-
* @public
|
|
12541
|
-
*/
|
|
12542
|
-
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
12543
|
-
/**
|
|
12544
|
-
* <p>The current status of the BGP session with this peer.</p>
|
|
12545
|
-
* @public
|
|
12546
|
-
*/
|
|
12547
|
-
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
12548
|
-
/**
|
|
12549
|
-
* <p>The current status of the BFD session with this peer.</p>
|
|
12550
|
-
* @public
|
|
12551
|
-
*/
|
|
12552
|
-
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
12553
|
-
/**
|
|
12554
|
-
* <p>Any tags assigned to the route server peer.</p>
|
|
12555
|
-
* @public
|
|
12556
|
-
*/
|
|
12557
|
-
Tags?: Tag[] | undefined;
|
|
12558
|
-
}
|
|
12559
|
-
/**
|
|
12560
|
-
* @public
|
|
12561
|
-
*/
|
|
12562
|
-
export interface CreateRouteServerPeerResult {
|
|
12563
|
-
/**
|
|
12564
|
-
* <p>Information about the created route server peer.</p>
|
|
12565
|
-
* @public
|
|
12566
|
-
*/
|
|
12567
|
-
RouteServerPeer?: RouteServerPeer | undefined;
|
|
12568
|
-
}
|
|
@@ -1,6 +1,104 @@
|
|
|
1
|
-
import type { ApplianceModeSupportValue, AutoAcceptSharedAssociationsValue, AutoAcceptSharedAttachmentsValue, BgpStatus, ConnectionNotificationState, ConnectionNotificationType, CopyTagsFromSource, DatafeedSubscriptionState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DeleteFleetErrorCode, DeleteQueuedReservedInstancesErrorCode, DeviceTrustProviderType, DnsNameState, DnsRecordIpType, DnsSupportValue, DynamicRoutingValue, EncryptionStateValue, FleetStateCode, GatewayAssociationState, GatewayType, Igmpv2SupportValue, InstanceEventWindowState, InternetGatewayExclusionMode, IpAddressType, Ipv6SupportValue, LaunchTemplateErrorCode, MulticastSupportValue, PayerResponsibility, ProtocolValue, RouteOrigin, RouteState, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, SecondarySubnetCidrBlockAssociationState, SecondarySubnetState, SecurityGroupReferencingSupportValue, ServiceConnectivityType, ServiceState, ServiceType, SnapshotLocationEnum, SnapshotState, SSEType, State, StaticSourcesSupportValue, StorageTier, SubnetCidrReservationType, TelemetryStatus, Tenancy, TrafficDirection, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorTargetType, TransferType, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayConnectPeerState, TransitGatewayMeteringPayerType, TransitGatewayMeteringPolicyEntryState, TransitGatewayMeteringPolicyState, TransitGatewayMulticastDomainState, TransitGatewayPolicyTableState, TransitGatewayPrefixListReferenceState, TransitGatewayRouteState, TransitGatewayRouteTableAnnouncementDirection, TransitGatewayRouteTableAnnouncementState, TransitGatewayRouteTableState, TransitGatewayRouteType, TransitGatewayState, TrustProviderType, TunnelInsideIpVersion, UserTrustProviderType, VerifiedAccessEndpointAttachmentType, VerifiedAccessEndpointProtocol, VerifiedAccessEndpointStatusCode, VerifiedAccessEndpointType, VolumeType, VpcBlockPublicAccessExclusionState, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcEndpointType, VpnConcentratorType, VpnEcmpSupportValue, VpnState, VpnStaticRouteSource, VpnTunnelBandwidth } from "./enums";
|
|
1
|
+
import type { ApplianceModeSupportValue, AutoAcceptSharedAssociationsValue, AutoAcceptSharedAttachmentsValue, BgpStatus, ConnectionNotificationState, ConnectionNotificationType, CopyTagsFromSource, DatafeedSubscriptionState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DeleteFleetErrorCode, DeleteQueuedReservedInstancesErrorCode, DeviceTrustProviderType, DnsNameState, DnsRecordIpType, DnsSupportValue, DynamicRoutingValue, EncryptionStateValue, FleetStateCode, GatewayAssociationState, GatewayType, Igmpv2SupportValue, InstanceEventWindowState, InternetGatewayExclusionMode, IpAddressType, Ipv6SupportValue, LaunchTemplateErrorCode, MulticastSupportValue, PayerResponsibility, ProtocolValue, RouteOrigin, RouteServerPeerState, RouteState, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, SecondarySubnetCidrBlockAssociationState, SecondarySubnetState, SecurityGroupReferencingSupportValue, ServiceConnectivityType, ServiceState, ServiceType, SnapshotLocationEnum, SnapshotState, SSEType, State, StaticSourcesSupportValue, StorageTier, SubnetCidrReservationType, TelemetryStatus, Tenancy, TrafficDirection, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorTargetType, TransferType, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayConnectPeerState, TransitGatewayMeteringPayerType, TransitGatewayMeteringPolicyEntryState, TransitGatewayMeteringPolicyState, TransitGatewayMulticastDomainState, TransitGatewayPolicyTableState, TransitGatewayPrefixListReferenceState, TransitGatewayRouteState, TransitGatewayRouteTableAnnouncementDirection, TransitGatewayRouteTableAnnouncementState, TransitGatewayRouteTableState, TransitGatewayRouteType, TransitGatewayState, TrustProviderType, TunnelInsideIpVersion, UserTrustProviderType, VerifiedAccessEndpointAttachmentType, VerifiedAccessEndpointProtocol, VerifiedAccessEndpointStatusCode, VerifiedAccessEndpointType, VolumeType, VpcBlockPublicAccessExclusionState, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcEndpointType, VpnConcentratorType, VpnEcmpSupportValue, VpnState, VpnStaticRouteSource, VpnTunnelBandwidth } from "./enums";
|
|
2
2
|
import type { CarrierGateway, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, RouteTableAssociationState, Subnet, Tag, TagSpecification, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
3
|
-
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer,
|
|
3
|
+
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer, RouteServerBfdStatus, RouteServerBgpOptions, RouteServerBgpStatus, RouteServerEndpoint, Vpc, VpcEncryptionControl } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Describes a BGP peer configuration for a route server endpoint.</p>
|
|
6
|
+
* <p>A route server peer is a session between a route server endpoint and the device deployed in Amazon Web Services (such as a firewall appliance or other network security function running on an EC2 instance). The device must meet these requirements:</p>
|
|
7
|
+
* <ul>
|
|
8
|
+
* <li>
|
|
9
|
+
* <p>Have an elastic network interface in the VPC</p>
|
|
10
|
+
* </li>
|
|
11
|
+
* <li>
|
|
12
|
+
* <p>Support BGP (Border Gateway Protocol)</p>
|
|
13
|
+
* </li>
|
|
14
|
+
* <li>
|
|
15
|
+
* <p>Can initiate BGP sessions</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* </ul>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface RouteServerPeer {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The unique identifier of the route server peer.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
RouteServerPeerId?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The ID of the route server endpoint associated with this peer.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
RouteServerEndpointId?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The ID of the route server associated with this peer.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
RouteServerId?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The ID of the VPC containing the route server peer.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
VpcId?: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The ID of the subnet containing the route server peer.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
SubnetId?: string | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The current state of the route server peer.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
State?: RouteServerPeerState | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The reason for any failure in peer creation or operation.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
FailureReason?: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The ID of the Elastic network interface for the route server endpoint.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
EndpointEniId?: string | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The IP address of the Elastic network interface for the route server endpoint.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
EndpointEniAddress?: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The IPv4 address of the peer device.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
PeerAddress?: string | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The current status of the BGP session with this peer.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The current status of the BFD session with this peer.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>Any tags assigned to the route server peer.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
Tags?: Tag[] | undefined;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export interface CreateRouteServerPeerResult {
|
|
96
|
+
/**
|
|
97
|
+
* <p>Information about the created route server peer.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
RouteServerPeer?: RouteServerPeer | undefined;
|
|
101
|
+
}
|
|
4
102
|
/**
|
|
5
103
|
* @public
|
|
6
104
|
*/
|
|
@@ -8444,35 +8542,3 @@ export interface DeleteSecurityGroupRequest {
|
|
|
8444
8542
|
*/
|
|
8445
8543
|
DryRun?: boolean | undefined;
|
|
8446
8544
|
}
|
|
8447
|
-
/**
|
|
8448
|
-
* @public
|
|
8449
|
-
*/
|
|
8450
|
-
export interface DeleteSecurityGroupResult {
|
|
8451
|
-
/**
|
|
8452
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
8453
|
-
* @public
|
|
8454
|
-
*/
|
|
8455
|
-
Return?: boolean | undefined;
|
|
8456
|
-
/**
|
|
8457
|
-
* <p>The ID of the deleted security group.</p>
|
|
8458
|
-
* @public
|
|
8459
|
-
*/
|
|
8460
|
-
GroupId?: string | undefined;
|
|
8461
|
-
}
|
|
8462
|
-
/**
|
|
8463
|
-
* @public
|
|
8464
|
-
*/
|
|
8465
|
-
export interface DeleteSnapshotRequest {
|
|
8466
|
-
/**
|
|
8467
|
-
* <p>The ID of the EBS snapshot.</p>
|
|
8468
|
-
* @public
|
|
8469
|
-
*/
|
|
8470
|
-
SnapshotId: string | undefined;
|
|
8471
|
-
/**
|
|
8472
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8473
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8474
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8475
|
-
* @public
|
|
8476
|
-
*/
|
|
8477
|
-
DryRun?: boolean | undefined;
|
|
8478
|
-
}
|
|
@@ -2,6 +2,38 @@ import type { _InstanceType, AccountAttributeName, AddressAttributeName, Allocat
|
|
|
2
2
|
import type { AccountAttribute, ActiveInstance, Address, AddressAttribute, AddressTransfer, AssociationStatus, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationCancellationQuote, CarrierGateway, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, FleetCapacityReservation, IamInstanceProfileAssociation, Tag, TransitGatewayClientVpnAttachment, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
3
3
|
import type { AttributeValue, BlockDeviceMapping, DhcpOptions, EgressOnlyInternetGateway, ExportTask, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, GroupIdentifier, LaunchTemplateAndOverridesResponse, StateReason, VpcEncryptionControl } from "./models_1";
|
|
4
4
|
import type { SubnetCidrReservation, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMeteringPolicy, TransitGatewayMeteringPolicyEntry, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion } from "./models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DeleteSecurityGroupResult {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Return?: boolean | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The ID of the deleted security group.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
GroupId?: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface DeleteSnapshotRequest {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The ID of the EBS snapshot.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
SnapshotId: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
31
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
32
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
DryRun?: boolean | undefined;
|
|
36
|
+
}
|
|
5
37
|
/**
|
|
6
38
|
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
7
39
|
* @public
|
|
@@ -8811,6 +8843,42 @@ export interface DescribeImagesRequest {
|
|
|
8811
8843
|
*/
|
|
8812
8844
|
Filters?: Filter[] | undefined;
|
|
8813
8845
|
}
|
|
8846
|
+
/**
|
|
8847
|
+
* <p>Describes a watermark attached to an AMI.</p>
|
|
8848
|
+
* @public
|
|
8849
|
+
*/
|
|
8850
|
+
export interface ImageWatermark {
|
|
8851
|
+
/**
|
|
8852
|
+
* <p>The watermark identifier, in <code>accountId:watermarkName</code> format (for example,
|
|
8853
|
+
* <code>123456789012:approvedAmi</code>). The <code>accountId</code> portion is the Amazon Web Services account
|
|
8854
|
+
* ID of the watermark creator. The <code>watermarkName</code> portion is customer-provided.</p>
|
|
8855
|
+
* @public
|
|
8856
|
+
*/
|
|
8857
|
+
WatermarkKey?: string | undefined;
|
|
8858
|
+
/**
|
|
8859
|
+
* <p>The Region where the watermark was originally attached.</p>
|
|
8860
|
+
* @public
|
|
8861
|
+
*/
|
|
8862
|
+
SourceImageRegion?: string | undefined;
|
|
8863
|
+
/**
|
|
8864
|
+
* <p>The ID of the AMI to which the watermark was originally attached.</p>
|
|
8865
|
+
* @public
|
|
8866
|
+
*/
|
|
8867
|
+
SourceImageId?: string | undefined;
|
|
8868
|
+
/**
|
|
8869
|
+
* <p>The creation date of the source AMI, in the
|
|
8870
|
+
* following format:
|
|
8871
|
+
* <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>.<i>ssssss</i>+<i>HH</i>:<i>MM</i>.</p>
|
|
8872
|
+
* @public
|
|
8873
|
+
*/
|
|
8874
|
+
SourceImageCreationTime?: Date | undefined;
|
|
8875
|
+
/**
|
|
8876
|
+
* <p>The date and time the watermark was attached to the AMI, in the following format:
|
|
8877
|
+
* <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>.<i>ssssss</i>+<i>HH</i>:<i>MM</i>.</p>
|
|
8878
|
+
* @public
|
|
8879
|
+
*/
|
|
8880
|
+
WatermarkCreationTime?: Date | undefined;
|
|
8881
|
+
}
|
|
8814
8882
|
/**
|
|
8815
8883
|
* <p>Describes an image.</p>
|
|
8816
8884
|
* @public
|
|
@@ -8983,6 +9051,11 @@ export interface Image {
|
|
|
8983
9051
|
* @public
|
|
8984
9052
|
*/
|
|
8985
9053
|
FreeTierEligible?: boolean | undefined;
|
|
9054
|
+
/**
|
|
9055
|
+
* <p>The watermarks attached to the AMI.</p>
|
|
9056
|
+
* @public
|
|
9057
|
+
*/
|
|
9058
|
+
ImageWatermarks?: ImageWatermark[] | undefined;
|
|
8986
9059
|
/**
|
|
8987
9060
|
* <p>The ID of the AMI.</p>
|
|
8988
9061
|
* @public
|
|
@@ -9584,123 +9657,3 @@ export interface DescribeImportImageTasksResult {
|
|
|
9584
9657
|
*/
|
|
9585
9658
|
NextToken?: string | undefined;
|
|
9586
9659
|
}
|
|
9587
|
-
/**
|
|
9588
|
-
* @public
|
|
9589
|
-
*/
|
|
9590
|
-
export interface DescribeImportSnapshotTasksRequest {
|
|
9591
|
-
/**
|
|
9592
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
9593
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
9594
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9595
|
-
* @public
|
|
9596
|
-
*/
|
|
9597
|
-
DryRun?: boolean | undefined;
|
|
9598
|
-
/**
|
|
9599
|
-
* <p>The filters.</p>
|
|
9600
|
-
* @public
|
|
9601
|
-
*/
|
|
9602
|
-
Filters?: Filter[] | undefined;
|
|
9603
|
-
/**
|
|
9604
|
-
* <p>A list of import snapshot task IDs.</p>
|
|
9605
|
-
* @public
|
|
9606
|
-
*/
|
|
9607
|
-
ImportTaskIds?: string[] | undefined;
|
|
9608
|
-
/**
|
|
9609
|
-
* <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call
|
|
9610
|
-
* with the returned <code>NextToken</code> value.</p>
|
|
9611
|
-
* @public
|
|
9612
|
-
*/
|
|
9613
|
-
MaxResults?: number | undefined;
|
|
9614
|
-
/**
|
|
9615
|
-
* <p>A token that indicates the next page of results.</p>
|
|
9616
|
-
* @public
|
|
9617
|
-
*/
|
|
9618
|
-
NextToken?: string | undefined;
|
|
9619
|
-
}
|
|
9620
|
-
/**
|
|
9621
|
-
* <p>Details about the import snapshot task.</p>
|
|
9622
|
-
* @public
|
|
9623
|
-
*/
|
|
9624
|
-
export interface SnapshotTaskDetail {
|
|
9625
|
-
/**
|
|
9626
|
-
* <p>The description of the disk image being imported.</p>
|
|
9627
|
-
* @public
|
|
9628
|
-
*/
|
|
9629
|
-
Description?: string | undefined;
|
|
9630
|
-
/**
|
|
9631
|
-
* <p>The size of the disk in the snapshot, in GiB.</p>
|
|
9632
|
-
* @public
|
|
9633
|
-
*/
|
|
9634
|
-
DiskImageSize?: number | undefined;
|
|
9635
|
-
/**
|
|
9636
|
-
* <p>Indicates whether the snapshot is encrypted.</p>
|
|
9637
|
-
* @public
|
|
9638
|
-
*/
|
|
9639
|
-
Encrypted?: boolean | undefined;
|
|
9640
|
-
/**
|
|
9641
|
-
* <p>The format of the disk image from which the snapshot is created.</p>
|
|
9642
|
-
* @public
|
|
9643
|
-
*/
|
|
9644
|
-
Format?: string | undefined;
|
|
9645
|
-
/**
|
|
9646
|
-
* <p>The identifier for the KMS key that was used to create the encrypted snapshot.</p>
|
|
9647
|
-
* @public
|
|
9648
|
-
*/
|
|
9649
|
-
KmsKeyId?: string | undefined;
|
|
9650
|
-
/**
|
|
9651
|
-
* <p>The percentage of completion for the import snapshot task.</p>
|
|
9652
|
-
* @public
|
|
9653
|
-
*/
|
|
9654
|
-
Progress?: string | undefined;
|
|
9655
|
-
/**
|
|
9656
|
-
* <p>The snapshot ID of the disk being imported.</p>
|
|
9657
|
-
* @public
|
|
9658
|
-
*/
|
|
9659
|
-
SnapshotId?: string | undefined;
|
|
9660
|
-
/**
|
|
9661
|
-
* <p>A brief status for the import snapshot task.</p>
|
|
9662
|
-
* @public
|
|
9663
|
-
*/
|
|
9664
|
-
Status?: string | undefined;
|
|
9665
|
-
/**
|
|
9666
|
-
* <p>A detailed status message for the import snapshot task.</p>
|
|
9667
|
-
* @public
|
|
9668
|
-
*/
|
|
9669
|
-
StatusMessage?: string | undefined;
|
|
9670
|
-
/**
|
|
9671
|
-
* <p>The URL of the disk image from which the snapshot is created.</p>
|
|
9672
|
-
* @public
|
|
9673
|
-
*/
|
|
9674
|
-
Url?: string | undefined;
|
|
9675
|
-
/**
|
|
9676
|
-
* <p>The Amazon S3 bucket for the disk image.</p>
|
|
9677
|
-
* @public
|
|
9678
|
-
*/
|
|
9679
|
-
UserBucket?: UserBucketDetails | undefined;
|
|
9680
|
-
}
|
|
9681
|
-
/**
|
|
9682
|
-
* <p>Describes an import snapshot task.</p>
|
|
9683
|
-
* @public
|
|
9684
|
-
*/
|
|
9685
|
-
export interface ImportSnapshotTask {
|
|
9686
|
-
/**
|
|
9687
|
-
* <p>A description of the import snapshot task.</p>
|
|
9688
|
-
* @public
|
|
9689
|
-
*/
|
|
9690
|
-
Description?: string | undefined;
|
|
9691
|
-
/**
|
|
9692
|
-
* <p>The ID of the import snapshot task.</p>
|
|
9693
|
-
* @public
|
|
9694
|
-
*/
|
|
9695
|
-
ImportTaskId?: string | undefined;
|
|
9696
|
-
/**
|
|
9697
|
-
* <p>Describes an import snapshot task.</p>
|
|
9698
|
-
* @public
|
|
9699
|
-
*/
|
|
9700
|
-
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
9701
|
-
/**
|
|
9702
|
-
* <p>The tags for the import snapshot task.</p>
|
|
9703
|
-
* @public
|
|
9704
|
-
*/
|
|
9705
|
-
Tags?: Tag[] | undefined;
|
|
9706
|
-
}
|