@aws-sdk/client-ec2 3.428.0 → 3.430.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.
@@ -34,7 +34,7 @@ export interface ClientVpnAuthenticationRequest {
34
34
  * @public
35
35
  * <p>The type of client authentication to be used.</p>
36
36
  */
37
- Type?: ClientVpnAuthenticationType | string;
37
+ Type?: ClientVpnAuthenticationType;
38
38
  /**
39
39
  * @public
40
40
  * <p>Information about the Active Directory to be used, if applicable. You must provide this information if <b>Type</b> is <code>directory-service-authentication</code>.</p>
@@ -189,7 +189,7 @@ export interface CreateClientVpnEndpointRequest {
189
189
  * <p>Default value: <code>udp</code>
190
190
  * </p>
191
191
  */
192
- TransportProtocol?: TransportProtocol | string;
192
+ TransportProtocol?: TransportProtocol;
193
193
  /**
194
194
  * @public
195
195
  * <p>The port number to assign to the Client VPN endpoint for TCP and UDP traffic.</p>
@@ -243,7 +243,7 @@ export interface CreateClientVpnEndpointRequest {
243
243
  * <p>Default Value: <code>enabled</code>
244
244
  * </p>
245
245
  */
246
- SelfServicePortal?: SelfServicePortal | string;
246
+ SelfServicePortal?: SelfServicePortal;
247
247
  /**
248
248
  * @public
249
249
  * <p>The options for managing connection authorization for new client connections.</p>
@@ -310,7 +310,7 @@ export interface ClientVpnEndpointStatus {
310
310
  * </li>
311
311
  * </ul>
312
312
  */
313
- Code?: ClientVpnEndpointStatusCode | string;
313
+ Code?: ClientVpnEndpointStatusCode;
314
314
  /**
315
315
  * @public
316
316
  * <p>A message about the status of the Client VPN endpoint.</p>
@@ -412,7 +412,7 @@ export interface ClientVpnRouteStatus {
412
412
  * @public
413
413
  * <p>The state of the Client VPN endpoint route.</p>
414
414
  */
415
- Code?: ClientVpnRouteStatusCode | string;
415
+ Code?: ClientVpnRouteStatusCode;
416
416
  /**
417
417
  * @public
418
418
  * <p>A message about the status of the Client VPN endpoint route, if applicable.</p>
@@ -602,7 +602,7 @@ export interface CreateCustomerGatewayRequest {
602
602
  * <p>The type of VPN connection that this customer gateway supports
603
603
  * (<code>ipsec.1</code>).</p>
604
604
  */
605
- Type: GatewayType | string | undefined;
605
+ Type: GatewayType | undefined;
606
606
  /**
607
607
  * @public
608
608
  * <p>The tags to apply to the customer gateway.</p>
@@ -737,7 +737,7 @@ export interface PrivateDnsNameOptionsOnLaunch {
737
737
  * must be based on the instance ID. For dual-stack subnets, you can specify whether DNS
738
738
  * names use the instance IPv4 address or the instance ID.</p>
739
739
  */
740
- HostnameType?: HostnameType | string;
740
+ HostnameType?: HostnameType;
741
741
  /**
742
742
  * @public
743
743
  * <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A
@@ -823,7 +823,7 @@ export interface Subnet {
823
823
  * @public
824
824
  * <p>The current state of the subnet.</p>
825
825
  */
826
- State?: SubnetState | string;
826
+ State?: SubnetState;
827
827
  /**
828
828
  * @public
829
829
  * <p>The ID of the subnet.</p>
@@ -949,7 +949,7 @@ export interface Vpc {
949
949
  * @public
950
950
  * <p>The current state of the VPC.</p>
951
951
  */
952
- State?: VpcState | string;
952
+ State?: VpcState;
953
953
  /**
954
954
  * @public
955
955
  * <p>The ID of the VPC.</p>
@@ -964,7 +964,7 @@ export interface Vpc {
964
964
  * @public
965
965
  * <p>The allowed tenancy of instances launched into the VPC.</p>
966
966
  */
967
- InstanceTenancy?: Tenancy | string;
967
+ InstanceTenancy?: Tenancy;
968
968
  /**
969
969
  * @public
970
970
  * <p>Information about the IPv6 CIDR blocks associated with the VPC.</p>
@@ -1137,7 +1137,7 @@ export interface InternetGatewayAttachment {
1137
1137
  * <code>available</code> when attached to a VPC; otherwise, this value is not
1138
1138
  * returned.</p>
1139
1139
  */
1140
- State?: AttachmentStatus | string;
1140
+ State?: AttachmentStatus;
1141
1141
  /**
1142
1142
  * @public
1143
1143
  * <p>The ID of the VPC.</p>
@@ -1499,7 +1499,7 @@ export interface InstanceRequirementsRequest {
1499
1499
  * </note>
1500
1500
  * <p>Default: Any manufacturer</p>
1501
1501
  */
1502
- CpuManufacturers?: (CpuManufacturer | string)[];
1502
+ CpuManufacturers?: CpuManufacturer[];
1503
1503
  /**
1504
1504
  * @public
1505
1505
  * <p>The minimum and maximum amount of memory per vCPU, in GiB.</p>
@@ -1534,7 +1534,7 @@ export interface InstanceRequirementsRequest {
1534
1534
  * <p>For previous generation instance types, specify <code>previous</code>.</p>
1535
1535
  * <p>Default: Current and previous generation instance types</p>
1536
1536
  */
1537
- InstanceGenerations?: (InstanceGeneration | string)[];
1537
+ InstanceGenerations?: InstanceGeneration[];
1538
1538
  /**
1539
1539
  * @public
1540
1540
  * <p>The price protection threshold for Spot Instance. This is the maximum you’ll pay for an Spot Instance,
@@ -1588,7 +1588,7 @@ export interface InstanceRequirementsRequest {
1588
1588
  * <p>Default: <code>excluded</code>
1589
1589
  * </p>
1590
1590
  */
1591
- BareMetal?: BareMetal | string;
1591
+ BareMetal?: BareMetal;
1592
1592
  /**
1593
1593
  * @public
1594
1594
  * <p>Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see
@@ -1607,7 +1607,7 @@ export interface InstanceRequirementsRequest {
1607
1607
  * <p>Default: <code>excluded</code>
1608
1608
  * </p>
1609
1609
  */
1610
- BurstablePerformance?: BurstablePerformance | string;
1610
+ BurstablePerformance?: BurstablePerformance;
1611
1611
  /**
1612
1612
  * @public
1613
1613
  * <p>Indicates whether instance types must support hibernation for On-Demand Instances.</p>
@@ -1644,7 +1644,7 @@ export interface InstanceRequirementsRequest {
1644
1644
  * <p>Default: <code>included</code>
1645
1645
  * </p>
1646
1646
  */
1647
- LocalStorage?: LocalStorage | string;
1647
+ LocalStorage?: LocalStorage;
1648
1648
  /**
1649
1649
  * @public
1650
1650
  * <p>The type of local storage that is required.</p>
@@ -1660,7 +1660,7 @@ export interface InstanceRequirementsRequest {
1660
1660
  * <p>Default: <code>hdd</code> and <code>ssd</code>
1661
1661
  * </p>
1662
1662
  */
1663
- LocalStorageTypes?: (LocalStorageType | string)[];
1663
+ LocalStorageTypes?: LocalStorageType[];
1664
1664
  /**
1665
1665
  * @public
1666
1666
  * <p>The minimum and maximum amount of total local storage, in GB.</p>
@@ -1691,7 +1691,7 @@ export interface InstanceRequirementsRequest {
1691
1691
  * </ul>
1692
1692
  * <p>Default: Any accelerator type</p>
1693
1693
  */
1694
- AcceleratorTypes?: (AcceleratorType | string)[];
1694
+ AcceleratorTypes?: AcceleratorType[];
1695
1695
  /**
1696
1696
  * @public
1697
1697
  * <p>The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on
@@ -1719,7 +1719,7 @@ export interface InstanceRequirementsRequest {
1719
1719
  * </ul>
1720
1720
  * <p>Default: Any manufacturer</p>
1721
1721
  */
1722
- AcceleratorManufacturers?: (AcceleratorManufacturer | string)[];
1722
+ AcceleratorManufacturers?: AcceleratorManufacturer[];
1723
1723
  /**
1724
1724
  * @public
1725
1725
  * <p>The accelerators that must be on the instance type.</p>
@@ -1754,7 +1754,7 @@ export interface InstanceRequirementsRequest {
1754
1754
  * </ul>
1755
1755
  * <p>Default: Any accelerator</p>
1756
1756
  */
1757
- AcceleratorNames?: (AcceleratorName | string)[];
1757
+ AcceleratorNames?: AcceleratorName[];
1758
1758
  /**
1759
1759
  * @public
1760
1760
  * <p>The minimum and maximum amount of total accelerator memory, in MiB.</p>
@@ -1834,7 +1834,7 @@ export interface Placement {
1834
1834
  * for T3 instances that are configured for the <code>unlimited</code> CPU credit
1835
1835
  * option.</p>
1836
1836
  */
1837
- Tenancy?: Tenancy | string;
1837
+ Tenancy?: Tenancy;
1838
1838
  /**
1839
1839
  * @public
1840
1840
  * <p>Reserved for future use.</p>
@@ -1869,7 +1869,7 @@ export interface FleetLaunchTemplateOverridesRequest {
1869
1869
  * <code>InstanceRequirements</code>.</p>
1870
1870
  * </note>
1871
1871
  */
1872
- InstanceType?: _InstanceType | string;
1872
+ InstanceType?: _InstanceType;
1873
1873
  /**
1874
1874
  * @public
1875
1875
  * <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.
@@ -2002,7 +2002,7 @@ export interface CapacityReservationOptionsRequest {
2002
2002
  * <p>If you do not specify a value, the fleet fulfils the On-Demand capacity according to the
2003
2003
  * chosen On-Demand allocation strategy.</p>
2004
2004
  */
2005
- UsageStrategy?: FleetCapacityReservationUsageStrategy | string;
2005
+ UsageStrategy?: FleetCapacityReservationUsageStrategy;
2006
2006
  }
