@aws-sdk/client-ec2 3.1116.0 → 3.1118.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.
Files changed (48) hide show
  1. package/dist-cjs/index.js +55 -6
  2. package/dist-es/models/enums.js +9 -0
  3. package/dist-es/schemas/schemas_0.js +40 -5
  4. package/dist-types/commands/CreateFleetCommand.d.ts +15 -1
  5. package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
  6. package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +1 -2
  8. package/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeFleetsCommand.d.ts +9 -2
  10. package/dist-types/commands/DescribeFlowLogsCommand.d.ts +1 -2
  11. package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +1 -2
  13. package/dist-types/commands/EnableFastLaunchCommand.d.ts +1 -2
  14. package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  15. package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
  16. package/dist-types/commands/ResetAddressAttributeCommand.d.ts +1 -1
  17. package/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +1 -2
  18. package/dist-types/commands/RunInstancesCommand.d.ts +1 -1
  19. package/dist-types/models/enums.d.ts +25 -0
  20. package/dist-types/models/models_1.d.ts +74 -59
  21. package/dist-types/models/models_2.d.ts +52 -29
  22. package/dist-types/models/models_3.d.ts +69 -118
  23. package/dist-types/models/models_4.d.ts +113 -154
  24. package/dist-types/models/models_5.d.ts +153 -86
  25. package/dist-types/models/models_6.d.ts +86 -131
  26. package/dist-types/models/models_7.d.ts +135 -49
  27. package/dist-types/models/models_8.d.ts +46 -2
  28. package/dist-types/schemas/schemas_0.d.ts +3 -0
  29. package/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +2 -1
  32. package/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +1 -2
  33. package/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +1 -2
  35. package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +1 -2
  38. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  39. package/dist-types/ts3.4/models/models_1.d.ts +12 -13
  40. package/dist-types/ts3.4/models/models_2.d.ts +12 -9
  41. package/dist-types/ts3.4/models/models_3.d.ts +15 -17
  42. package/dist-types/ts3.4/models/models_4.d.ts +18 -36
  43. package/dist-types/ts3.4/models/models_5.d.ts +30 -17
  44. package/dist-types/ts3.4/models/models_6.d.ts +16 -24
  45. package/dist-types/ts3.4/models/models_7.d.ts +28 -13
  46. package/dist-types/ts3.4/models/models_8.d.ts +13 -0
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
  48. package/package.json +1 -1
