@aws-sdk/client-ec2 3.1063.0 → 3.1065.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +6 -0
- package/dist-cjs/schemas/schemas_0.js +63 -29
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +43 -9
- package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
- package/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
- package/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
- package/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
- package/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
- package/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +22 -29
- package/dist-types/models/models_2.d.ts +28 -14
- package/dist-types/models/models_3.d.ts +36 -41
- package/dist-types/models/models_4.d.ts +42 -48
- package/dist-types/models/models_5.d.ts +48 -172
- package/dist-types/models/models_6.d.ts +167 -65
- package/dist-types/models/models_7.d.ts +63 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +6 -6
- package/dist-types/ts3.4/models/models_2.d.ts +6 -3
- package/dist-types/ts3.4/models/models_3.d.ts +9 -10
- package/dist-types/ts3.4/models/models_4.d.ts +11 -10
- package/dist-types/ts3.4/models/models_5.d.ts +15 -31
- package/dist-types/ts3.4/models/models_6.d.ts +30 -19
- package/dist-types/ts3.4/models/models_7.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +10 -10
|
@@ -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 { CreateRouteTableRequest } from "../models/
|
|
5
|
-
import type { CreateRouteTableResult } from "../models/models_2";
|
|
4
|
+
import type { CreateRouteTableRequest, CreateRouteTableResult } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
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 { DeleteSpotDatafeedSubscriptionRequest } from "../models/
|
|
4
|
+
import type { DeleteSpotDatafeedSubscriptionRequest } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -86,6 +86,14 @@ declare const DescribeFlowLogsCommand_base: {
|
|
|
86
86
|
* // HiveCompatiblePartitions: true || false,
|
|
87
87
|
* // PerHourPartition: true || false,
|
|
88
88
|
* // },
|
|
89
|
+
* // TagFieldSpecifications: [ // TagFieldSpecificationListResponse
|
|
90
|
+
* // { // TagFieldSpecificationResponse
|
|
91
|
+
* // ResourceType: "network-interface" || "instance" || "auto-scaling-group",
|
|
92
|
+
* // TagKeys: [ // TagKeyList
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
89
97
|
* // },
|
|
90
98
|
* // ],
|
|
91
99
|
* // NextToken: "STRING_VALUE",
|
|
@@ -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 { DescribeImportSnapshotTasksRequest
|
|
4
|
+
import type { DescribeImportSnapshotTasksRequest } from "../models/models_3";
|
|
5
|
+
import type { DescribeImportSnapshotTasksResult } from "../models/models_4";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -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 { DescribeInstanceAttributeRequest } from "../models/
|
|
5
|
-
import type { InstanceAttribute } from "../models/models_4";
|
|
4
|
+
import type { DescribeInstanceAttributeRequest, InstanceAttribute } from "../models/models_4";
|
|
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 { DescribeSpotPriceHistoryRequest
|
|
4
|
+
import type { DescribeSpotPriceHistoryRequest } from "../models/models_4";
|
|
5
|
+
import type { DescribeSpotPriceHistoryResult } from "../models/models_5";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -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 { DescribeStaleSecurityGroupsRequest } from "../models/
|
|
5
|
-
import type { DescribeStaleSecurityGroupsResult } from "../models/models_5";
|
|
4
|
+
import type { DescribeStaleSecurityGroupsRequest, DescribeStaleSecurityGroupsResult } from "../models/models_5";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -78,11 +78,6 @@ declare const DescribeVolumesModificationsCommand_base: {
|
|
|
78
78
|
* // Progress: Number("long"),
|
|
79
79
|
* // StartTime: new Date("TIMESTAMP"),
|
|
80
80
|
* // EndTime: new Date("TIMESTAMP"),
|
|
81
|
-
* // Operator: { // OperatorResponse
|
|
82
|
-
* // Managed: true || false,
|
|
83
|
-
* // Principal: "STRING_VALUE",
|
|
84
|
-
* // HiddenByDefault: true || false,
|
|
85
|
-
* // },
|
|
86
81
|
* // },
|
|
87
82
|
* // ],
|
|
88
83
|
* // };
|
|
@@ -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 { ModifyManagedPrefixListRequest } from "../models/
|
|
5
|
-
import type { ModifyManagedPrefixListResult } from "../models/models_7";
|
|
4
|
+
import type { ModifyManagedPrefixListRequest, ModifyManagedPrefixListResult } from "../models/models_7";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -82,11 +82,6 @@ declare const ModifyVolumeCommand_base: {
|
|
|
82
82
|
* // Progress: Number("long"),
|
|
83
83
|
* // StartTime: new Date("TIMESTAMP"),
|
|
84
84
|
* // EndTime: new Date("TIMESTAMP"),
|
|
85
|
-
* // Operator: { // OperatorResponse
|
|
86
|
-
* // Managed: true || false,
|
|
87
|
-
* // Principal: "STRING_VALUE",
|
|
88
|
-
* // HiddenByDefault: true || false,
|
|
89
|
-
* // },
|
|
90
85
|
* // },
|
|
91
86
|
* // };
|
|
92
87
|
*
|
|
@@ -3093,6 +3093,19 @@ export declare const FlowLogsResourceType: {
|
|
|
3093
3093
|
* @public
|
|
3094
3094
|
*/
|
|
3095
3095
|
export type FlowLogsResourceType = (typeof FlowLogsResourceType)[keyof typeof FlowLogsResourceType];
|
|
3096
|
+
/**
|
|
3097
|
+
* @public
|
|
3098
|
+
* @enum
|
|
3099
|
+
*/
|
|
3100
|
+
export declare const TaggableResourceType: {
|
|
3101
|
+
readonly auto_scaling_group: "auto-scaling-group";
|
|
3102
|
+
readonly instance: "instance";
|
|
3103
|
+
readonly network_interface: "network-interface";
|
|
3104
|
+
};
|
|
3105
|
+
/**
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
3096
3109
|
/**
|
|
3097
3110
|
* @public
|
|
3098
3111
|
* @enum
|
|
@@ -8104,7 +8104,7 @@ export interface CreateCapacityReservationFleetRequest {
|
|
|
8104
8104
|
* <p>Information about the instance types for which to reserve the capacity.</p>
|
|
8105
8105
|
* @public
|
|
8106
8106
|
*/
|
|
8107
|
-
InstanceTypeSpecifications
|
|
8107
|
+
InstanceTypeSpecifications?: ReservationFleetInstanceSpecification[] | undefined;
|
|
8108
8108
|
/**
|
|
8109
8109
|
* <p>Indicates the tenancy of the Capacity Reservation Fleet. All Capacity Reservations in
|
|
8110
8110
|
* the Fleet inherit this tenancy. The Capacity Reservation Fleet can have one of the
|
|
@@ -1,4 +1,4 @@
|
|
|
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, RouteServerPeerState, RouteServerPersistRoutesAction, RouteServerPersistRoutesState, RouteServerState, RuleAction, SecondaryInterfaceType, ShutdownBehavior, SnapshotLocationEnum, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, SpotInstanceType, SpreadLevel, TargetCapacityUnitType, Tenancy, TokenState, TrafficType, VolumeType, VpcEncryptionControlExclusionState, VpcEncryptionControlMode, VpcEncryptionControlState, VpcState, WeekDay } from "./enums";
|
|
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, RouteServerPeerState, 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
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";
|
|
3
3
|
/**
|
|
4
4
|
* <p>Describes an exclusion configuration for VPC Encryption Control.</p>
|
|
@@ -3326,6 +3326,22 @@ export interface DestinationOptionsRequest {
|
|
|
3326
3326
|
*/
|
|
3327
3327
|
PerHourPartition?: boolean | undefined;
|
|
3328
3328
|
}
|
|
3329
|
+
/**
|
|
3330
|
+
* <p>A single resource's tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3331
|
+
* @public
|
|
3332
|
+
*/
|
|
3333
|
+
export interface TagFieldSpecificationRequest {
|
|
3334
|
+
/**
|
|
3335
|
+
* <p>The resource type for the tag keys associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3336
|
+
* @public
|
|
3337
|
+
*/
|
|
3338
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
3339
|
+
/**
|
|
3340
|
+
* <p>The tag keys on your tagged resources to be displayed by the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3341
|
+
* @public
|
|
3342
|
+
*/
|
|
3343
|
+
TagKeys?: string[] | undefined;
|
|
3344
|
+
}
|
|
3329
3345
|
/**
|
|
3330
3346
|
* @public
|
|
3331
3347
|
*/
|
|
@@ -3445,6 +3461,11 @@ export interface CreateFlowLogsRequest {
|
|
|
3445
3461
|
* @public
|
|
3446
3462
|
*/
|
|
3447
3463
|
DestinationOptions?: DestinationOptionsRequest | undefined;
|
|
3464
|
+
/**
|
|
3465
|
+
* <p>The tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3466
|
+
* @public
|
|
3467
|
+
*/
|
|
3468
|
+
TagFieldSpecifications?: TagFieldSpecificationRequest[] | undefined;
|
|
3448
3469
|
}
|
|
3449
3470
|
/**
|
|
3450
3471
|
* @public
|
|
@@ -12545,31 +12566,3 @@ export interface CreateRouteServerPeerResult {
|
|
|
12545
12566
|
*/
|
|
12546
12567
|
RouteServerPeer?: RouteServerPeer | undefined;
|
|
12547
12568
|
}
|
|
12548
|
-
/**
|
|
12549
|
-
* @public
|
|
12550
|
-
*/
|
|
12551
|
-
export interface CreateRouteTableRequest {
|
|
12552
|
-
/**
|
|
12553
|
-
* <p>The tags to assign to the route table.</p>
|
|
12554
|
-
* @public
|
|
12555
|
-
*/
|
|
12556
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
12557
|
-
/**
|
|
12558
|
-
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
12559
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
|
|
12560
|
-
* @public
|
|
12561
|
-
*/
|
|
12562
|
-
ClientToken?: string | undefined;
|
|
12563
|
-
/**
|
|
12564
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
12565
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
12566
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
12567
|
-
* @public
|
|
12568
|
-
*/
|
|
12569
|
-
DryRun?: boolean | undefined;
|
|
12570
|
-
/**
|
|
12571
|
-
* <p>The ID of the VPC.</p>
|
|
12572
|
-
* @public
|
|
12573
|
-
*/
|
|
12574
|
-
VpcId: string | undefined;
|
|
12575
|
-
}
|
|
@@ -1,6 +1,34 @@
|
|
|
1
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";
|
|
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
3
|
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer, RouteServerEndpoint, RouteServerPeer, Vpc, VpcEncryptionControl } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CreateRouteTableRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The tags to assign to the route table.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
15
|
+
* request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
ClientToken?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
21
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
22
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
DryRun?: boolean | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The ID of the VPC.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
VpcId: string | undefined;
|
|
31
|
+
}
|
|
4
32
|
/**
|
|
5
33
|
* <p>Describes an association between a route table and a subnet or gateway.</p>
|
|
6
34
|
* @public
|
|
@@ -8448,17 +8476,3 @@ export interface DeleteSnapshotRequest {
|
|
|
8448
8476
|
*/
|
|
8449
8477
|
DryRun?: boolean | undefined;
|
|
8450
8478
|
}
|
|
8451
|
-
/**
|
|
8452
|
-
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
8453
|
-
* @public
|
|
8454
|
-
*/
|
|
8455
|
-
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
8456
|
-
/**
|
|
8457
|
-
* <p>Checks whether you have the required permissions for the action, without actually
|
|
8458
|
-
* making the request, and provides an error response. If you have the required
|
|
8459
|
-
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
8460
|
-
* <code>UnauthorizedOperation</code>.</p>
|
|
8461
|
-
* @public
|
|
8462
|
-
*/
|
|
8463
|
-
DryRun?: boolean | undefined;
|
|
8464
|
-
}
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
import type { _InstanceType, AccountAttributeName, AddressAttributeName, AllocationState, AllowsMultipleInstanceTypes, ArchitectureValues, AsnState, AssociatedNetworkType, AutoPlacement, AvailabilityZoneOptInStatus, AvailabilityZoneState, BootModeValues, CallerRole, CapacityBlockExtensionStatus, CapacityBlockInterconnectStatus, CapacityBlockResourceState, CapacityManagerDataExportStatus, CapacityReservationBillingRequestStatus, CapacityReservationFleetState, CapacityReservationTenancy, ClientVpnAuthenticationType, ClientVpnConnectionStatusCode, ClientVpnEndpointAttributeStatusCode, ConversionTaskState, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DeviceType, DiskImageFormat, ElasticGpuState, ElasticGpuStatus, EndpointIpAddressType, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FleetActivityStatus, FleetCapacityReservationTenancy, FleetCapacityReservationUsageStrategy, FleetEventType, FleetExcessCapacityTerminationPolicy, FleetInstanceMatchCriteria, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetStateCode, FleetType, FpgaImageAttributeName, FpgaImageStateCode, HostMaintenance, HostRecovery, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues,
|
|
1
|
+
import type { _InstanceType, AccountAttributeName, AddressAttributeName, AllocationState, AllowsMultipleInstanceTypes, ArchitectureValues, AsnState, AssociatedNetworkType, AutoPlacement, AvailabilityZoneOptInStatus, AvailabilityZoneState, BootModeValues, CallerRole, CapacityBlockExtensionStatus, CapacityBlockInterconnectStatus, CapacityBlockResourceState, CapacityManagerDataExportStatus, CapacityReservationBillingRequestStatus, CapacityReservationFleetState, CapacityReservationTenancy, ClientVpnAuthenticationType, ClientVpnConnectionStatusCode, ClientVpnEndpointAttributeStatusCode, ConversionTaskState, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DeviceType, DiskImageFormat, ElasticGpuState, ElasticGpuStatus, EndpointIpAddressType, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FleetActivityStatus, FleetCapacityReservationTenancy, FleetCapacityReservationUsageStrategy, FleetEventType, FleetExcessCapacityTerminationPolicy, FleetInstanceMatchCriteria, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetStateCode, FleetType, FpgaImageAttributeName, FpgaImageStateCode, HostMaintenance, HostRecovery, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues, InstanceLifecycle, IpamPoolCidrFailureCode, IpamPoolCidrState, LogDestinationType, MetricType, OutputFormat, PaymentOption, PeriodType, PermissionGroup, PlatformValues, ProductCodeValues, ReportState, ReservationState, Schedule, SnapshotReturnCodes, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, StatisticType, TaggableResourceType, TargetCapacityUnitType, TpmSupportValues, TrafficIpAddressType, TrafficType, TransportProtocol, VirtualizationType, VpnProtocol } from "./enums";
|
|
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
|
+
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
10
|
+
/**
|
|
11
|
+
* <p>Checks whether you have the required permissions for the action, without actually
|
|
12
|
+
* making the request, and provides an error response. If you have the required
|
|
13
|
+
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
14
|
+
* <code>UnauthorizedOperation</code>.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
DryRun?: boolean | undefined;
|
|
18
|
+
}
|
|
5
19
|
/**
|
|
6
20
|
* @public
|
|
7
21
|
*/
|
|
@@ -7072,6 +7086,22 @@ export interface DestinationOptionsResponse {
|
|
|
7072
7086
|
*/
|
|
7073
7087
|
PerHourPartition?: boolean | undefined;
|
|
7074
7088
|
}
|
|
7089
|
+
/**
|
|
7090
|
+
* <p>A single resource's tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7091
|
+
* @public
|
|
7092
|
+
*/
|
|
7093
|
+
export interface TagFieldSpecificationResponse {
|
|
7094
|
+
/**
|
|
7095
|
+
* <p>The resource type for the tag keys associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7096
|
+
* @public
|
|
7097
|
+
*/
|
|
7098
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
7099
|
+
/**
|
|
7100
|
+
* <p>The tag keys on your tagged resources to be displayed by the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7101
|
+
* @public
|
|
7102
|
+
*/
|
|
7103
|
+
TagKeys?: string[] | undefined;
|
|
7104
|
+
}
|
|
7075
7105
|
/**
|
|
7076
7106
|
* <p>Describes a flow log.</p>
|
|
7077
7107
|
* @public
|
|
@@ -7167,6 +7197,11 @@ export interface FlowLog {
|
|
|
7167
7197
|
* @public
|
|
7168
7198
|
*/
|
|
7169
7199
|
DestinationOptions?: DestinationOptionsResponse | undefined;
|
|
7200
|
+
/**
|
|
7201
|
+
* <p>The tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7202
|
+
* @public
|
|
7203
|
+
*/
|
|
7204
|
+
TagFieldSpecifications?: TagFieldSpecificationResponse[] | undefined;
|
|
7170
7205
|
}
|
|
7171
7206
|
/**
|
|
7172
7207
|
* @public
|
|
@@ -9669,43 +9704,3 @@ export interface ImportSnapshotTask {
|
|
|
9669
9704
|
*/
|
|
9670
9705
|
Tags?: Tag[] | undefined;
|
|
9671
9706
|
}
|
|
9672
|
-
/**
|
|
9673
|
-
* @public
|
|
9674
|
-
*/
|
|
9675
|
-
export interface DescribeImportSnapshotTasksResult {
|
|
9676
|
-
/**
|
|
9677
|
-
* <p>A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the
|
|
9678
|
-
* previous 7 days.</p>
|
|
9679
|
-
* @public
|
|
9680
|
-
*/
|
|
9681
|
-
ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
|
|
9682
|
-
/**
|
|
9683
|
-
* <p>The token to use to get the next page of results. This value is <code>null</code> when there are no more results
|
|
9684
|
-
* to return.</p>
|
|
9685
|
-
* @public
|
|
9686
|
-
*/
|
|
9687
|
-
NextToken?: string | undefined;
|
|
9688
|
-
}
|
|
9689
|
-
/**
|
|
9690
|
-
* @public
|
|
9691
|
-
*/
|
|
9692
|
-
export interface DescribeInstanceAttributeRequest {
|
|
9693
|
-
/**
|
|
9694
|
-
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
9695
|
-
* request, and provides an error response. If you have the required permissions, the error response is
|
|
9696
|
-
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9697
|
-
* @public
|
|
9698
|
-
*/
|
|
9699
|
-
DryRun?: boolean | undefined;
|
|
9700
|
-
/**
|
|
9701
|
-
* <p>The ID of the instance.</p>
|
|
9702
|
-
* @public
|
|
9703
|
-
*/
|
|
9704
|
-
InstanceId: string | undefined;
|
|
9705
|
-
/**
|
|
9706
|
-
* <p>The instance attribute.</p>
|
|
9707
|
-
* <p>Note that the <code>enaSupport</code> attribute is not supported.</p>
|
|
9708
|
-
* @public
|
|
9709
|
-
*/
|
|
9710
|
-
Attribute: InstanceAttributeName | undefined;
|
|
9711
|
-
}
|
|
@@ -1,8 +1,48 @@
|
|
|
1
|
-
import type { _InstanceType, ActivityStatus, AllocationStrategy, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, BandwidthWeightingType, BatchState, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, EventType, ExcessCapacityTerminationPolicy, FindingsFound, FleetType, FlexibleEnaQueuesSupport, HaStatus, HostnameType, HttpTokensState, HypervisorType, ImageState, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceInterruptionBehavior, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStateName, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, OnDemandAllocationStrategy, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, RebootMigrationSupport, RecurringChargeFrequency, ReplacementStrategy, ReservedInstanceState, ResourceType, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SecondaryNetworkType, SecurityGroupVpcAssociationState, ServiceLinkVirtualInterfaceConfigurationState, SnapshotAttributeName, SnapshotState, SpotInstanceState, SpotInstanceType, SqlServerLicenseUsage, StatusName, StatusType, StorageTier, SummaryStatus, SupportedAdditionalProcessorFeature, TargetCapacityUnitType, Tenancy, TieringOperationStatus, UsageClassType, VirtualizationType } from "./enums";
|
|
1
|
+
import type { _InstanceType, ActivityStatus, AllocationStrategy, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, BandwidthWeightingType, BatchState, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, EventType, ExcessCapacityTerminationPolicy, FindingsFound, FleetType, FlexibleEnaQueuesSupport, HaStatus, HostnameType, HttpTokensState, HypervisorType, ImageState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceInterruptionBehavior, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStateName, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, OnDemandAllocationStrategy, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, RebootMigrationSupport, RecurringChargeFrequency, ReplacementStrategy, ReservedInstanceState, ResourceType, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SecondaryNetworkType, SecurityGroupVpcAssociationState, ServiceLinkVirtualInterfaceConfigurationState, SnapshotAttributeName, SnapshotState, SpotInstanceState, SpotInstanceType, SqlServerLicenseUsage, StatusName, StatusType, StorageTier, SummaryStatus, SupportedAdditionalProcessorFeature, TargetCapacityUnitType, Tenancy, TieringOperationStatus, UsageClassType, VirtualizationType } from "./enums";
|
|
2
2
|
import type { ActiveInstance, AlternatePathHint, Explanation, IamInstanceProfile, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, IpamResourceDiscoveryAssociation, IpPermission, OperatorResponse, PathComponent, ReservedInstancesListing, SecurityGroupRule, Tag, TagSpecification } from "./models_0";
|
|
3
3
|
import type { AttributeValue, BlockDeviceMapping, CapacityReservationTargetResponse, ConnectionTrackingSpecificationRequest, Ec2InstanceConnectEndpoint, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, GroupIdentifier, InstanceIpv6Address, InstanceRequirements, InternetGateway, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, MacModificationTask, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, Placement, PlacementGroup, PrivateIpAddressSpecification, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, StateReason } from "./models_1";
|
|
4
4
|
import type { RouteTable, SecondaryNetwork, SecondarySubnet, Snapshot, SpotDatafeedSubscription, SpotInstanceStateFault } from "./models_2";
|
|
5
|
-
import type { Byoasn, EventInformation, Filter, IdFormat, InstanceTagNotificationAttribute, ProductCode } from "./models_3";
|
|
5
|
+
import type { Byoasn, EventInformation, Filter, IdFormat, ImportSnapshotTask, InstanceTagNotificationAttribute, ProductCode } from "./models_3";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface DescribeImportSnapshotTasksResult {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the
|
|
12
|
+
* previous 7 days.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The token to use to get the next page of results. This value is <code>null</code> when there are no more results
|
|
18
|
+
* to return.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
NextToken?: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface DescribeInstanceAttributeRequest {
|
|
27
|
+
/**
|
|
28
|
+
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
29
|
+
* request, and provides an error response. If you have the required permissions, the error response is
|
|
30
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
DryRun?: boolean | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The ID of the instance.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
InstanceId: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The instance attribute.</p>
|
|
41
|
+
* <p>Note that the <code>enaSupport</code> attribute is not supported.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
Attribute: InstanceAttributeName | undefined;
|
|
45
|
+
}
|
|
6
46
|
/**
|
|
7
47
|
* <p>Describes a parameter used to set up an EBS volume in a block device mapping.</p>
|
|
8
48
|
* @public
|
|
@@ -13157,49 +13197,3 @@ export interface SpotPrice {
|
|
|
13157
13197
|
*/
|
|
13158
13198
|
Timestamp?: Date | undefined;
|
|
13159
13199
|
}
|
|
13160
|
-
/**
|
|
13161
|
-
* <p>Contains the output of DescribeSpotPriceHistory.</p>
|
|
13162
|
-
* @public
|
|
13163
|
-
*/
|
|
13164
|
-
export interface DescribeSpotPriceHistoryResult {
|
|
13165
|
-
/**
|
|
13166
|
-
* <p>The token to include in another request to get the next page of items. This value is
|
|
13167
|
-
* an empty string (<code>""</code>) or <code>null</code> when there are no more items to return.</p>
|
|
13168
|
-
* @public
|
|
13169
|
-
*/
|
|
13170
|
-
NextToken?: string | undefined;
|
|
13171
|
-
/**
|
|
13172
|
-
* <p>The historical Spot prices.</p>
|
|
13173
|
-
* @public
|
|
13174
|
-
*/
|
|
13175
|
-
SpotPriceHistory?: SpotPrice[] | undefined;
|
|
13176
|
-
}
|
|
13177
|
-
/**
|
|
13178
|
-
* @public
|
|
13179
|
-
*/
|
|
13180
|
-
export interface DescribeStaleSecurityGroupsRequest {
|
|
13181
|
-
/**
|
|
13182
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
13183
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
13184
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
13185
|
-
* @public
|
|
13186
|
-
*/
|
|
13187
|
-
DryRun?: boolean | undefined;
|
|
13188
|
-
/**
|
|
13189
|
-
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
13190
|
-
* make another request with the token returned in the output. For more information,
|
|
13191
|
-
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
13192
|
-
* @public
|
|
13193
|
-
*/
|
|
13194
|
-
MaxResults?: number | undefined;
|
|
13195
|
-
/**
|
|
13196
|
-
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
13197
|
-
* @public
|
|
13198
|
-
*/
|
|
13199
|
-
NextToken?: string | undefined;
|
|
13200
|
-
/**
|
|
13201
|
-
* <p>The ID of the VPC.</p>
|
|
13202
|
-
* @public
|
|
13203
|
-
*/
|
|
13204
|
-
VpcId: string | undefined;
|
|
13205
|
-
}
|