2007
2007
  /**
2008
2008
  * @public
@@ -2022,7 +2022,7 @@ export interface OnDemandOptionsRequest {
2022
2022
  * <p>Default: <code>lowest-price</code>
2023
2023
  * </p>
2024
2024
  */
2025
- AllocationStrategy?: FleetOnDemandAllocationStrategy | string;
2025
+ AllocationStrategy?: FleetOnDemandAllocationStrategy;
2026
2026
  /**
2027
2027
  * @public
2028
2028
  * <p>The strategy for using unused Capacity Reservations for fulfilling On-Demand
@@ -2130,7 +2130,7 @@ export interface FleetSpotCapacityRebalanceRequest {
2130
2130
  * then, after a delay that you specify (in <code>TerminationDelay</code>), terminates the
2131
2131
  * instances that received a rebalance notification.</p>
2132
2132
  */
2133
- ReplacementStrategy?: FleetReplacementStrategy | string;
2133
+ ReplacementStrategy?: FleetReplacementStrategy;
2134
2134
  /**
2135
2135
  * @public
2136
2136
  * <p>The amount of time (in seconds) that Amazon EC2 waits before terminating the old Spot
@@ -2206,7 +2206,7 @@ export interface SpotOptionsRequest {
2206
2206
  * <p>Default: <code>lowest-price</code>
2207
2207
  * </p>
2208
2208
  */
2209
- AllocationStrategy?: SpotAllocationStrategy | string;
2209
+ AllocationStrategy?: SpotAllocationStrategy;
2210
2210
  /**
2211
2211
  * @public
2212
2212
  * <p>The strategies for managing your Spot Instances that are at an elevated risk of being
@@ -2219,7 +2219,7 @@ export interface SpotOptionsRequest {
2219
2219
  * <p>Default: <code>terminate</code>
2220
2220
  * </p>
2221
2221
  */
2222
- InstanceInterruptionBehavior?: SpotInstanceInterruptionBehavior | string;
2222
+ InstanceInterruptionBehavior?: SpotInstanceInterruptionBehavior;
2223
2223
  /**
2224
2224
  * @public
2225
2225
  * <p>The number of Spot pools across which to allocate your target Spot capacity. Supported
@@ -2339,13 +2339,13 @@ export interface TargetCapacitySpecificationRequest {
2339
2339
  * <p>The default <code>TotalTargetCapacity</code>, which is either <code>Spot</code> or
2340
2340
  * <code>On-Demand</code>.</p>
2341
2341
  */
2342
- DefaultTargetCapacityType?: DefaultTargetCapacityType | string;
2342
+ DefaultTargetCapacityType?: DefaultTargetCapacityType;
2343
2343
  /**
2344
2344
  * @public
2345
2345
  * <p>The unit for the target capacity. <code>TargetCapacityUnitType</code> can only be specified when <code>InstanceRequirements</code> is specified.</p>
2346
2346
  * <p>Default: <code>units</code> (translates to number of instances)</p>
2347
2347
  */
2348
- TargetCapacityUnitType?: TargetCapacityUnitType | string;
2348
+ TargetCapacityUnitType?: TargetCapacityUnitType;
2349
2349
  }
2350
2350
  /**
2351
2351
  * @public
@@ -2394,7 +2394,7 @@ export interface CreateFleetRequest {
2394
2394
  * the EC2 Fleet is decreased below the current size of the EC2 Fleet.</p>
2395
2395
  * <p>Supported only for fleets of type <code>maintain</code>.</p>
2396
2396
  */
2397
- ExcessCapacityTerminationPolicy?: FleetExcessCapacityTerminationPolicy | string;
2397
+ ExcessCapacityTerminationPolicy?: FleetExcessCapacityTerminationPolicy;
2398
2398
  /**
2399
2399
  * @public
2400
2400
  * <p>The configuration for the EC2 Fleet.</p>
@@ -2437,7 +2437,7 @@ export interface CreateFleetRequest {
2437
2437
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html">EC2 Fleet
2438
2438
  * request types</a> in the <i>Amazon EC2 User Guide</i>.</p>
2439
2439
  */