@@ -3,8 +3,93 @@ import type { AccessScopeAnalysisFinding, ActiveVpnTunnelStatus, InterruptibleCa
3
3
  import type { InstanceRequirementsRequest, IpamInternetRegistryAssociation, IpamResourceTag, NetworkInsightsAccessScopeContent, Placement, RequestIpamResourceTag, ResponseLaunchTemplateData } from "./models_1";
4
4
  import type { SubnetCidrReservation, TransitGatewayMeteringPolicyEntry, TransitGatewayPolicyTableEntry, TransitGatewayPrefixListReference } from "./models_2";
5
5
  import type { ConversionTask, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchSnapshotConfigurationResponse, Filter, IpamPoolCidr } from "./models_3";
6
- import type { ImportImageLicenseConfigurationResponse, RegisteredInstance, SnapshotDetail, SnapshotTaskDetail } from "./models_4";
6
+ import type { ImportImageLicenseConfigurationResponse, RegisteredInstance, SnapshotDetail } from "./models_4";
7
7
  import type { RouteServerPropagation, TransitGatewayPropagation } from "./models_5";
8
+ /**
9
+ * <p>Request to create a launch template for a Windows fast launch enabled AMI.</p>
10
+ * <note>
11
+ * <p>Note - You can specify either the <code>LaunchTemplateName</code> or the
12
+ * <code>LaunchTemplateId</code>, but not both.</p>
13
+ * </note>
14
+ * @public
15
+ */
16
+ export interface FastLaunchLaunchTemplateSpecificationRequest {
17
+ /**
18
+ * <p>Specify the ID of the launch template that the AMI should use for Windows fast
19
+ * launch.</p>
20
+ * @public
21
+ */
22
+ LaunchTemplateId?: string | undefined;
23
+ /**
24
+ * <p>Specify the name of the launch template that the AMI should use for Windows fast
25
+ * launch.</p>
26
+ * @public
27
+ */
28
+ LaunchTemplateName?: string | undefined;
29
+ /**
30
+ * <p>Specify the version of the launch template that the AMI should use for Windows fast
31
+ * launch.</p>
32
+ * @public
33
+ */
34
+ Version: string | undefined;
35
+ }
36
+ /**
37
+ * <p>Configuration settings for creating and managing pre-provisioned snapshots for a Windows
38
+ * fast launch enabled AMI.</p>
39
+ * @public
40
+ */
41
+ export interface FastLaunchSnapshotConfigurationRequest {
42
+ /**
43
+ * <p>The number of pre-provisioned snapshots to keep on hand for a Windows fast launch enabled
44
+ * AMI.</p>
45
+ * @public
46
+ */
47
+ TargetResourceCount?: number | undefined;
48
+ }
49
+ /**
50
+ * @public
51
+ */
52
+ export interface EnableFastLaunchRequest {
53
+ /**
54
+ * <p>Specify the ID of the image for which to enable Windows fast launch.</p>
55
+ * @public
56
+ */
57
+ ImageId: string | undefined;
58
+ /**
59
+ * <p>The type of resource to use for pre-provisioning the AMI for Windows fast launch.
60
+ * Supported values include: <code>snapshot</code>, which is the default value.</p>
61
+ * @public
62
+ */
63
+ ResourceType?: string | undefined;
64
+ /**
65
+ * <p>Configuration settings for creating and managing the snapshots that are used for
66
+ * pre-provisioning the AMI for Windows fast launch. The associated <code>ResourceType</code>
67
+ * must be <code>snapshot</code>.</p>
68
+ * @public
69
+ */
70
+ SnapshotConfiguration?: FastLaunchSnapshotConfigurationRequest | undefined;
71
+ /**
72
+ * <p>The launch template to use when launching Windows instances from pre-provisioned
73
+ * snapshots. Launch template parameters can include either the name or ID of the launch
74
+ * template, but not both.</p>
75
+ * @public
76
+ */
77
+ LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest | undefined;
78
+ /**
79
+ * <p>The maximum number of instances that Amazon EC2 can launch at the same time to create
80
+ * pre-provisioned snapshots for Windows fast launch. Value must be <code>6</code> or
81
+ * greater.</p>
82
+ * @public
83
+ */
84
+ MaxParallelLaunches?: number | undefined;
85
+ /**
86
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
87
+ * and provides an error response. If you have the required permissions, the error response is
88
+ * <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
89
+ * @public
90
+ */
91
+ DryRun?: boolean | undefined;
92
+ }
8
93
  /**
9
94
  * @public
10
95
  */
@@ -8302,133 +8387,3 @@ export interface ImportKeyPairResult {
8302
8387
  */
8303
8388
  Tags?: Tag[] | undefined;
8304
8389
  }
8305
- /**
8306
- * <p>The disk container object for the import snapshot request.</p>
8307
- * @public
8308
- */
8309
- export interface SnapshotDiskContainer {
8310
- /**
8311
- * <p>The description of the disk image being imported.</p>
8312
- * @public
8313
- */
8314
- Description?: string | undefined;
8315
- /**
8316
- * <p>The format of the disk image being imported.</p>
8317
- * <p>Valid values: <code>VHD</code> | <code>VMDK</code> | <code>RAW</code>
8318
- * </p>
8319
- * @public
8320
- */
8321
- Format?: string | undefined;
8322
- /**
8323
- * <p>The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon
8324
- * S3 URL (s3://..).</p>
8325
- * @public
8326
- */
8327
- Url?: string | undefined;
8328
- /**
8329
- * <p>The Amazon S3 bucket for the disk image.</p>
8330
- * @public
8331
- */
8332
- UserBucket?: UserBucket | undefined;
8333
- }
8334
- /**
8335
- * @public
8336
- */
8337
- export interface ImportSnapshotRequest {
8338
- /**
8339
- * <p>The client-specific data.</p>
8340
- * @public
8341
- */
8342
- ClientData?: ClientData | undefined;
8343
- /**
8344
- * <p>Token to enable idempotency for VM import requests.</p>
8345
- * @public
8346
- */
8347
- ClientToken?: string | undefined;
8348
- /**
8349
- * <p>The description string for the import snapshot task.</p>
8350
- * @public
8351
- */
8352
- Description?: string | undefined;
8353
- /**
8354
- * <p>Information about the disk container.</p>
8355
- * @public
8356
- */
8357
- DiskContainer?: SnapshotDiskContainer | undefined;
8358
- /**
8359
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
8360
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
8361
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
8362
- * @public
8363
- */
8364
- DryRun?: boolean | undefined;
8365
- /**
8366
- * <p>Specifies whether the destination snapshot of the imported image should be encrypted. The default KMS key for EBS is
8367
- * used unless you specify a non-default KMS key using <code>KmsKeyId</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html">Amazon EBS Encryption</a> in the
8368
- * <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
8369
- * @public
8370
- */
8371
- Encrypted?: boolean | undefined;
8372
- /**
8373
- * <p>An identifier for the symmetric KMS key to use when creating the
8374
- * encrypted snapshot. This parameter is only required if you want to use a non-default KMS key; if this
8375
- * parameter is not specified, the default KMS key for EBS is used. If a <code>KmsKeyId</code> is
8376
- * specified, the <code>Encrypted</code> flag must also be set. </p>
8377
- * <p>The KMS key identifier may be provided in any of the following formats: </p>
8378
- * <ul>
8379
- * <li>
8380
- * <p>Key ID</p>
8381
- * </li>
8382
- * <li>
8383
- * <p>Key alias</p>
8384
- * </li>
8385
- * <li>
8386
- * <p>ARN using key ID. The ID ARN contains the <code>arn:aws:kms</code> namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the <code>key</code> namespace, and then the key ID. For example, arn:aws:kms:<i>us-east-1</i>:<i>012345678910</i>:key/<i>abcd1234-a123-456a-a12b-a123b4cd56ef</i>.</p>
8387
- * </li>
8388
- * <li>
8389
- * <p>ARN using key alias. The alias ARN contains the <code>arn:aws:kms</code> namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the <code>alias</code> namespace, and then the key alias. For example, arn:aws:kms:<i>us-east-1</i>:<i>012345678910</i>:alias/<i>ExampleAlias</i>. </p>
8390
- * </li>
8391
- * </ul>
8392
- * <p>Amazon Web Services parses <code>KmsKeyId</code> asynchronously, meaning that the action you call may appear to complete even
8393
- * though you provided an invalid identifier. This action will eventually report failure. </p>
8394
- * <p>The specified KMS key must exist in the Region that the snapshot is being copied to.</p>
8395
- * <p>Amazon EBS does not support asymmetric KMS keys.</p>
8396
- * @public
8397
- */
8398
- KmsKeyId?: string | undefined;
8399
- /**
8400
- * <p>The name of the role to use when not using the default role, 'vmimport'.</p>
8401
- * @public
8402
- */
8403
- RoleName?: string | undefined;
8404
- /**
8405
- * <p>The tags to apply to the import snapshot task during creation.</p>
8406
- * @public
8407
- */
8408
- TagSpecifications?: TagSpecification[] | undefined;
8409
- }
8410
- /**
8411
- * @public
8412
- */
8413
- export interface ImportSnapshotResult {
8414
- /**
8415
- * <p>A description of the import snapshot task.</p>
8416
- * @public
8417
- */
8418
- Description?: string | undefined;
8419
- /**
8420
- * <p>The ID of the import snapshot task.</p>
8421
- * @public
8422
- */
8423
- ImportTaskId?: string | undefined;
8424
- /**
8425
- * <p>Information about the import snapshot task.</p>
8426
- * @public
8427
- */
8428
- SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
8429
- /**
8430
- * <p>Any tags assigned to the import snapshot task.</p>
8431
- * @public
8432
- */
8433
- Tags?: Tag[] | undefined;
8434
- }
@@ -1,11 +1,141 @@
1
- import type { _InstanceType, AccountVpcEncryptionControlMode, AddressAttributeName, Affinity, AggregationStatusEnum, ApplianceModeSupportValue, ArchitectureValues, AutoAcceptSharedAttachmentsValue, AutoPlacement, BootModeValues, CapacityReservationInstancePlatform, CapacityReservationPreference, CurrencyCodeValues, DefaultHttpTokensEnforcedState, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsSupportValue, EncryptionSupportOptionValue, EndDateType, ExcessCapacityTerminationPolicy, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, HostMaintenance, HostnameType, HostRecovery, HostTenancy, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InternetGatewayBlockMode, InternetGatewayExclusionMode, IpAddressType, IpamMeteredAccount, IpamPolicyResourceType, IpamTier, IpScopeEnum, Ipv6SupportValue, IpVersionEnum, LockMode, LockState, ManagedResourceDefaultVisibility, MetadataDefaultHttpTokensState, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, NetworkProtocolEnum, OperationType, PayerResponsibility, PayerResponsibilityScope, PayerResponsibilityType, PermissionGroup, PublicIpDnsOption, ReportInstanceReasonCodes, ReportStatusType, RouteServerPersistRoutesAction, RuleAction, SecurityGroupReferencingSupportValue, SelfServicePortal, SnapshotAttributeName, SpotInstanceType, Status, TargetStorageTier, TpmSupportValues, TrafficDirection, TrafficMirrorFilterRuleField, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorSessionField, UnlimitedSupportedInstanceFamily, UnsuccessfulInstanceCreditSpecificationErrorCode, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeState, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy, VpnEcmpSupportValue, VpnTunnelBandwidth } from "./enums";
2
- import type { AccountVpcEncryptionControl, AddedPrincipal, AddIpamOperatingRegion, AddIpamOrganizationalUnitExclusion, AddPrefixListEntry, AddressAttribute, ApplicationStatusCheckResponseObject, ByoipCidr, CapacityReservation, ClientConnectOptions, ClientLoginBannerOptions, ClientRouteEnforcementOptions, EnaSrdSpecification, HealthCheckPathRequestObject, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, IpamRoutingPolicyRegistrationDelta, OperatorResponse, PortRange, RouteTableAssociationState, TagSpecification, TransitGatewayClientVpnAttachment, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider } from "./models_0";
1
+ import type { _InstanceType, AccountVpcEncryptionControlMode, Affinity, AggregationStatusEnum, ApplianceModeSupportValue, ArchitectureValues, AutoAcceptSharedAttachmentsValue, AutoPlacement, BootModeValues, CapacityReservationInstancePlatform, CapacityReservationPreference, CurrencyCodeValues, DefaultHttpTokensEnforcedState, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsSupportValue, EncryptionSupportOptionValue, EndDateType, ExcessCapacityTerminationPolicy, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, HostMaintenance, HostnameType, HostRecovery, HostTenancy, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InternetGatewayBlockMode, InternetGatewayExclusionMode, IpAddressType, IpamMeteredAccount, IpamPolicyResourceType, IpamTier, IpScopeEnum, Ipv6SupportValue, IpVersionEnum, LockMode, LockState, ManagedResourceDefaultVisibility, MetadataDefaultHttpTokensState, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, NetworkProtocolEnum, OperationType, PayerResponsibility, PayerResponsibilityScope, PayerResponsibilityType, PermissionGroup, PublicIpDnsOption, ReportInstanceReasonCodes, ReportStatusType, RouteServerPersistRoutesAction, RuleAction, SecurityGroupReferencingSupportValue, SelfServicePortal, SnapshotAttributeName, SpotInstanceType, Status, TargetStorageTier, TpmSupportValues, TrafficDirection, TrafficMirrorFilterRuleField, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorSessionField, UnlimitedSupportedInstanceFamily, UnsuccessfulInstanceCreditSpecificationErrorCode, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeState, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy, VpnEcmpSupportValue, VpnTunnelBandwidth } from "./enums";
2
+ import type { AccountVpcEncryptionControl, AddedPrincipal, AddIpamOperatingRegion, AddIpamOrganizationalUnitExclusion, AddPrefixListEntry, AddressAttribute, ApplicationStatusCheckResponseObject, ByoipCidr, CapacityReservation, ClientConnectOptions, ClientLoginBannerOptions, ClientRouteEnforcementOptions, EnaSrdSpecification, HealthCheckPathRequestObject, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, IpamRoutingPolicyRegistrationDelta, OperatorResponse, PortRange, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayClientVpnAttachment, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider } from "./models_0";
3
3
  import type { AttributeValue, BlockDeviceMapping, CapacityReservationTarget, ConnectionLogOptions, ConnectionTrackingSpecificationRequest, ExternalAuthorityConfiguration, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, Ipam, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverRuleRequest, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList, RequestIpamResourceTag, TargetCapacitySpecificationRequest, TransitGatewayConfigurationInputStructure, VpcEncryptionControl } from "./models_1";
4
4
  import type { DnsOptionsSpecification, IKEVersionsRequestListValue, PayerResponsibilityEntry, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, RouteServer, SubnetConfiguration, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorPortRangeRequest, TrafficMirrorSession, TransitGateway, TransitGatewayMeteringPolicy, TransitGatewayPolicyTableEntry, TransitGatewayPrefixListReference, TransitGatewayRequestPolicyRule, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpcBlockPublicAccessExclusion, VpnConnection, VpnTunnelLogOptionsSpecification } from "./models_2";
5
5
  import type { Byoasn, CapacityBlock, CapacityBlockExtension, ConversionTask, InstanceTagNotificationAttribute, IpamPoolCidr } from "./models_3";
6
- import type { AttributeBooleanValue, FpgaImageAttribute, InstanceMetadataOptionsResponse, InstanceStatusEvent, LaunchPermission, Monitoring, PublicIpv4PoolRange, ReservedInstancesConfiguration, ScheduledInstance } from "./models_4";
7
- import type { CreateVolumePermission, InstanceNetworkInterfaceSpecification, LaunchTemplateConfig, RunInstancesMonitoringEnabled, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
8
- import type { DiskImageDetail, InstanceFamilyCreditSpecification, IpamPolicyDocument, IpamResourceCidr, ManagedResourceVisibilitySettings, Purchase, VolumeDetail } from "./models_6";
6
+ import type { AttributeBooleanValue, FpgaImageAttribute, InstanceMetadataOptionsResponse, InstanceStatusEvent, LaunchPermission, Monitoring, PublicIpv4PoolRange, ReservedInstancesConfiguration, SnapshotTaskDetail } from "./models_4";
7
+ import type { CreateVolumePermission, InstanceNetworkInterfaceSpecification, LaunchTemplateConfig, RunInstancesMonitoringEnabled, ScheduledInstance, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
8
+ import type { ClientData, DiskImageDetail, InstanceFamilyCreditSpecification, IpamPolicyDocument, IpamResourceCidr, ManagedResourceVisibilitySettings, Purchase, UserBucket, VolumeDetail } from "./models_6";
9
+ /**
10
+ * <p>The disk container object for the import snapshot request.</p>
11
+ * @public
12
+ */
13
+ export interface SnapshotDiskContainer {
14
+ /**
15
+ * <p>The description of the disk image being imported.</p>
16
+ * @public
17
+ */
18
+ Description?: string | undefined;
19
+ /**
20
+ * <p>The format of the disk image being imported.</p>
21
+ * <p>Valid values: <code>VHD</code> | <code>VMDK</code> | <code>RAW</code>
22
+ * </p>
23
+ * @public
24
+ */
25
+ Format?: string | undefined;
26
+ /**
27
+ * <p>The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon
28
+ * S3 URL (s3://..).</p>
29
+ * @public
30
+ */
31
+ Url?: string | undefined;
32
+ /**
33
+ * <p>The Amazon S3 bucket for the disk image.</p>
34
+ * @public
35
+ */
36
+ UserBucket?: UserBucket | undefined;
37
+ }
38
+ /**
39
+ * @public
40
+ */
41
+ export interface ImportSnapshotRequest {
42
+ /**
43
+ * <p>The client-specific data.</p>
44
+ * @public
45
+ */
46
+ ClientData?: ClientData | undefined;
47
+ /**
48
+ * <p>Token to enable idempotency for VM import requests.</p>
49
+ * @public
50
+ */
51
+ ClientToken?: string | undefined;
52
+ /**
53
+ * <p>The description string for the import snapshot task.</p>
54
+ * @public
55
+ */
56
+ Description?: string | undefined;
57
+ /**
58
+ * <p>Information about the disk container.</p>
59
+ * @public
60
+ */
61
+ DiskContainer?: SnapshotDiskContainer | undefined;
62
+ /**
63
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
64
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
65
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
66
+ * @public
67
+ */
68
+ DryRun?: boolean | undefined;
69
+ /**
70
+ * <p>Specifies whether the destination snapshot of the imported image should be encrypted. The default KMS key for EBS is
71
+ * used unless you specify a non-default KMS key using <code>KmsKeyId</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html">Amazon EBS Encryption</a> in the
72
+ * <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
73
+ * @public
74
+ */
75
+ Encrypted?: boolean | undefined;
76
+ /**
77
+ * <p>An identifier for the symmetric KMS key to use when creating the
78
+ * encrypted snapshot. This parameter is only required if you want to use a non-default KMS key; if this
79
+ * parameter is not specified, the default KMS key for EBS is used. If a <code>KmsKeyId</code> is
80
+ * specified, the <code>Encrypted</code> flag must also be set. </p>
81
+ * <p>The KMS key identifier may be provided in any of the following formats: </p>
82
+ * <ul>
83
+ * <li>
84
+ * <p>Key ID</p>
85
+ * </li>
86
+ * <li>
87
+ * <p>Key alias</p>
88
+ * </li>
89
+ * <li>
90
+ * <p>ARN using key ID. The ID ARN contains the <code>arn:aws:kms</code> namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the <code>key</code> namespace, and then the key ID. For example, arn:aws:kms:<i>us-east-1</i>:<i>012345678910</i>:key/<i>abcd1234-a123-456a-a12b-a123b4cd56ef</i>.</p>
91
+ * </li>
92
+ * <li>
93
+ * <p>ARN using key alias. The alias ARN contains the <code>arn:aws:kms</code> namespace, followed by the Region of the key, the Amazon Web Services account ID of the key owner, the <code>alias</code> namespace, and then the key alias. For example, arn:aws:kms:<i>us-east-1</i>:<i>012345678910</i>:alias/<i>ExampleAlias</i>. </p>
94
+ * </li>
95
+ * </ul>
96
+ * <p>Amazon Web Services parses <code>KmsKeyId</code> asynchronously, meaning that the action you call may appear to complete even
97
+ * though you provided an invalid identifier. This action will eventually report failure. </p>
98
+ * <p>The specified KMS key must exist in the Region that the snapshot is being copied to.</p>
99
+ * <p>Amazon EBS does not support asymmetric KMS keys.</p>
100
+ * @public
101
+ */
102
+ KmsKeyId?: string | undefined;
103
+ /**
104
+ * <p>The name of the role to use when not using the default role, 'vmimport'.</p>
105
+ * @public
106
+ */
107
+ RoleName?: string | undefined;
108
+ /**
109
+ * <p>The tags to apply to the import snapshot task during creation.</p>
110
+ * @public
111
+ */
112
+ TagSpecifications?: TagSpecification[] | undefined;
113
+ }
114
+ /**
115
+ * @public
116
+ */
117
+ export interface ImportSnapshotResult {
118
+ /**
119
+ * <p>A description of the import snapshot task.</p>
120
+ * @public
121
+ */
122
+ Description?: string | undefined;
123
+ /**
124
+ * <p>The ID of the import snapshot task.</p>
125
+ * @public
126
+ */
127
+ ImportTaskId?: string | undefined;
128
+ /**
129
+ * <p>Information about the import snapshot task.</p>
130
+ * @public
131
+ */
132
+ SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
133
+ /**
134
+ * <p>Any tags assigned to the import snapshot task.</p>
135
+ * @public
136
+ */
137
+ Tags?: Tag[] | undefined;
138
+ }
9
139
  /**
10
140
  * @public
11
141
  */
@@ -8514,47 +8644,3 @@ export interface RequestSpotInstancesResult {
8514
8644
  */
8515
8645
  SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
8516
8646
  }
8517
- /**
8518
- * @public
8519
- */
8520
- export interface ResetAddressAttributeRequest {
8521
- /**
8522
- * <p>[EC2-VPC] The allocation ID.</p>
8523
- * @public
8524
- */
8525
- AllocationId: string | undefined;
8526
- /**
8527
- * <p>The attribute of the IP address.</p>
8528
- * @public
8529
- */
8530
- Attribute: AddressAttributeName | undefined;
8531
- /**
8532
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
8533
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
8534
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
8535
- * @public
8536
- */
8537
- DryRun?: boolean | undefined;
8538
- }
8539
- /**
8540
- * @public
8541
- */
8542
- export interface ResetAddressAttributeResult {
8543
- /**
8544
- * <p>Information about the IP address.</p>
8545
- * @public
8546
- */
8547
- Address?: AddressAttribute | undefined;
8548
- }
8549
- /**
8550
- * @public
8551
- */
8552
- export interface ResetEbsDefaultKmsKeyIdRequest {
8553
- /**
8554
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
8555
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
8556
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
8557
- * @public
8558
- */
8559
- DryRun?: boolean | undefined;
8560
- }
@@ -1,5 +1,5 @@
1
- import type { _InstanceType, AmdSevSnpSpecification, CapacityManagerStatus, HostnameType, HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InterruptibleCapacityReservationAllocationStatus, InterruptionType, MarketType, MembershipType, NestedVirtualizationSpecification, ResetFpgaImageAttributeName, ResetImageAttributeName, SecondaryInterfaceType, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TransitGatewayAttachmentResourceType } from "./enums";
2
- import type { ByoipCidr, ClientVpnAuthorizationRuleStatus, IamInstanceProfileSpecification, IpPermission, NatGatewayAddress, TagSpecification } from "./models_0";
1
+ import type { _InstanceType, AddressAttributeName, AmdSevSnpSpecification, CapacityManagerStatus, HostnameType, HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InterruptibleCapacityReservationAllocationStatus, InterruptionType, MarketType, MembershipType, NestedVirtualizationSpecification, ResetFpgaImageAttributeName, ResetImageAttributeName, SecondaryInterfaceType, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TransitGatewayAttachmentResourceType } from "./enums";
2
+ import type { AddressAttribute, ByoipCidr, ClientVpnAuthorizationRuleStatus, IamInstanceProfileSpecification, IpPermission, NatGatewayAddress, TagSpecification } from "./models_0";
3
3
  import type { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceIpv6Address, LocalGatewayRoute, ManagedPrefixList, OperatorRequest, Placement } from "./models_1";
4
4
  import type { TransitGatewayRoute } from "./models_2";
5
5
  import type { ClientVpnConnectionStatus, Filter } from "./models_3";
@@ -7,6 +7,50 @@ import type { InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsights
7
7
  import type { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled } from "./models_5";
8
8
  import type { CapacityManagerMonitoredTagKey } from "./models_6";
9
9
  import type { CapacityReservationSpecification, EnclaveOptionsRequest, InstanceMonitoring } from "./models_7";
10
+ /**
11
+ * @public
12
+ */
13
+ export interface ResetAddressAttributeRequest {
14
+ /**
15
+ * <p>[EC2-VPC] The allocation ID.</p>
16
+ * @public
17
+ */
18
+ AllocationId: string | undefined;
19
+ /**
20
+ * <p>The attribute of the IP address.</p>
21
+ * @public
22
+ */
23
+ Attribute: AddressAttributeName | undefined;
24
+ /**
25
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
26
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
27
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
28
+ * @public
29
+ */
30
+ DryRun?: boolean | undefined;
31
+ }
32
+ /**
33
+ * @public
34
+ */
35
+ export interface ResetAddressAttributeResult {
36
+ /**
37
+ * <p>Information about the IP address.</p>
38
+ * @public
39
+ */
40
+ Address?: AddressAttribute | undefined;
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface ResetEbsDefaultKmsKeyIdRequest {
46
+ /**
47
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
48
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
49
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
50
+ * @public
51
+ */
52
+ DryRun?: boolean | undefined;
53
+ }
10
54
  /**
11
55
  * @public
12
56
  */
@@ -1327,6 +1327,7 @@ export declare var FirewallStatefulRule$: StaticStructureSchema;
1327
1327
  export declare var FirewallStatelessRule$: StaticStructureSchema;
1328
1328
  export declare var FleetBlockDeviceMappingRequest$: StaticStructureSchema;
1329
1329
  export declare var FleetCapacityReservation$: StaticStructureSchema;
1330
+ export declare var FleetCapacityReservationTargetRequest$: StaticStructureSchema;
1330
1331
  export declare var FleetData$: StaticStructureSchema;
1331
1332
  export declare var FleetEbsBlockDeviceRequest$: StaticStructureSchema;
1332
1333
  export declare var FleetIamInstanceProfileSpecificationRequest$: StaticStructureSchema;
@@ -2152,6 +2153,8 @@ export declare var RequestSpotLaunchSpecification$: StaticStructureSchema;
2152
2153
  export declare var Reservation$: StaticStructureSchema;
2153
2154
  export declare var ReservationFleetInstanceSpecification$: StaticStructureSchema;
2154
2155
  export declare var ReservationValue$: StaticStructureSchema;
2156
+ export declare var ReservedCapacityFallbackOptions$: StaticStructureSchema;
2157
+ export declare var ReservedCapacityFallbackOptionsRequest$: StaticStructureSchema;
2155
2158
  export declare var ReservedCapacityOptions$: StaticStructureSchema;
2156
2159
  export declare var ReservedCapacityOptionsRequest$: StaticStructureSchema;
2157
2160
  export declare var ReservedInstanceLimitPrice$: StaticStructureSchema;
@@ -1,6 +1,8 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { CreateNetworkInterfacePermissionRequest } from "../models/models_1";
3
- import { CreateNetworkInterfacePermissionResult } from "../models/models_2";
2
+ import {
3
+ CreateNetworkInterfacePermissionRequest,
4
+ CreateNetworkInterfacePermissionResult,
5
+ } from "../models/models_2";
4
6
  export { __MetadataBearer };
5
7
  export interface CreateNetworkInterfacePermissionCommandInput extends CreateNetworkInterfacePermissionRequest {}
6
8
  export interface CreateNetworkInterfacePermissionCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  DeleteLocalGatewayRouteTableVpcAssociationRequest,
4
4
  DeleteLocalGatewayRouteTableVpcAssociationResult,
5
- } from "../models/models_2";
5
+ } from "../models/models_3";
6
6
  export { __MetadataBearer };
7
7
  export interface DeleteLocalGatewayRouteTableVpcAssociationCommandInput extends DeleteLocalGatewayRouteTableVpcAssociationRequest {}
8
8
  export interface DeleteLocalGatewayRouteTableVpcAssociationCommandOutput
@@ -1,5 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_3";
2
+ import { DescribeFleetsRequest } from "../models/models_3";
3
+ import { DescribeFleetsResult } from "../models/models_4";
3
4
  export { __MetadataBearer };
4
5
  export interface DescribeFleetsCommandInput extends DescribeFleetsRequest {}
5
6
  export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __MetadataBearer {}
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { DescribeFlowLogsRequest } from "../models/models_3";
3
- import { DescribeFlowLogsResult } from "../models/models_4";
2
+ import { DescribeFlowLogsRequest, DescribeFlowLogsResult } from "../models/models_4";
4
3
  export { __MetadataBearer };
5
4
  export interface DescribeFlowLogsCommandInput extends DescribeFlowLogsRequest {}
6
5
  export interface DescribeFlowLogsCommandOutput extends DescribeFlowLogsResult, __MetadataBearer {}
@@ -1,6 +1,8 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { DescribeScheduledInstancesRequest } from "../models/models_4";
3
- import { DescribeScheduledInstancesResult } from "../models/models_5";
2
+ import {
3
+ DescribeScheduledInstancesRequest,
4
+ DescribeScheduledInstancesResult,
5
+ } from "../models/models_5";
4
6
  export { __MetadataBearer };
5
7
  export interface DescribeScheduledInstancesCommandInput extends DescribeScheduledInstancesRequest {}
6
8
  export interface DescribeScheduledInstancesCommandOutput
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { EnableFastLaunchRequest } from "../models/models_5";
3
- import { EnableFastLaunchResult } from "../models/models_6";
2
+ import { EnableFastLaunchRequest, EnableFastLaunchResult } from "../models/models_6";
4
3
  export { __MetadataBearer };
5
4
  export interface EnableFastLaunchCommandInput extends EnableFastLaunchRequest {}
6
5
  export interface EnableFastLaunchCommandOutput extends EnableFastLaunchResult, __MetadataBearer {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ImportSnapshotRequest, ImportSnapshotResult } from "../models/models_6";
2
+ import { ImportSnapshotRequest, ImportSnapshotResult } from "../models/models_7";
3
3
  export { __MetadataBearer };
4
4
  export interface ImportSnapshotCommandInput extends ImportSnapshotRequest {}
5
5
  export interface ImportSnapshotCommandOutput extends ImportSnapshotResult, __MetadataBearer {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ResetAddressAttributeRequest, ResetAddressAttributeResult } from "../models/models_7";
2
+ import { ResetAddressAttributeRequest, ResetAddressAttributeResult } from "../models/models_8";
3
3
  export { __MetadataBearer };
4
4
  export interface ResetAddressAttributeCommandInput extends ResetAddressAttributeRequest {}
5
5
  export interface ResetAddressAttributeCommandOutput
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ResetEbsDefaultKmsKeyIdRequest } from "../models/models_7";
3
- import { ResetEbsDefaultKmsKeyIdResult } from "../models/models_8";
2
+ import { ResetEbsDefaultKmsKeyIdRequest, ResetEbsDefaultKmsKeyIdResult } from "../models/models_8";
4
3
  export { __MetadataBearer };
5
4
  export interface ResetEbsDefaultKmsKeyIdCommandInput extends ResetEbsDefaultKmsKeyIdRequest {}
6
5
  export interface ResetEbsDefaultKmsKeyIdCommandOutput
@@ -2443,10 +2443,22 @@ export declare const FleetCapacityReservationUsageStrategy: {
2443
2443
  };
2444
2444
  export type FleetCapacityReservationUsageStrategy =
2445
2445
  (typeof FleetCapacityReservationUsageStrategy)[keyof typeof FleetCapacityReservationUsageStrategy];
2446
+ export declare const ReservedCapacityAllocationStrategy: {
2447
+ readonly PRIORITIZED: "prioritized";
2448
+ };
2449
+ export type ReservedCapacityAllocationStrategy =
2450
+ (typeof ReservedCapacityAllocationStrategy)[keyof typeof ReservedCapacityAllocationStrategy];
2446
2451
  export declare const FleetReservationType: {
2452
+ readonly CAPACITY_BLOCK: "capacity-block";
2447
2453
  readonly INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation";
2454
+ readonly ON_DEMAND_CAPACITY_RESERVATION: "on-demand-capacity-reservation";
2448
2455
  };
2449
2456
  export type FleetReservationType = (typeof FleetReservationType)[keyof typeof FleetReservationType];
2457
+ export declare const ReservedCapacityFallbackMarketType: {
2458
+ readonly ON_DEMAND: "on-demand";
2459
+ };
2460
+ export type ReservedCapacityFallbackMarketType =
2461
+ (typeof ReservedCapacityFallbackMarketType)[keyof typeof ReservedCapacityFallbackMarketType];
2450
2462
  export declare const SpotAllocationStrategy: {
2451
2463
  readonly CAPACITY_OPTIMIZED: "capacity-optimized";
2452
2464
  readonly CAPACITY_OPTIMIZED_PRIORITIZED: "capacity-optimized-prioritized";
@@ -2830,6 +2842,7 @@ export type ShutdownBehavior = (typeof ShutdownBehavior)[keyof typeof ShutdownBe
2830
2842
  export declare const MarketType: {
2831
2843
  readonly capacity_block: "capacity-block";
2832
2844
  readonly interruptible_capacity_reservation: "interruptible-capacity-reservation";
2845
+ readonly on_demand: "on-demand";
2833
2846
  readonly spot: "spot";
2834
2847
  };
2835
2848
  export type MarketType = (typeof MarketType)[keyof typeof MarketType];