2440
- Type?: FleetType | string;
2440
+ Type?: FleetType;
2441
2441
  /**
2442
2442
  * @public
2443
2443
  * <p>The start date and time of the request, in UTC format (for example,
@@ -2711,7 +2711,7 @@ export interface InstanceRequirements {
2711
2711
  * </note>
2712
2712
  * <p>Default: Any manufacturer</p>
2713
2713
  */
2714
- CpuManufacturers?: (CpuManufacturer | string)[];
2714
+ CpuManufacturers?: CpuManufacturer[];
2715
2715
  /**
2716
2716
  * @public
2717
2717
  * <p>The minimum and maximum amount of memory per vCPU, in GiB.</p>
@@ -2746,7 +2746,7 @@ export interface InstanceRequirements {
2746
2746
  * <p>For previous generation instance types, specify <code>previous</code>.</p>
2747
2747
  * <p>Default: Current and previous generation instance types</p>
2748
2748
  */
2749
- InstanceGenerations?: (InstanceGeneration | string)[];
2749
+ InstanceGenerations?: InstanceGeneration[];
2750
2750
  /**
2751
2751
  * @public
2752
2752
  * <p>The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance,
@@ -2800,7 +2800,7 @@ export interface InstanceRequirements {
2800
2800
  * <p>Default: <code>excluded</code>
2801
2801
  * </p>
2802
2802
  */
2803
- BareMetal?: BareMetal | string;
2803
+ BareMetal?: BareMetal;
2804
2804
  /**
2805
2805
  * @public
2806
2806
  * <p>Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see
@@ -2819,7 +2819,7 @@ export interface InstanceRequirements {
2819
2819
  * <p>Default: <code>excluded</code>
2820
2820
  * </p>
2821
2821
  */
2822
- BurstablePerformance?: BurstablePerformance | string;
2822
+ BurstablePerformance?: BurstablePerformance;
2823
2823
  /**
2824
2824
  * @public
2825
2825
  * <p>Indicates whether instance types must support hibernation for On-Demand
@@ -2857,7 +2857,7 @@ export interface InstanceRequirements {
2857
2857
  * <p>Default: <code>included</code>
2858
2858
  * </p>
2859
2859
  */
2860
- LocalStorage?: LocalStorage | string;
2860
+ LocalStorage?: LocalStorage;
2861
2861
  /**
2862
2862
  * @public
2863
2863
  * <p>The type of local storage that is required.</p>
@@ -2873,7 +2873,7 @@ export interface InstanceRequirements {
2873
2873
  * <p>Default: <code>hdd</code> and <code>ssd</code>
2874
2874
  * </p>
2875
2875
  */
2876
- LocalStorageTypes?: (LocalStorageType | string)[];
2876
+ LocalStorageTypes?: LocalStorageType[];
2877
2877
  /**
2878
2878
  * @public
2879
2879
  * <p>The minimum and maximum amount of total local storage, in GB.</p>
@@ -2904,7 +2904,7 @@ export interface InstanceRequirements {
2904
2904
  * </ul>
2905
2905
  * <p>Default: Any accelerator type</p>
2906
2906
  */
2907
- AcceleratorTypes?: (AcceleratorType | string)[];
2907
+ AcceleratorTypes?: AcceleratorType[];
2908
2908
  /**
2909
2909
  * @public
2910
2910
  * <p>The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on
@@ -2932,7 +2932,7 @@ export interface InstanceRequirements {
2932
2932
  * </ul>
2933
2933
  * <p>Default: Any manufacturer</p>
2934
2934
  */
2935
- AcceleratorManufacturers?: (AcceleratorManufacturer | string)[];
2935
+ AcceleratorManufacturers?: AcceleratorManufacturer[];
2936
2936
  /**
2937
2937
  * @public
2938
2938
  * <p>The accelerators that must be on the instance type.</p>
@@ -2967,7 +2967,7 @@ export interface InstanceRequirements {
2967
2967
  * </ul>
2968
2968
  * <p>Default: Any accelerator</p>
2969
2969
  */
2970
- AcceleratorNames?: (AcceleratorName | string)[];
2970
+ AcceleratorNames?: AcceleratorName[];
2971
2971
  /**
2972
2972
  * @public
2973
2973
  * <p>The minimum and maximum amount of total accelerator memory, in MiB.</p>
@@ -3025,7 +3025,7 @@ export interface FleetLaunchTemplateOverrides {
3025
3025
  * <code>InstanceRequirements</code>.</p>
3026
3026
  * </note>
3027
3027
  */
3028
- InstanceType?: _InstanceType | string;
3028
+ InstanceType?: _InstanceType;
3029
3029
  /**
3030
3030
  * @public
3031
3031
  * <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.
@@ -3133,7 +3133,7 @@ export interface CreateFleetError {
3133
3133
  * @public
3134
3134
  * <p>Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.</p>
3135
3135
  */
3136
- Lifecycle?: InstanceLifecycle | string;
3136
+ Lifecycle?: InstanceLifecycle;
3137
3137
  /**
3138
3138
  * @public
3139
3139
  * <p>The error code that indicates why the instance could not be launched. For more
@@ -3173,7 +3173,7 @@ export interface CreateFleetInstance {
3173
3173
  * @public
3174
3174
  * <p>Indicates if the instance that was launched is a Spot Instance or On-Demand Instance.</p>
3175
3175
  */
3176
- Lifecycle?: InstanceLifecycle | string;
3176
+ Lifecycle?: InstanceLifecycle;
3177
3177
  /**
3178
3178
  * @public
3179
3179
  * <p>The IDs of the instances.</p>
@@ -3183,13 +3183,13 @@ export interface CreateFleetInstance {
3183
3183
  * @public
3184
3184
  * <p>The instance type.</p>
3185
3185
  */
3186
- InstanceType?: _InstanceType | string;
3186
+ InstanceType?: _InstanceType;
3187
3187
  /**
3188
3188
  * @public
3189
3189
  * <p>The value is <code>Windows</code> for Windows instances. Otherwise, the value is
3190
3190
  * blank.</p>
3191
3191
  */
3192
- Platform?: PlatformValues | string;
3192
+ Platform?: PlatformValues;
3193
3193
  }
3194
3194
  /**
3195
3195
  * @public
@@ -3234,7 +3234,7 @@ export interface DestinationOptionsRequest {
3234
3234
  * @public
3235
3235
  * <p>The format for the flow log. The default is <code>plain-text</code>.</p>
3236
3236
  */
3237
- FileFormat?: DestinationFileFormat | string;
3237
+ FileFormat?: DestinationFileFormat;
3238
3238
  /**
3239
3239
  * @public
3240
3240
  * <p>Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.
@@ -3338,21 +3338,21 @@ export interface CreateFlowLogsRequest {
3338
3338
  * @public
3339
3339
  * <p>The type of resource to monitor.</p>
3340
3340
  */
3341
- ResourceType: FlowLogsResourceType | string | undefined;
3341
+ ResourceType: FlowLogsResourceType | undefined;
3342
3342
  /**
3343
3343
  * @public
3344
3344
  * <p>The type of traffic to monitor (accepted traffic, rejected traffic, or all traffic).
3345
3345
  * This parameter is not supported for transit gateway resource types. It is required for
3346
3346
  * the other resource types.</p>
3347
3347
  */
3348
- TrafficType?: TrafficType | string;
3348
+ TrafficType?: TrafficType;
3349
3349
  /**
3350
3350
  * @public
3351
3351
  * <p>The type of destination for the flow log data.</p>
3352
3352
  * <p>Default: <code>cloud-watch-logs</code>
3353
3353
  * </p>
3354
3354
  */
3355
- LogDestinationType?: LogDestinationType | string;
3355
+ LogDestinationType?: LogDestinationType;
3356
3356
  /**
3357
3357
  * @public
3358
3358
  * <p>The destination for the flow log data. The meaning of this parameter depends on the destination type.</p>
@@ -3600,7 +3600,7 @@ export interface EbsBlockDevice {
3600
3600
  * <i>Amazon EC2 User Guide</i>. If the volume type is <code>io1</code> or
3601
3601
  * <code>io2</code>, you must specify the IOPS that the volume supports.</p>
3602
3602
  */
3603
- VolumeType?: VolumeType | string;
3603
+ VolumeType?: VolumeType;
3604
3604
  /**
3605
3605
  * @public
3606
3606
  * <p>Identifier (key ID, key alias, ID ARN, or alias ARN) for a customer managed CMK under
@@ -3880,7 +3880,7 @@ export interface Ec2InstanceConnectEndpoint {
3880
3880
  * @public
3881
3881
  * <p>The current state of the EC2 Instance Connect Endpoint.</p>
3882
3882
  */
3883
- State?: Ec2InstanceConnectEndpointState | string;
3883
+ State?: Ec2InstanceConnectEndpointState;
3884
3884
  /**
3885
3885
  * @public
3886
3886
  * <p>The message for the current state of the EC2 Instance Connect Endpoint.
@@ -3974,7 +3974,7 @@ export interface InstanceEventWindowTimeRangeRequest {
3974
3974
  * @public
3975
3975
  * <p>The day on which the time range begins.</p>
3976
3976
  */
3977
- StartWeekDay?: WeekDay | string;
3977
+ StartWeekDay?: WeekDay;
3978
3978
  /**
3979
3979
  * @public
3980
3980
  * <p>The hour when the time range begins.</p>
@@ -3984,7 +3984,7 @@ export interface InstanceEventWindowTimeRangeRequest {
3984
3984
  * @public
3985
3985
  * <p>The day on which the time range ends.</p>
3986
3986
  */
3987
- EndWeekDay?: WeekDay | string;
3987
+ EndWeekDay?: WeekDay;
3988
3988
  /**
3989
3989
  * @public
3990
3990
  * <p>The hour when the time range ends.</p>
@@ -4097,12 +4097,12 @@ export interface ExportToS3TaskSpecification {
4097
4097
  * <p>The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is
4098
4098
  * exported.</p>
4099
4099
  */
4100
- ContainerFormat?: ContainerFormat | string;
4100
+ ContainerFormat?: ContainerFormat;
4101
4101
  /**
4102
4102
  * @public
4103
4103
  * <p>The format for the exported image.</p>
4104
4104
  */
4105
- DiskImageFormat?: DiskImageFormat | string;
4105
+ DiskImageFormat?: DiskImageFormat;
4106
4106
  /**
4107
4107
  * @public
4108
4108
  * <p>The Amazon S3 bucket for the destination image. The destination bucket must exist and have
@@ -4153,7 +4153,7 @@ export interface CreateInstanceExportTaskRequest {
4153
4153
  * @public
4154
4154
  * <p>The target virtualization environment.</p>
4155
4155
  */
4156
- TargetEnvironment: ExportEnvironment | string | undefined;
4156
+ TargetEnvironment: ExportEnvironment | undefined;
4157
4157
  /**
4158
4158
  * @public
4159
4159
  * <p>The tags to apply to the export instance task during creation.</p>
@@ -4170,12 +4170,12 @@ export interface ExportToS3Task {
4170
4170
  * <p>The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is
4171
4171
  * exported.</p>
4172
4172
  */
4173
- ContainerFormat?: ContainerFormat | string;
4173
+ ContainerFormat?: ContainerFormat;
4174
4174
  /**
4175
4175
  * @public
4176
4176
  * <p>The format for the exported image.</p>
4177
4177
  */
4178
- DiskImageFormat?: DiskImageFormat | string;
4178
+ DiskImageFormat?: DiskImageFormat;
4179
4179
  /**
4180
4180
  * @public
4181
4181
  * <p>The Amazon S3 bucket for the destination image. The destination bucket must exist and have
@@ -4203,7 +4203,7 @@ export interface InstanceExportDetails {
4203
4203
  * @public
4204
4204
  * <p>The target virtualization environment.</p>
4205
4205
  */
4206
- TargetEnvironment?: ExportEnvironment | string;
4206
+ TargetEnvironment?: ExportEnvironment;
4207
4207
  }
4208
4208
  /**
4209
4209
  * @public
@@ -4248,7 +4248,7 @@ export interface ExportTask {
4248
4248
  * @public
4249
4249
  * <p>The state of the export task.</p>
4250
4250
  */
4251
- State?: ExportTaskState | string;
4251
+ State?: ExportTaskState;
4252
4252
  /**
4253
4253
  * @public
4254
4254
  * <p>The status message related to the export task.</p>
@@ -4448,7 +4448,7 @@ export interface Ipam {
4448
4448
  * @public
4449
4449
  * <p>The state of the IPAM.</p>
4450
4450
  */
4451
- State?: IpamState | string;
4451
+ State?: IpamState;
4452
4452
  /**
4453
4453
  * @public
4454
4454
  * <p>The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
@@ -4556,7 +4556,7 @@ export interface CreateIpamPoolRequest {
4556
4556
  * @public
4557
4557
  * <p>The IP protocol assigned to this IPAM pool. You must choose either IPv4 or IPv6 protocol for a pool.</p>
4558
4558
  */
4559
- AddressFamily: AddressFamily | string | undefined;
4559
+ AddressFamily: AddressFamily | undefined;
4560
4560
  /**
4561
4561
  * @public
4562
4562
  * <p>If selected, IPAM will continuously look for resources within the CIDR range of this pool
@@ -4612,13 +4612,13 @@ export interface CreateIpamPoolRequest {
4612
4612
  * @public
4613
4613
  * <p>Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.</p>
4614
4614
  */
4615
- AwsService?: IpamPoolAwsService | string;
4615
+ AwsService?: IpamPoolAwsService;
4616
4616
  /**
4617
4617
  * @public
4618
4618
  * <p>The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is <code>byoip</code>. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/intro-create-ipv6-pools.html">Create IPv6 pools</a> in the <i>Amazon VPC IPAM User Guide</i>.
4619
4619
  * By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool if PublicIpSource is <code>amazon</code>. For information on increasing the default limit, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html"> Quotas for your IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
4620
4620
  */
4621
- PublicIpSource?: IpamPoolPublicIpSource | string;
4621
+ PublicIpSource?: IpamPoolPublicIpSource;
4622
4622
  }
4623
4623
  /**
4624
4624
  * @public
@@ -4705,7 +4705,7 @@ export interface IpamPool {
4705
4705
  * @public
4706
4706
  * <p>In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.</p>
4707
4707
  */
4708
- IpamScopeType?: IpamScopeType | string;
4708
+ IpamScopeType?: IpamScopeType;
4709
4709
  /**
4710
4710
  * @public
4711
4711
  * <p>The ARN of the IPAM.</p>
@@ -4731,7 +4731,7 @@ export interface IpamPool {
4731
4731
  * @public
4732
4732
  * <p>The state of the IPAM pool.</p>
4733
4733
  */
4734
- State?: IpamPoolState | string;
4734
+ State?: IpamPoolState;
4735
4735
  /**
4736
4736
  * @public
4737
4737
  * <p>A message related to the failed creation of an IPAM pool.</p>
@@ -4763,7 +4763,7 @@ export interface IpamPool {
4763
4763
  * @public
4764
4764
  * <p>The address family of the pool.</p>
4765
4765
  */
4766
- AddressFamily?: AddressFamily | string;
4766
+ AddressFamily?: AddressFamily;
4767
4767
  /**
4768
4768
  * @public
4769
4769
  * <p>The minimum netmask length required for CIDR allocations in this IPAM pool to be compliant. The minimum netmask length must be less than the maximum netmask length. Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.</p>
@@ -4795,13 +4795,13 @@ export interface IpamPool {
4795
4795
  * @public
4796
4796
  * <p>Limits which service in Amazon Web Services that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.</p>
4797
4797
  */
4798
- AwsService?: IpamPoolAwsService | string;
4798
+ AwsService?: IpamPoolAwsService;
4799
4799
  /**
4800
4800
  * @public
4801
4801
  * <p>The IP address source for pools in the public scope. Only used for provisioning IP address CIDRs to pools in the public scope. Default is <code>BYOIP</code>. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/intro-create-ipv6-pools.html">Create IPv6 pools</a> in the <i>Amazon VPC IPAM User Guide</i>.
4802
4802
  * By default, you can add only one Amazon-provided IPv6 CIDR block to a top-level IPv6 pool. For information on increasing the default limit, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html"> Quotas for your IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
4803
4803
  */
4804
- PublicIpSource?: IpamPoolPublicIpSource | string;
4804
+ PublicIpSource?: IpamPoolPublicIpSource;
4805
4805
  }
4806
4806
  /**
4807
4807
  * @public
@@ -4961,7 +4961,7 @@ export interface IpamResourceDiscovery {
4961
4961
  * </li>
4962
4962
  * </ul>
4963
4963
  */
4964
- State?: IpamResourceDiscoveryState | string;
4964
+ State?: IpamResourceDiscoveryState;
4965
4965
  /**
4966
4966
  * @public
4967
4967
  * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
@@ -5068,7 +5068,7 @@ export interface IpamScope {
5068
5068
  * @public
5069
5069
  * <p>The type of the scope.</p>
5070
5070
  */
5071
- IpamScopeType?: IpamScopeType | string;
5071
+ IpamScopeType?: IpamScopeType;
5072
5072
  /**
5073
5073
  * @public
5074
5074
  * <p>Defines if the scope is the default scope or not.</p>
@@ -5088,7 +5088,7 @@ export interface IpamScope {
5088
5088
  * @public
5089
5089
  * <p>The state of the IPAM scope.</p>
5090
5090
  */
5091
- State?: IpamScopeState | string;
5091
+ State?: IpamScopeState;
5092
5092
  /**
5093
5093
  * @public
5094
5094
  * <p>The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
@@ -5153,7 +5153,7 @@ export interface CreateKeyPairRequest {
5153
5153
  * <p>Default: <code>rsa</code>
5154
5154
  * </p>
5155
5155
  */
5156
- KeyType?: KeyType | string;
5156
+ KeyType?: KeyType;
5157
5157
  /**
5158
5158
  * @public
5159
5159
  * <p>The tags to apply to the new key pair.</p>
@@ -5165,7 +5165,7 @@ export interface CreateKeyPairRequest {
5165
5165
  * <p>Default: <code>pem</code>
5166
5166
  * </p>
5167
5167
  */
5168
- KeyFormat?: KeyFormat | string;
5168
+ KeyFormat?: KeyFormat;
5169
5169
  }
5170
5170
  /**
5171
5171
  * @public
@@ -5291,7 +5291,7 @@ export interface LaunchTemplateEbsBlockDeviceRequest {
5291
5291
  * <p>The volume type. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html">Amazon EBS volume types</a> in the
5292
5292
  * <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
5293
5293
  */
5294
- VolumeType?: VolumeType | string;
5294
+ VolumeType?: VolumeType;
5295
5295
  /**
5296
5296
  * @public
5297
5297
  * <p>The throughput to provision for a <code>gp3</code> volume, with a maximum of 1,000
@@ -5386,7 +5386,7 @@ export interface LaunchTemplateCapacityReservationSpecificationRequest {
5386
5386
  * </li>
5387
5387
  * </ul>
5388
5388
  */
5389
- CapacityReservationPreference?: CapacityReservationPreference | string;
5389
+ CapacityReservationPreference?: CapacityReservationPreference;
5390
5390
  /**
5391
5391
  * @public
5392
5392
  * <p>Information about the target Capacity Reservation or Capacity Reservation
@@ -5430,7 +5430,7 @@ export interface LaunchTemplateCpuOptionsRequest {
5430
5430
  * with M6a, R6a, and C6a instance types only. For more information, see
5431
5431
  * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html">AMD SEV-SNP</a>.</p>
5432
5432
  */
5433
- AmdSevSnp?: AmdSevSnpSpecification | string;
5433
+ AmdSevSnp?: AmdSevSnpSpecification;
5434
5434
  }
5435
5435
  /**
5436
5436
  * @public
@@ -5590,7 +5590,7 @@ export interface LaunchTemplateSpotMarketOptionsRequest {
5590
5590
  * @public
5591
5591
  * <p>The Spot Instance request type.</p>
5592
5592
  */
5593
- SpotInstanceType?: SpotInstanceType | string;
5593
+ SpotInstanceType?: SpotInstanceType;
5594
5594
  /**
5595
5595
  * @public
5596
5596
  * <p>Deprecated.</p>
@@ -5620,7 +5620,7 @@ export interface LaunchTemplateSpotMarketOptionsRequest {
5620
5620
  * <p>The behavior when a Spot Instance is interrupted. The default is
5621
5621
  * <code>terminate</code>.</p>
5622
5622
  */
5623
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
5623
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
5624
5624
  }
5625
5625
  /**
5626
5626
  * @public
@@ -5631,7 +5631,7 @@ export interface LaunchTemplateInstanceMarketOptionsRequest {
5631
5631
  * @public
5632
5632
  * <p>The market type.</p>
5633
5633
  */
5634
- MarketType?: MarketType | string;
5634
+ MarketType?: MarketType;
5635
5635
  /**
5636
5636
  * @public
5637
5637
  * <p>The options for Spot Instances.</p>
@@ -5671,7 +5671,7 @@ export interface LaunchTemplateInstanceMaintenanceOptionsRequest {
5671
5671
  * <p>Disables the automatic recovery behavior of your instance or sets it to default. For
5672
5672
  * more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-recover.html#instance-configuration-recovery">Simplified automatic recovery</a>.</p>
5673
5673
  */
5674
- AutoRecovery?: LaunchTemplateAutoRecoveryState | string;
5674
+ AutoRecovery?: LaunchTemplateAutoRecoveryState;
5675
5675
  }
5676
5676
  /**
5677
5677
  * @public
@@ -5751,7 +5751,7 @@ export interface LaunchTemplateInstanceMetadataOptionsRequest {
5751
5751
  * <p>Default: <code>optional</code>
5752
5752
  * </p>
5753
5753
  */
5754
- HttpTokens?: LaunchTemplateHttpTokensState | string;
5754
+ HttpTokens?: LaunchTemplateHttpTokensState;
5755
5755
  /**
5756
5756
  * @public
5757
5757
  * <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
@@ -5770,14 +5770,14 @@ export interface LaunchTemplateInstanceMetadataOptionsRequest {
5770
5770
  * your instance metadata. </p>
5771
5771
  * </note>
5772
5772
  */
5773
- HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | string;
5773
+ HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
5774
5774
  /**
5775
5775
  * @public
5776
5776
  * <p>Enables or disables the IPv6 endpoint for the instance metadata service.</p>
5777
5777
  * <p>Default: <code>disabled</code>
5778
5778
  * </p>
5779
5779
  */
5780
- HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | string;
5780
+ HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
5781
5781
  /**
5782
5782
  * @public
5783
5783
  * <p>Set to <code>enabled</code> to allow access to instance tags from the instance
@@ -5787,7 +5787,7 @@ export interface LaunchTemplateInstanceMetadataOptionsRequest {
5787
5787
  * <p>Default: <code>disabled</code>
5788
5788
  * </p>
5789
5789
  */
5790
- InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | string;
5790
+ InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState;
5791
5791
  }
5792
5792
  /**
5793
5793
  * @public
@@ -6010,7 +6010,7 @@ export interface LaunchTemplatePlacementRequest {
6010
6010
  * <p>The tenancy of the instance. An instance with a
6011
6011
  * tenancy of dedicated runs on single-tenant hardware.</p>
6012
6012
  */
6013
- Tenancy?: Tenancy | string;
6013
+ Tenancy?: Tenancy;
6014
6014
  /**
6015
6015
  * @public
6016
6016
  * <p>Reserved for future use.</p>
@@ -6048,7 +6048,7 @@ export interface LaunchTemplatePrivateDnsNameOptionsRequest {
6048
6048
  * name must be based on the instance ID. For dual-stack subnets, you can specify whether
6049
6049
  * DNS names use the instance IPv4 address or the instance ID.</p>
6050
6050
  */
6051
- HostnameType?: HostnameType | string;
6051
+ HostnameType?: HostnameType;
6052
6052
  /**
6053
6053
  * @public
6054
6054
  * <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A
@@ -6079,7 +6079,7 @@ export interface LaunchTemplateTagSpecificationRequest {
6079
6079
  * launch fails. For example, not all instance types include an Elastic GPU.</p>
6080
6080
  * <p>To tag a resource after it has been created, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
6081
6081
  */
6082
- ResourceType?: ResourceType | string;
6082
+ ResourceType?: ResourceType;
6083
6083
  /**
6084
6084
  * @public
6085
6085
  * <p>The tags to apply to the resource.</p>
@@ -6175,7 +6175,7 @@ export interface RequestLaunchTemplateData {
6175
6175
  * <p>If you specify <code>InstanceType</code>, you can't specify
6176
6176
  * <code>InstanceRequirements</code>.</p>
6177
6177
  */
6178
- InstanceType?: _InstanceType | string;
6178
+ InstanceType?: _InstanceType;
6179
6179
  /**
6180
6180
  * @public
6181
6181
  * <p>The name of the key pair. You can create a key pair using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateKeyPair.html">CreateKeyPair</a> or
@@ -6222,7 +6222,7 @@ export interface RequestLaunchTemplateData {
6222
6222
  * <p>Default: <code>stop</code>
6223
6223
  * </p>
6224
6224
  */
6225
- InstanceInitiatedShutdownBehavior?: ShutdownBehavior | string;
6225
+ InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
6226
6226
  /**
6227
6227
  * @public
6228
6228
  * <p>The user data to make available to the instance. You must provide base64-encoded text.
@@ -6641,7 +6641,7 @@ export interface LaunchTemplateEbsBlockDevice {
6641
6641
  * @public
6642
6642
  * <p>The volume type.</p>
6643
6643
  */
6644
- VolumeType?: VolumeType | string;
6644
+ VolumeType?: VolumeType;
6645
6645
  /**
6646
6646
  * @public
6647
6647
  * <p>The throughput that the volume supports, in MiB/s.</p>
@@ -6713,7 +6713,7 @@ export interface LaunchTemplateCapacityReservationSpecificationResponse {
6713
6713
  * </li>
6714
6714
  * </ul>
6715
6715
  */
6716
- CapacityReservationPreference?: CapacityReservationPreference | string;
6716
+ CapacityReservationPreference?: CapacityReservationPreference;
6717
6717
  /**
6718
6718
  * @public
6719
6719
  * <p>Information about the target Capacity Reservation or Capacity Reservation
@@ -6741,7 +6741,7 @@ export interface LaunchTemplateCpuOptions {
6741
6741
  * <p>Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see
6742
6742
  * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html">AMD SEV-SNP</a>.</p>
6743
6743
  */
6744
- AmdSevSnp?: AmdSevSnpSpecification | string;
6744
+ AmdSevSnp?: AmdSevSnpSpecification;
6745
6745
  }
6746
6746
  /**
6747
6747
  * @public
@@ -6845,7 +6845,7 @@ export interface LaunchTemplateSpotMarketOptions {
6845
6845
  * @public
6846
6846
  * <p>The Spot Instance request type.</p>
6847
6847
  */
6848
- SpotInstanceType?: SpotInstanceType | string;
6848
+ SpotInstanceType?: SpotInstanceType;
6849
6849
  /**
6850
6850
  * @public
6851
6851
  * <p>The required duration for the Spot Instances (also known as Spot blocks), in minutes.
@@ -6864,7 +6864,7 @@ export interface LaunchTemplateSpotMarketOptions {
6864
6864
  * @public
6865
6865
  * <p>The behavior when a Spot Instance is interrupted.</p>
6866
6866
  */
6867
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
6867
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
6868
6868
  }
6869
6869
  /**
6870
6870
  * @public
@@ -6875,7 +6875,7 @@ export interface LaunchTemplateInstanceMarketOptions {
6875
6875
  * @public
6876
6876
  * <p>The market type.</p>
6877
6877
  */
6878
- MarketType?: MarketType | string;
6878
+ MarketType?: MarketType;
6879
6879
  /**
6880
6880
  * @public
6881
6881
  * <p>The options for Spot Instances.</p>
@@ -6903,7 +6903,7 @@ export interface LaunchTemplateInstanceMaintenanceOptions {
6903
6903
  * <p>Disables the automatic recovery behavior of your instance or sets it to
6904
6904
  * default.</p>
6905
6905
  */
6906
- AutoRecovery?: LaunchTemplateAutoRecoveryState | string;
6906
+ AutoRecovery?: LaunchTemplateAutoRecoveryState;
6907
6907
  }
6908
6908
  /**
6909
6909
  * @public
@@ -6933,7 +6933,7 @@ export interface LaunchTemplateInstanceMetadataOptions {
6933
6933
  * <code>applied</code> - The metadata options have been successfully applied on the
6934
6934
  * instance.</p>
6935
6935
  */
6936
- State?: LaunchTemplateInstanceMetadataOptionsState | string;
6936
+ State?: LaunchTemplateInstanceMetadataOptionsState;
6937
6937
  /**
6938
6938
  * @public
6939
6939
  * <p>Indicates whether IMDSv2 is <code>optional</code> or <code>required</code>.</p>
@@ -6949,7 +6949,7 @@ export interface LaunchTemplateInstanceMetadataOptions {
6949
6949
  * <p>Default: <code>optional</code>
6950
6950
  * </p>
6951
6951
  */
6952
- HttpTokens?: LaunchTemplateHttpTokensState | string;
6952
+ HttpTokens?: LaunchTemplateHttpTokensState;
6953
6953
  /**
6954
6954
  * @public
6955
6955
  * <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
@@ -6967,14 +6967,14 @@ export interface LaunchTemplateInstanceMetadataOptions {
6967
6967
  * your instance metadata. </p>
6968
6968
  * </note>
6969
6969
  */
6970
- HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState | string;
6970
+ HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
6971
6971
  /**
6972
6972
  * @public
6973
6973
  * <p>Enables or disables the IPv6 endpoint for the instance metadata service.</p>
6974
6974
  * <p>Default: <code>disabled</code>
6975
6975
  * </p>
6976
6976
  */
6977
- HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | string;
6977
+ HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
6978
6978
  /**
6979
6979
  * @public
6980
6980
  * <p>Set to <code>enabled</code> to allow access to instance tags from the instance
@@ -6984,7 +6984,7 @@ export interface LaunchTemplateInstanceMetadataOptions {
6984
6984
  * <p>Default: <code>disabled</code>
6985
6985
  * </p>
6986
6986
  */
6987
- InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | string;
6987
+ InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState;
6988
6988
  }
6989
6989
  /**
6990
6990
  * @public
@@ -7184,7 +7184,7 @@ export interface LaunchTemplatePlacement {
7184
7184
  * <p>The tenancy of the instance. An instance with a
7185
7185
  * tenancy of <code>dedicated</code> runs on single-tenant hardware. </p>
7186
7186
  */
7187
- Tenancy?: Tenancy | string;
7187
+ Tenancy?: Tenancy;
7188
7188
  /**
7189
7189
  * @public
7190
7190
  * <p>Reserved for future use.</p>
@@ -7217,7 +7217,7 @@ export interface LaunchTemplatePrivateDnsNameOptions {
7217
7217
  * @public
7218
7218
  * <p>The type of hostname to assign to an instance.</p>
7219
7219
  */
7220
- HostnameType?: HostnameType | string;
7220
+ HostnameType?: HostnameType;
7221
7221
  /**
7222
7222
  * @public
7223
7223
  * <p>Indicates whether to respond to DNS queries for instance hostnames with DNS A
@@ -7240,7 +7240,7 @@ export interface LaunchTemplateTagSpecification {
7240
7240
  * @public
7241
7241
  * <p>The type of resource to tag.</p>
7242
7242
  */
7243
- ResourceType?: ResourceType | string;
7243
+ ResourceType?: ResourceType;
7244
7244
  /**
7245
7245
  * @public
7246
7246
  * <p>The tags for the resource.</p>
@@ -7304,7 +7304,7 @@ export interface ResponseLaunchTemplateData {
7304
7304
  * @public
7305
7305
  * <p>The instance type.</p>
7306
7306
  */
7307
- InstanceType?: _InstanceType | string;
7307
+ InstanceType?: _InstanceType;
7308
7308
  /**
7309
7309
  * @public
7310
7310
  * <p>The name of the key pair.</p>
@@ -7336,7 +7336,7 @@ export interface ResponseLaunchTemplateData {
7336
7336
  * <p>Indicates whether an instance stops or terminates when you initiate shutdown from the
7337
7337
  * instance (using the operating system command for system shutdown).</p>
7338
7338
  */
7339
- InstanceInitiatedShutdownBehavior?: ShutdownBehavior | string;
7339
+ InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
7340
7340
  /**
7341
7341
  * @public
7342
7342
  * <p>The user data for the instance. </p>
@@ -7600,12 +7600,12 @@ export interface LocalGatewayRoute {
7600
7600
  * @public
7601
7601
  * <p>The route type.</p>
7602
7602
  */
7603
- Type?: LocalGatewayRouteType | string;
7603
+ Type?: LocalGatewayRouteType;
7604
7604
  /**
7605
7605
  * @public
7606
7606
  * <p>The state of the route.</p>
7607
7607
  */
7608
- State?: LocalGatewayRouteState | string;
7608
+ State?: LocalGatewayRouteState;
7609
7609
  /**
7610
7610
  * @public
7611
7611
  * <p>The ID of the local gateway route table.</p>
@@ -7683,7 +7683,7 @@ export interface CreateLocalGatewayRouteTableRequest {
7683
7683
  * The mode of the local gateway route table.
7684
7684
  * </p>
7685
7685
  */
7686
- Mode?: LocalGatewayRouteTableMode | string;
7686
+ Mode?: LocalGatewayRouteTableMode;
7687
7687
  /**
7688
7688
  * @public
7689
7689
  * <p>
@@ -7826,7 +7826,7 @@ export interface LocalGatewayRouteTable {
7826
7826
  * @public
7827
7827
  * <p>The mode of the local gateway route table.</p>
7828
7828
  */
7829
- Mode?: LocalGatewayRouteTableMode | string;
7829
+ Mode?: LocalGatewayRouteTableMode;
7830
7830
  /**
7831
7831
  * @public
7832
7832
  * <p>Information about the state change.</p>
@@ -8104,7 +8104,7 @@ export interface ManagedPrefixList {
8104
8104
  * @public
8105
8105
  * <p>The current state of the prefix list.</p>
8106
8106
  */
8107
- State?: PrefixListState | string;
8107
+ State?: PrefixListState;
8108
8108
  /**
8109
8109
  * @public
8110
8110
  * <p>The state message.</p>
@@ -8204,7 +8204,7 @@ export interface CreateNatGatewayRequest {
8204
8204
  * <p>Indicates whether the NAT gateway supports public or private connectivity.
8205
8205
  * The default is public connectivity.</p>
8206
8206
  */
8207
- ConnectivityType?: ConnectivityType | string;
8207
+ ConnectivityType?: ConnectivityType;
8208
8208
  /**
8209
8209
  * @public
8210
8210
  * <p>The private IPv4 address to assign to the NAT gateway. If you don't provide an address, a private IPv4 address will be automatically assigned.</p>
@@ -8370,7 +8370,7 @@ export interface NatGateway {
8370
8370
  * </li>
8371
8371
  * </ul>
8372
8372
  */
8373
- State?: NatGatewayState | string;
8373
+ State?: NatGatewayState;
8374
8374
  /**
8375
8375
  * @public
8376
8376
  * <p>The ID of the subnet in which the NAT gateway is located.</p>
@@ -8390,7 +8390,7 @@ export interface NatGateway {
8390
8390
  * @public
8391
8391
  * <p>Indicates whether the NAT gateway supports public or private connectivity.</p>
8392
8392
  */
8393
- ConnectivityType?: ConnectivityType | string;
8393
+ ConnectivityType?: ConnectivityType;
8394
8394
  }
8395
8395
  /**
8396
8396
  * @public
@@ -8517,7 +8517,7 @@ export interface NetworkAclEntry {
8517
8517
  * @public
8518
8518
  * <p>Indicates whether to allow or deny the traffic that matches the rule.</p>
8519
8519
  */
8520
- RuleAction?: RuleAction | string;
8520
+ RuleAction?: RuleAction;
8521
8521
  /**
8522
8522
  * @public
8523
8523
  * <p>The rule number for the entry. ACL entries are processed in ascending order by rule number.</p>
@@ -8634,7 +8634,7 @@ export interface CreateNetworkAclEntryRequest {
8634
8634
  * @public
8635
8635
  * <p>Indicates whether to allow or deny the traffic that matches the rule.</p>
8636
8636
  */
8637
- RuleAction: RuleAction | string | undefined;
8637
+ RuleAction: RuleAction | undefined;
8638
8638
  /**
8639
8639
  * @public
8640
8640
  * <p>The rule number for the entry (for example, 100). ACL entries are processed in ascending order by rule number.</p>
@@ -8813,7 +8813,7 @@ export interface CreateNetworkInsightsPathRequest {
8813
8813
  * @public
8814
8814
  * <p>The protocol.</p>
8815
8815
  */
8816
- Protocol: Protocol | string | undefined;
8816
+ Protocol: Protocol | undefined;
8817
8817
  /**
8818
8818
  * @public
8819
8819
  * <p>The destination port.</p>
@@ -8947,7 +8947,7 @@ export interface NetworkInsightsPath {
8947
8947
  * @public
8948
8948
  * <p>The protocol.</p>
8949
8949
  */
8950
- Protocol?: Protocol | string;
8950
+ Protocol?: Protocol;
8951
8951
  /**
8952
8952
  * @public
8953
8953
  * <p>The destination port.</p>
@@ -9090,7 +9090,7 @@ export interface CreateNetworkInterfaceRequest {
9090
9090
  * <p>The type of network interface. The default is <code>interface</code>.</p>
9091
9091
  * <p>The only supported values are <code>interface</code>, <code>efa</code>, and <code>trunk</code>.</p>
9092
9092
  */
9093
- InterfaceType?: NetworkInterfaceCreationType | string;
9093
+ InterfaceType?: NetworkInterfaceCreationType;
9094
9094
  /**
9095
9095
  * @public
9096
9096
  * <p>The ID of the subnet to associate with the network interface.</p>
@@ -9242,7 +9242,7 @@ export interface NetworkInterfaceAttachment {
9242
9242
  * @public
9243
9243
  * <p>The attachment state.</p>
9244
9244
  */
9245
- Status?: AttachmentStatus | string;
9245
+ Status?: AttachmentStatus;
9246
9246
  /**
9247
9247
  * @public
9248
9248
  * <p>Configures ENA Express for the network interface that this action attaches to the instance.</p>
@@ -9394,7 +9394,7 @@ export interface NetworkInterface {
9394
9394
  * @public
9395
9395
  * <p>The type of network interface.</p>
9396
9396
  */
9397
- InterfaceType?: NetworkInterfaceType | string;
9397
+ InterfaceType?: NetworkInterfaceType;
9398
9398
  /**
9399
9399
  * @public
9400
9400
  * <p>The IPv6 addresses associated with the network interface.</p>
@@ -9464,7 +9464,7 @@ export interface NetworkInterface {
9464
9464
  * @public
9465
9465
  * <p>The status of the network interface.</p>
9466
9466
  */
9467
- Status?: NetworkInterfaceStatus | string;
9467
+ Status?: NetworkInterfaceStatus;
9468
9468
  /**
9469
9469
  * @public
9470
9470
  * <p>The ID of the subnet.</p>
@@ -9551,7 +9551,7 @@ export interface CreateNetworkInterfacePermissionRequest {
9551
9551
  * @public
9552
9552
  * <p>The type of permission to grant.</p>
9553
9553
  */
9554
- Permission: InterfacePermissionType | string | undefined;
9554
+ Permission: InterfacePermissionType | undefined;
9555
9555
  /**
9556
9556
  * @public
9557
9557
  * <p>Checks whether you have the required permissions for the action, without actually making the request,
@@ -9583,7 +9583,7 @@ export interface NetworkInterfacePermissionState {
9583
9583
  * @public
9584
9584
  * <p>The state of the permission.</p>
9585
9585
  */
9586
- State?: NetworkInterfacePermissionStateCode | string;
9586
+ State?: NetworkInterfacePermissionStateCode;
9587
9587
  /**
9588
9588
  * @public
9589
9589
  * <p>A status message, if applicable.</p>
@@ -9619,7 +9619,7 @@ export interface NetworkInterfacePermission {
9619
9619
  * @public
9620
9620
  * <p>The type of permission.</p>
9621
9621
  */
9622
- Permission?: InterfacePermissionType | string;
9622
+ Permission?: InterfacePermissionType;
9623
9623
  /**
9624
9624
  * @public
9625
9625
  * <p>Information about the state of the permission.</p>
@@ -9684,7 +9684,7 @@ export interface CreatePlacementGroupRequest {
9684
9684
  * @public
9685
9685
  * <p>The placement strategy.</p>
9686
9686
  */
9687
- Strategy?: PlacementStrategy | string;
9687
+ Strategy?: PlacementStrategy;
9688
9688
  /**
9689
9689
  * @public
9690
9690
  * <p>The number of partitions. Valid only when <b>Strategy</b> is
@@ -9709,7 +9709,7 @@ export interface CreatePlacementGroupRequest {
9709
9709
  * </li>
9710
9710
  * </ul>
9711
9711
  */
9712
- SpreadLevel?: SpreadLevel | string;
9712
+ SpreadLevel?: SpreadLevel;
9713
9713
  }
9714
9714
  /**
9715
9715
  * @public
@@ -9739,12 +9739,12 @@ export interface PlacementGroup {
9739
9739
  * @public
9740
9740
  * <p>The state of the placement group.</p>
9741
9741
  */
9742
- State?: PlacementGroupState | string;
9742
+ State?: PlacementGroupState;
9743
9743
  /**
9744
9744
  * @public
9745
9745
  * <p>The placement strategy.</p>
9746
9746
  */
9747
- Strategy?: PlacementStrategy | string;
9747
+ Strategy?: PlacementStrategy;
9748
9748
  /**
9749
9749
  * @public
9750
9750
  * <p>The number of partitions. Valid only if <b>strategy</b> is
@@ -9771,7 +9771,7 @@ export interface PlacementGroup {
9771
9771
  * <p>The spread level for the placement group. <i>Only</i> Outpost placement
9772
9772
  * groups can be spread across hosts.</p>
9773
9773
  */
9774
- SpreadLevel?: SpreadLevel | string;
9774
+ SpreadLevel?: SpreadLevel;
9775
9775
  }
9776
9776
  /**
9777
9777
  * @internal