cdk-lambda-subminute 2.0.394 → 2.0.396
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chatbot-2017-10-11.min.json +1 -1
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +40 -38
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +117 -97
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +12 -12
- package/node_modules/aws-sdk/clients/apigateway.d.ts +1 -1
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +4 -4
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +73 -64
- package/node_modules/aws-sdk/clients/ec2.d.ts +31 -31
- package/node_modules/aws-sdk/clients/fsx.d.ts +24 -24
- package/node_modules/aws-sdk/clients/organizations.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sesv2.d.ts +27 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +43 -41
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +20 -20
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1837,11 +1837,11 @@ declare class EC2 extends Service {
|
|
1837
1837
|
*/
|
1838
1838
|
describeByoipCidrs(callback?: (err: AWSError, data: EC2.Types.DescribeByoipCidrsResult) => void): Request<EC2.Types.DescribeByoipCidrsResult, AWSError>;
|
1839
1839
|
/**
|
1840
|
-
* Describes Capacity Block offerings available for purchase. With Capacity Blocks, you purchase a specific instance type for a period of time.
|
1840
|
+
* Describes Capacity Block offerings available for purchase in the Amazon Web Services Region that you're currently using. With Capacity Blocks, you purchase a specific instance type for a period of time.
|
1841
1841
|
*/
|
1842
1842
|
describeCapacityBlockOfferings(params: EC2.Types.DescribeCapacityBlockOfferingsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeCapacityBlockOfferingsResult) => void): Request<EC2.Types.DescribeCapacityBlockOfferingsResult, AWSError>;
|
1843
1843
|
/**
|
1844
|
-
* Describes Capacity Block offerings available for purchase. With Capacity Blocks, you purchase a specific instance type for a period of time.
|
1844
|
+
* Describes Capacity Block offerings available for purchase in the Amazon Web Services Region that you're currently using. With Capacity Blocks, you purchase a specific instance type for a period of time.
|
1845
1845
|
*/
|
1846
1846
|
describeCapacityBlockOfferings(callback?: (err: AWSError, data: EC2.Types.DescribeCapacityBlockOfferingsResult) => void): Request<EC2.Types.DescribeCapacityBlockOfferingsResult, AWSError>;
|
1847
1847
|
/**
|
@@ -2005,19 +2005,19 @@ declare class EC2 extends Service {
|
|
2005
2005
|
*/
|
2006
2006
|
describeFleetHistory(callback?: (err: AWSError, data: EC2.Types.DescribeFleetHistoryResult) => void): Request<EC2.Types.DescribeFleetHistoryResult, AWSError>;
|
2007
2007
|
/**
|
2008
|
-
* Describes the running instances for the specified EC2 Fleet. For more information, see
|
2008
|
+
* Describes the running instances for the specified EC2 Fleet. Currently, DescribeFleetInstances does not support fleets of type instant. Instead, use DescribeFleets, specifying the instant fleet ID in the request. For more information, see Describe your EC2 Fleet in the Amazon EC2 User Guide.
|
2009
2009
|
*/
|
2010
2010
|
describeFleetInstances(params: EC2.Types.DescribeFleetInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeFleetInstancesResult) => void): Request<EC2.Types.DescribeFleetInstancesResult, AWSError>;
|
2011
2011
|
/**
|
2012
|
-
* Describes the running instances for the specified EC2 Fleet. For more information, see
|
2012
|
+
* Describes the running instances for the specified EC2 Fleet. Currently, DescribeFleetInstances does not support fleets of type instant. Instead, use DescribeFleets, specifying the instant fleet ID in the request. For more information, see Describe your EC2 Fleet in the Amazon EC2 User Guide.
|
2013
2013
|
*/
|
2014
2014
|
describeFleetInstances(callback?: (err: AWSError, data: EC2.Types.DescribeFleetInstancesResult) => void): Request<EC2.Types.DescribeFleetInstancesResult, AWSError>;
|
2015
2015
|
/**
|
2016
|
-
* Describes the specified EC2
|
2016
|
+
* Describes the specified EC2 Fleet or all of your EC2 Fleets. If a fleet is of type instant, you must specify the fleet ID in the request, otherwise the fleet does not appear in the response. For more information, see Describe your EC2 Fleet in the Amazon EC2 User Guide.
|
2017
2017
|
*/
|
2018
2018
|
describeFleets(params: EC2.Types.DescribeFleetsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeFleetsResult) => void): Request<EC2.Types.DescribeFleetsResult, AWSError>;
|
2019
2019
|
/**
|
2020
|
-
* Describes the specified EC2
|
2020
|
+
* Describes the specified EC2 Fleet or all of your EC2 Fleets. If a fleet is of type instant, you must specify the fleet ID in the request, otherwise the fleet does not appear in the response. For more information, see Describe your EC2 Fleet in the Amazon EC2 User Guide.
|
2021
2021
|
*/
|
2022
2022
|
describeFleets(callback?: (err: AWSError, data: EC2.Types.DescribeFleetsResult) => void): Request<EC2.Types.DescribeFleetsResult, AWSError>;
|
2023
2023
|
/**
|
@@ -2165,11 +2165,11 @@ declare class EC2 extends Service {
|
|
2165
2165
|
*/
|
2166
2166
|
describeInstanceEventWindows(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceEventWindowsResult) => void): Request<EC2.Types.DescribeInstanceEventWindowsResult, AWSError>;
|
2167
2167
|
/**
|
2168
|
-
* Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances. Instance status includes the following components: Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide. Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide. Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide.
|
2168
|
+
* Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances. Instance status includes the following components: Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide. Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide. Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2169
2169
|
*/
|
2170
2170
|
describeInstanceStatus(params: EC2.Types.DescribeInstanceStatusRequest, callback?: (err: AWSError, data: EC2.Types.DescribeInstanceStatusResult) => void): Request<EC2.Types.DescribeInstanceStatusResult, AWSError>;
|
2171
2171
|
/**
|
2172
|
-
* Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances. Instance status includes the following components: Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide. Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide. Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide.
|
2172
|
+
* Describes the status of the specified instances or all of your instances. By default, only running instances are described, unless you specifically indicate to return the status of all instances. Instance status includes the following components: Status checks - Amazon EC2 performs status checks on running EC2 instances to identify hardware and software issues. For more information, see Status checks for your instances and Troubleshoot instances with failed status checks in the Amazon EC2 User Guide. Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, or terminate) for your instances related to hardware issues, software updates, or system maintenance. For more information, see Scheduled events for your instances in the Amazon EC2 User Guide. Instance state - You can manage your instances from the moment you launch them through their termination. For more information, see Instance lifecycle in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2173
2173
|
*/
|
2174
2174
|
describeInstanceStatus(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceStatusResult) => void): Request<EC2.Types.DescribeInstanceStatusResult, AWSError>;
|
2175
2175
|
/**
|
@@ -2197,11 +2197,11 @@ declare class EC2 extends Service {
|
|
2197
2197
|
*/
|
2198
2198
|
describeInstanceTypes(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypesResult) => void): Request<EC2.Types.DescribeInstanceTypesResult, AWSError>;
|
2199
2199
|
/**
|
2200
|
-
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
2200
|
+
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2201
2201
|
*/
|
2202
2202
|
describeInstances(params: EC2.Types.DescribeInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeInstancesResult) => void): Request<EC2.Types.DescribeInstancesResult, AWSError>;
|
2203
2203
|
/**
|
2204
|
-
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
2204
|
+
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2205
2205
|
*/
|
2206
2206
|
describeInstances(callback?: (err: AWSError, data: EC2.Types.DescribeInstancesResult) => void): Request<EC2.Types.DescribeInstancesResult, AWSError>;
|
2207
2207
|
/**
|
@@ -2485,35 +2485,35 @@ declare class EC2 extends Service {
|
|
2485
2485
|
*/
|
2486
2486
|
describeReplaceRootVolumeTasks(callback?: (err: AWSError, data: EC2.Types.DescribeReplaceRootVolumeTasksResult) => void): Request<EC2.Types.DescribeReplaceRootVolumeTasksResult, AWSError>;
|
2487
2487
|
/**
|
2488
|
-
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
2488
|
+
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2489
2489
|
*/
|
2490
2490
|
describeReservedInstances(params: EC2.Types.DescribeReservedInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesResult) => void): Request<EC2.Types.DescribeReservedInstancesResult, AWSError>;
|
2491
2491
|
/**
|
2492
|
-
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
2492
|
+
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2493
2493
|
*/
|
2494
2494
|
describeReservedInstances(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesResult) => void): Request<EC2.Types.DescribeReservedInstancesResult, AWSError>;
|
2495
2495
|
/**
|
2496
|
-
* Describes your account's Reserved Instance listings in the Reserved Instance Marketplace. The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances. As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase. As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you're searching for with what's available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
2496
|
+
* Describes your account's Reserved Instance listings in the Reserved Instance Marketplace. The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances. As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase. As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you're searching for with what's available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2497
2497
|
*/
|
2498
2498
|
describeReservedInstancesListings(params: EC2.Types.DescribeReservedInstancesListingsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesListingsResult) => void): Request<EC2.Types.DescribeReservedInstancesListingsResult, AWSError>;
|
2499
2499
|
/**
|
2500
|
-
* Describes your account's Reserved Instance listings in the Reserved Instance Marketplace. The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances. As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase. As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you're searching for with what's available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
2500
|
+
* Describes your account's Reserved Instance listings in the Reserved Instance Marketplace. The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances. As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase. As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you're searching for with what's available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2501
2501
|
*/
|
2502
2502
|
describeReservedInstancesListings(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesListingsResult) => void): Request<EC2.Types.DescribeReservedInstancesListingsResult, AWSError>;
|
2503
2503
|
/**
|
2504
|
-
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
2504
|
+
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2505
2505
|
*/
|
2506
2506
|
describeReservedInstancesModifications(params: EC2.Types.DescribeReservedInstancesModificationsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesModificationsResult) => void): Request<EC2.Types.DescribeReservedInstancesModificationsResult, AWSError>;
|
2507
2507
|
/**
|
2508
|
-
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
2508
|
+
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2509
2509
|
*/
|
2510
2510
|
describeReservedInstancesModifications(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesModificationsResult) => void): Request<EC2.Types.DescribeReservedInstancesModificationsResult, AWSError>;
|
2511
2511
|
/**
|
2512
|
-
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
2512
|
+
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2513
2513
|
*/
|
2514
2514
|
describeReservedInstancesOfferings(params: EC2.Types.DescribeReservedInstancesOfferingsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesOfferingsResult) => void): Request<EC2.Types.DescribeReservedInstancesOfferingsResult, AWSError>;
|
2515
2515
|
/**
|
2516
|
-
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
2516
|
+
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide. The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.
|
2517
2517
|
*/
|
2518
2518
|
describeReservedInstancesOfferings(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesOfferingsResult) => void): Request<EC2.Types.DescribeReservedInstancesOfferingsResult, AWSError>;
|
2519
2519
|
/**
|
@@ -4021,11 +4021,11 @@ declare class EC2 extends Service {
|
|
4021
4021
|
*/
|
4022
4022
|
modifyInstanceMetadataOptions(callback?: (err: AWSError, data: EC2.Types.ModifyInstanceMetadataOptionsResult) => void): Request<EC2.Types.ModifyInstanceMetadataOptionsResult, AWSError>;
|
4023
4023
|
/**
|
4024
|
-
* Modifies the placement attributes for a specified instance. You can do the following: Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is
|
4024
|
+
* Modifies the placement attributes for a specified instance. You can do the following: Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is started, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists. Change the Dedicated Host with which an instance is associated. Change the instance tenancy of an instance. Move an instance to or from a placement group. At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request. To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped state.
|
4025
4025
|
*/
|
4026
4026
|
modifyInstancePlacement(params: EC2.Types.ModifyInstancePlacementRequest, callback?: (err: AWSError, data: EC2.Types.ModifyInstancePlacementResult) => void): Request<EC2.Types.ModifyInstancePlacementResult, AWSError>;
|
4027
4027
|
/**
|
4028
|
-
* Modifies the placement attributes for a specified instance. You can do the following: Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is
|
4028
|
+
* Modifies the placement attributes for a specified instance. You can do the following: Modify the affinity between an instance and a Dedicated Host. When affinity is set to host and the instance is not associated with a specific Dedicated Host, the next time the instance is started, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists. Change the Dedicated Host with which an instance is associated. Change the instance tenancy of an instance. Move an instance to or from a placement group. At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request. To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped state.
|
4029
4029
|
*/
|
4030
4030
|
modifyInstancePlacement(callback?: (err: AWSError, data: EC2.Types.ModifyInstancePlacementResult) => void): Request<EC2.Types.ModifyInstancePlacementResult, AWSError>;
|
4031
4031
|
/**
|
@@ -17019,7 +17019,7 @@ declare namespace EC2 {
|
|
17019
17019
|
}
|
17020
17020
|
export interface DescribeSpotPriceHistoryResult {
|
17021
17021
|
/**
|
17022
|
-
* The token to include in another request to get the next page of items. This value is null when there are no more items to return.
|
17022
|
+
* The token to include in another request to get the next page of items. This value is an empty string ("") or null when there are no more items to return.
|
17023
17023
|
*/
|
17024
17024
|
NextToken?: String;
|
17025
17025
|
/**
|
@@ -20885,7 +20885,7 @@ declare namespace EC2 {
|
|
20885
20885
|
*/
|
20886
20886
|
AvailabilityZone?: String;
|
20887
20887
|
/**
|
20888
|
-
* The number of units provided by the specified instance type.
|
20888
|
+
* The number of units provided by the specified instance type. When specifying weights, the price used in the lowest-price and price-capacity-optimized allocation strategies is per unit hour (where the instance price is divided by the specified weight). However, if all the specified weights are above the requested TargetCapacity, resulting in only 1 instance being launched, the price used is per instance hour.
|
20889
20889
|
*/
|
20890
20890
|
WeightedCapacity?: Double;
|
20891
20891
|
/**
|
@@ -20925,7 +20925,7 @@ declare namespace EC2 {
|
|
20925
20925
|
*/
|
20926
20926
|
AvailabilityZone?: String;
|
20927
20927
|
/**
|
20928
|
-
* The number of units provided by the specified instance type.
|
20928
|
+
* The number of units provided by the specified instance type. When specifying weights, the price used in the lowest-price and price-capacity-optimized allocation strategies is per unit hour (where the instance price is divided by the specified weight). However, if all the specified weights are above the requested TargetCapacity, resulting in only 1 instance being launched, the price used is per instance hour.
|
20929
20929
|
*/
|
20930
20930
|
WeightedCapacity?: Double;
|
20931
20931
|
/**
|
@@ -24767,7 +24767,7 @@ declare namespace EC2 {
|
|
24767
24767
|
*/
|
24768
24768
|
InstanceGenerations?: InstanceGenerationSet;
|
24769
24769
|
/**
|
24770
|
-
* [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage.
|
24770
|
+
* [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999. Default: 100
|
24771
24771
|
*/
|
24772
24772
|
SpotMaxPricePercentageOverLowestPrice?: Integer;
|
24773
24773
|
/**
|
@@ -24835,7 +24835,7 @@ declare namespace EC2 {
|
|
24835
24835
|
*/
|
24836
24836
|
AllowedInstanceTypes?: AllowedInstanceTypeSet;
|
24837
24837
|
/**
|
24838
|
-
* [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage.
|
24838
|
+
* [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price. Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999.
|
24839
24839
|
*/
|
24840
24840
|
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice?: Integer;
|
24841
24841
|
}
|
@@ -24865,7 +24865,7 @@ declare namespace EC2 {
|
|
24865
24865
|
*/
|
24866
24866
|
InstanceGenerations?: InstanceGenerationSet;
|
24867
24867
|
/**
|
24868
|
-
* [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage.
|
24868
|
+
* [Price protection] The price protection threshold for Spot Instances, as a percentage higher than an identified Spot price. The identified Spot price is the Spot price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified Spot price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose Spot price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. If you set TargetCapacityUnitType to vcpu or memory-mib, the price protection threshold is applied based on the per-vCPU or per-memory price instead of the per-instance price. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999. Default: 100
|
24869
24869
|
*/
|
24870
24870
|
SpotMaxPricePercentageOverLowestPrice?: Integer;
|
24871
24871
|
/**
|
@@ -24933,7 +24933,7 @@ declare namespace EC2 {
|
|
24933
24933
|
*/
|
24934
24934
|
AllowedInstanceTypes?: AllowedInstanceTypeSet;
|
24935
24935
|
/**
|
24936
|
-
* [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage.
|
24936
|
+
* [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price. Only one of SpotMaxPricePercentageOverLowestPrice or MaxSpotPriceAsPercentageOfOptimalOnDemandPrice can be specified. If you don't specify either, Amazon EC2 will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as 999999.
|
24937
24937
|
*/
|
24938
24938
|
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice?: Integer;
|
24939
24939
|
}
|
@@ -25120,7 +25120,7 @@ declare namespace EC2 {
|
|
25120
25120
|
*/
|
25121
25121
|
GroupName?: String;
|
25122
25122
|
/**
|
25123
|
-
* The network nodes. The nodes are hashed based on your account. Instances from different accounts running under the same
|
25123
|
+
* The network nodes. The nodes are hashed based on your account. Instances from different accounts running under the same server will return a different hashed list of strings.
|
25124
25124
|
*/
|
25125
25125
|
NetworkNodes?: NetworkNodesList;
|
25126
25126
|
/**
|
@@ -26979,7 +26979,7 @@ declare namespace EC2 {
|
|
26979
26979
|
*/
|
26980
26980
|
AvailabilityZone?: String;
|
26981
26981
|
/**
|
26982
|
-
* The number of units provided by the specified instance type.
|
26982
|
+
* The number of units provided by the specified instance type. When specifying weights, the price used in the lowest-price and price-capacity-optimized allocation strategies is per unit hour (where the instance price is divided by the specified weight). However, if all the specified weights are above the requested TargetCapacity, resulting in only 1 instance being launched, the price used is per instance hour.
|
26983
26983
|
*/
|
26984
26984
|
WeightedCapacity?: Double;
|
26985
26985
|
/**
|
@@ -28471,7 +28471,7 @@ declare namespace EC2 {
|
|
28471
28471
|
}
|
28472
28472
|
export interface ModifyInstancePlacementRequest {
|
28473
28473
|
/**
|
28474
|
-
* The affinity setting for the instance.
|
28474
|
+
* The affinity setting for the instance. For more information, see Host affinity in the Amazon EC2 User Guide.
|
28475
28475
|
*/
|
28476
28476
|
Affinity?: Affinity;
|
28477
28477
|
/**
|
@@ -34728,7 +34728,7 @@ declare namespace EC2 {
|
|
34728
34728
|
}
|
34729
34729
|
export interface ScheduledInstancesNetworkInterface {
|
34730
34730
|
/**
|
34731
|
-
* Indicates whether to assign a public IPv4 address to instances launched in a VPC. The public IPv4 address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.
|
34731
|
+
* Indicates whether to assign a public IPv4 address to instances launched in a VPC. The public IPv4 address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true. Amazon Web Services charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.
|
34732
34732
|
*/
|
34733
34733
|
AssociatePublicIpAddress?: Boolean;
|
34734
34734
|
/**
|
@@ -228,11 +228,11 @@ declare class FSx extends Service {
|
|
228
228
|
*/
|
229
229
|
describeFileSystems(callback?: (err: AWSError, data: FSx.Types.DescribeFileSystemsResponse) => void): Request<FSx.Types.DescribeFileSystemsResponse, AWSError>;
|
230
230
|
/**
|
231
|
-
* Indicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see
|
231
|
+
* Indicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see Creating FSx for ONTAP file systems in shared subnets.
|
232
232
|
*/
|
233
233
|
describeSharedVpcConfiguration(params: FSx.Types.DescribeSharedVpcConfigurationRequest, callback?: (err: AWSError, data: FSx.Types.DescribeSharedVpcConfigurationResponse) => void): Request<FSx.Types.DescribeSharedVpcConfigurationResponse, AWSError>;
|
234
234
|
/**
|
235
|
-
* Indicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see
|
235
|
+
* Indicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see Creating FSx for ONTAP file systems in shared subnets.
|
236
236
|
*/
|
237
237
|
describeSharedVpcConfiguration(callback?: (err: AWSError, data: FSx.Types.DescribeSharedVpcConfigurationResponse) => void): Request<FSx.Types.DescribeSharedVpcConfigurationResponse, AWSError>;
|
238
238
|
/**
|
@@ -934,7 +934,7 @@ declare namespace FSx {
|
|
934
934
|
*/
|
935
935
|
PreferredSubnetId?: SubnetId;
|
936
936
|
/**
|
937
|
-
* (Multi-AZ only) Specifies the route tables in which Amazon FSx creates the rules for routing traffic to the correct file server. You should specify all virtual private cloud (VPC) route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.
|
937
|
+
* (Multi-AZ only) Specifies the route tables in which Amazon FSx creates the rules for routing traffic to the correct file server. You should specify all virtual private cloud (VPC) route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table. Amazon FSx manages these route tables for Multi-AZ file systems using tag-based authentication. These route tables are tagged with Key: AmazonFSx; Value: ManagedByAmazonFSx. When creating FSx for ONTAP Multi-AZ file systems using CloudFormation we recommend that you add the Key: AmazonFSx; Value: ManagedByAmazonFSx tag manually.
|
938
938
|
*/
|
939
939
|
RouteTableIds?: RouteTableIds;
|
940
940
|
/**
|
@@ -943,11 +943,11 @@ declare namespace FSx {
|
|
943
943
|
ThroughputCapacity?: MegabytesPerSecond;
|
944
944
|
WeeklyMaintenanceStartTime?: WeeklyTime;
|
945
945
|
/**
|
946
|
-
* Specifies how many high-availability (HA) pairs
|
946
|
+
* Specifies how many high-availability (HA) pairs of file servers will power your file system. Scale-up file systems are powered by 1 HA pair. The default value is 1. FSx for ONTAP scale-out file systems are powered by up to 12 HA pairs. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1 or MULTI_AZ_1.
|
947
947
|
*/
|
948
948
|
HAPairs?: HAPairs;
|
949
949
|
/**
|
950
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system.
|
950
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. You can define either the ThroughputCapacityPerHAPair or the ThroughputCapacity when creating a file system, but not both. This field and ThroughputCapacity are the same for scale-up file systems powered by one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1 file systems, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2 file systems, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between 2 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
951
951
|
*/
|
952
952
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
953
953
|
}
|
@@ -999,7 +999,7 @@ declare namespace FSx {
|
|
999
999
|
*/
|
1000
1000
|
FileSystemType: FileSystemType;
|
1001
1001
|
/**
|
1002
|
-
* Sets the storage capacity of the file system that you're creating, in gibibytes (GiB). FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType and the Lustre DeploymentType, as follows: For SCRATCH_2, PERSISTENT_2 and PERSISTENT_1 deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB. For PERSISTENT_1 HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems. For SCRATCH_1 deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB. FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs property. The minimum value is calculated as 1,024 * HAPairs and the
|
1002
|
+
* Sets the storage capacity of the file system that you're creating, in gibibytes (GiB). FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType and the Lustre DeploymentType, as follows: For SCRATCH_2, PERSISTENT_2 and PERSISTENT_1 deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB. For PERSISTENT_1 HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems. For SCRATCH_1 deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB. FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs property. The minimum value is calculated as 1,024 * HAPairs and the maximum is calculated as 524,288 * HAPairs. FSx for OpenZFS file systems - The amount of storage capacity that you can configure is from 64 GiB up to 524,288 GiB (512 TiB). FSx for Windows File Server file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType as follows: For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB). For HDD storage, valid values are 2000 GiB-65,536 GiB (64 TiB).
|
1003
1003
|
*/
|
1004
1004
|
StorageCapacity: StorageCapacity;
|
1005
1005
|
/**
|
@@ -1011,7 +1011,7 @@ declare namespace FSx {
|
|
1011
1011
|
*/
|
1012
1012
|
SubnetIds: SubnetIds;
|
1013
1013
|
/**
|
1014
|
-
* A list of IDs specifying the security groups to apply to all network interfaces created for file system access. This list isn't returned in later requests to describe the file system.
|
1014
|
+
* A list of IDs specifying the security groups to apply to all network interfaces created for file system access. This list isn't returned in later requests to describe the file system. You must specify a security group if you are creating a Multi-AZ FSx for ONTAP file system in a VPC subnet that has been shared with you.
|
1015
1015
|
*/
|
1016
1016
|
SecurityGroupIds?: SecurityGroupIds;
|
1017
1017
|
/**
|
@@ -1093,15 +1093,15 @@ declare namespace FSx {
|
|
1093
1093
|
*/
|
1094
1094
|
JunctionPath?: JunctionPath;
|
1095
1095
|
/**
|
1096
|
-
* Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED
|
1096
|
+
* Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED This is an advanced setting. For more information, see the topic What the security styles and their effects are in the NetApp Documentation Center. For more information, see Volume security style in the FSx for ONTAP User Guide.
|
1097
1097
|
*/
|
1098
1098
|
SecurityStyle?: SecurityStyle;
|
1099
1099
|
/**
|
1100
|
-
* Specifies the size of the volume, in megabytes (MB), that you are creating.
|
1100
|
+
* Use SizeInBytes instead. Specifies the size of the volume, in megabytes (MB), that you are creating.
|
1101
1101
|
*/
|
1102
1102
|
SizeInMegabytes?: VolumeCapacity;
|
1103
1103
|
/**
|
1104
|
-
* Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume, or set to false to disable them.
|
1104
|
+
* Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume, or set to false to disable them. StorageEfficiencyEnabled is required when creating a RW volume (OntapVolumeType set to RW).
|
1105
1105
|
*/
|
1106
1106
|
StorageEfficiencyEnabled?: Flag;
|
1107
1107
|
/**
|
@@ -1126,7 +1126,7 @@ declare namespace FSx {
|
|
1126
1126
|
*/
|
1127
1127
|
SnaplockConfiguration?: CreateSnaplockConfiguration;
|
1128
1128
|
/**
|
1129
|
-
* Use to specify the style of an ONTAP volume.
|
1129
|
+
* Use to specify the style of an ONTAP volume. FSx for ONTAP offers two styles of volumes that you can use for different purposes, FlexVol and FlexGroup volumes. For more information, see Volume styles in the Amazon FSx for NetApp ONTAP User Guide.
|
1130
1130
|
*/
|
1131
1131
|
VolumeStyle?: VolumeStyle;
|
1132
1132
|
/**
|
@@ -1134,7 +1134,7 @@ declare namespace FSx {
|
|
1134
1134
|
*/
|
1135
1135
|
AggregateConfiguration?: CreateAggregateConfiguration;
|
1136
1136
|
/**
|
1137
|
-
*
|
1137
|
+
* Specifies the configured size of the volume, in bytes.
|
1138
1138
|
*/
|
1139
1139
|
SizeInBytes?: VolumeCapacityBytes;
|
1140
1140
|
}
|
@@ -1183,7 +1183,7 @@ declare namespace FSx {
|
|
1183
1183
|
*/
|
1184
1184
|
NfsExports?: OpenZFSNfsExports;
|
1185
1185
|
/**
|
1186
|
-
*
|
1186
|
+
* Configures how much storage users and groups can use on the volume.
|
1187
1187
|
*/
|
1188
1188
|
UserAndGroupQuotas?: OpenZFSUserAndGroupQuotas;
|
1189
1189
|
}
|
@@ -1233,7 +1233,7 @@ declare namespace FSx {
|
|
1233
1233
|
}
|
1234
1234
|
export interface CreateStorageVirtualMachineRequest {
|
1235
1235
|
/**
|
1236
|
-
* Describes the self-managed Microsoft Active Directory to which you want to join the SVM. Joining an Active Directory provides user authentication and access control for SMB clients, including Microsoft Windows and macOS
|
1236
|
+
* Describes the self-managed Microsoft Active Directory to which you want to join the SVM. Joining an Active Directory provides user authentication and access control for SMB clients, including Microsoft Windows and macOS clients accessing the file system.
|
1237
1237
|
*/
|
1238
1238
|
ActiveDirectoryConfiguration?: CreateSvmActiveDirectoryConfiguration;
|
1239
1239
|
ClientRequestToken?: ClientRequestToken;
|
@@ -1248,7 +1248,7 @@ declare namespace FSx {
|
|
1248
1248
|
SvmAdminPassword?: AdminPassword;
|
1249
1249
|
Tags?: Tags;
|
1250
1250
|
/**
|
1251
|
-
* The security style of the root volume of the SVM. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED
|
1251
|
+
* The security style of the root volume of the SVM. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Microsoft Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Microsoft Windows user as the service account. MIXED This is an advanced setting. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide.
|
1252
1252
|
*/
|
1253
1253
|
RootVolumeSecurityStyle?: StorageVirtualMachineRootVolumeSecurityStyle;
|
1254
1254
|
}
|
@@ -1884,7 +1884,7 @@ declare namespace FSx {
|
|
1884
1884
|
MaxResults?: MaxResults;
|
1885
1885
|
NextToken?: NextToken;
|
1886
1886
|
/**
|
1887
|
-
* Set to false (default) if you want to only see the snapshots
|
1887
|
+
* Set to false (default) if you want to only see the snapshots owned by your Amazon Web Services account. Set to true if you want to see the snapshots in your account and the ones shared with you from another account.
|
1888
1888
|
*/
|
1889
1889
|
IncludeShared?: IncludeShared;
|
1890
1890
|
}
|
@@ -1955,7 +1955,7 @@ declare namespace FSx {
|
|
1955
1955
|
}
|
1956
1956
|
export interface DiskIopsConfiguration {
|
1957
1957
|
/**
|
1958
|
-
* Specifies whether the file system is using the AUTOMATIC setting of SSD IOPS of 3 IOPS per GB of storage capacity,
|
1958
|
+
* Specifies whether the file system is using the AUTOMATIC setting of SSD IOPS of 3 IOPS per GB of storage capacity, or if it using a USER_PROVISIONED value.
|
1959
1959
|
*/
|
1960
1960
|
Mode?: DiskIopsConfigurationMode;
|
1961
1961
|
/**
|
@@ -2206,7 +2206,7 @@ declare namespace FSx {
|
|
2206
2206
|
*/
|
2207
2207
|
ResourceARN?: ResourceARN;
|
2208
2208
|
/**
|
2209
|
-
* The tags to associate with the file system. For more information, see Tagging your Amazon
|
2209
|
+
* The tags to associate with the file system. For more information, see Tagging your Amazon FSx resources in the Amazon FSx for Lustre User Guide.
|
2210
2210
|
*/
|
2211
2211
|
Tags?: Tags;
|
2212
2212
|
/**
|
@@ -2454,11 +2454,11 @@ declare namespace FSx {
|
|
2454
2454
|
*/
|
2455
2455
|
FsxAdminPassword?: AdminPassword;
|
2456
2456
|
/**
|
2457
|
-
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than
|
2457
|
+
* Specifies how many high-availability (HA) file server pairs the file system will have. The default value is 1. The value of this property affects the values of StorageCapacity, Iops, and ThroughputCapacity. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of HAPairs is less than 1 or greater than 12. The value of HAPairs is greater than 1 and the value of DeploymentType is SINGLE_AZ_1 or MULTI_AZ_1.
|
2458
2458
|
*/
|
2459
2459
|
HAPairs?: HAPairs;
|
2460
2460
|
/**
|
2461
|
-
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between 2 and
|
2461
|
+
* Use to choose the throughput capacity per HA pair. When the value of HAPairs is equal to 1, the value of ThroughputCapacityPerHAPair is the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between 2 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
2462
2462
|
*/
|
2463
2463
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
2464
2464
|
}
|
@@ -2632,15 +2632,15 @@ declare namespace FSx {
|
|
2632
2632
|
export type OpenZFSUserAndGroupQuotas = OpenZFSUserOrGroupQuota[];
|
2633
2633
|
export interface OpenZFSUserOrGroupQuota {
|
2634
2634
|
/**
|
2635
|
-
*
|
2635
|
+
* Specifies whether the quota applies to a user or group.
|
2636
2636
|
*/
|
2637
2637
|
Type: OpenZFSQuotaType;
|
2638
2638
|
/**
|
2639
|
-
* The ID of the user or group.
|
2639
|
+
* The ID of the user or group that the quota applies to.
|
2640
2640
|
*/
|
2641
2641
|
Id: IntegerNoMax;
|
2642
2642
|
/**
|
2643
|
-
* The
|
2643
|
+
* The user or group's storage quota, in gibibytes (GiB).
|
2644
2644
|
*/
|
2645
2645
|
StorageCapacityQuotaGiB: IntegerNoMax;
|
2646
2646
|
}
|
@@ -3226,7 +3226,7 @@ declare namespace FSx {
|
|
3226
3226
|
*/
|
3227
3227
|
RemoveRouteTableIds?: RouteTableIds;
|
3228
3228
|
/**
|
3229
|
-
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between 2 and
|
3229
|
+
* Use to choose the throughput capacity per HA pair, rather than the total throughput for the file system. This field and ThroughputCapacity cannot be defined in the same API call, but one is required. This field and ThroughputCapacity are the same for file systems with one HA pair. For SINGLE_AZ_1 and MULTI_AZ_1, valid values are 128, 256, 512, 1024, 2048, or 4096 MBps. For SINGLE_AZ_2, valid values are 3072 or 6144 MBps. Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions: The value of ThroughputCapacity and ThroughputCapacityPerHAPair are not the same value for file systems with one HA pair. The value of deployment type is SINGLE_AZ_2 and ThroughputCapacity / ThroughputCapacityPerHAPair is a valid HA pair (a value between 2 and 12). The value of ThroughputCapacityPerHAPair is not a valid value.
|
3230
3230
|
*/
|
3231
3231
|
ThroughputCapacityPerHAPair?: ThroughputCapacityPerHAPair;
|
3232
3232
|
}
|
@@ -1466,7 +1466,7 @@ declare namespace Organizations {
|
|
1466
1466
|
export type OrganizationId = string;
|
1467
1467
|
export interface OrganizationalUnit {
|
1468
1468
|
/**
|
1469
|
-
* The unique identifier (ID) associated with this OU. The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
|
1469
|
+
* The unique identifier (ID) associated with this OU. The ID is unique to the organization only. The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
|
1470
1470
|
*/
|
1471
1471
|
Id?: OrganizationalUnitId;
|
1472
1472
|
/**
|
@@ -1628,7 +1628,7 @@ declare namespace Organizations {
|
|
1628
1628
|
export type RoleName = string;
|
1629
1629
|
export interface Root {
|
1630
1630
|
/**
|
1631
|
-
* The unique identifier (ID) for the root. The regex pattern for a root ID string requires "r-" followed by from 4 to 32 lowercase letters or digits.
|
1631
|
+
* The unique identifier (ID) for the root. The ID is unique to the organization only. The regex pattern for a root ID string requires "r-" followed by from 4 to 32 lowercase letters or digits.
|
1632
1632
|
*/
|
1633
1633
|
Id?: RootId;
|
1634
1634
|
/**
|
@@ -708,11 +708,11 @@ declare class SESV2 extends Service {
|
|
708
708
|
*/
|
709
709
|
updateConfigurationSetEventDestination(callback?: (err: AWSError, data: SESV2.Types.UpdateConfigurationSetEventDestinationResponse) => void): Request<SESV2.Types.UpdateConfigurationSetEventDestinationResponse, AWSError>;
|
710
710
|
/**
|
711
|
-
* Updates a contact's preferences for a list.
|
711
|
+
* Updates a contact's preferences for a list. You must specify all existing topic preferences in the TopicPreferences object, not just the ones that need updating; otherwise, all your existing preferences will be removed.
|
712
712
|
*/
|
713
713
|
updateContact(params: SESV2.Types.UpdateContactRequest, callback?: (err: AWSError, data: SESV2.Types.UpdateContactResponse) => void): Request<SESV2.Types.UpdateContactResponse, AWSError>;
|
714
714
|
/**
|
715
|
-
* Updates a contact's preferences for a list.
|
715
|
+
* Updates a contact's preferences for a list. You must specify all existing topic preferences in the TopicPreferences object, not just the ones that need updating; otherwise, all your existing preferences will be removed.
|
716
716
|
*/
|
717
717
|
updateContact(callback?: (err: AWSError, data: SESV2.Types.UpdateContactResponse) => void): Request<SESV2.Types.UpdateContactResponse, AWSError>;
|
718
718
|
/**
|
@@ -1871,7 +1871,7 @@ declare namespace SESV2 {
|
|
1871
1871
|
*/
|
1872
1872
|
EnforcementStatus?: GeneralEnforcementStatus;
|
1873
1873
|
/**
|
1874
|
-
* Indicates whether or not your account has production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities.
|
1874
|
+
* Indicates whether or not your account has production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. If the value is true, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.
|
1875
1875
|
*/
|
1876
1876
|
ProductionAccessEnabled?: Enabled;
|
1877
1877
|
/**
|
@@ -2913,9 +2913,26 @@ declare namespace SESV2 {
|
|
2913
2913
|
* The body of the message. You can specify an HTML version of the message, a text-only version of the message, or both.
|
2914
2914
|
*/
|
2915
2915
|
Body: Body;
|
2916
|
+
/**
|
2917
|
+
* The list of message headers that will be added to the email message.
|
2918
|
+
*/
|
2919
|
+
Headers?: MessageHeaderList;
|
2916
2920
|
}
|
2917
2921
|
export type MessageContent = string;
|
2918
2922
|
export type MessageData = string;
|
2923
|
+
export interface MessageHeader {
|
2924
|
+
/**
|
2925
|
+
* The name of the message header. The message header name has to meet the following criteria: Can contain any printable ASCII character (33 - 126) except for colon (:). Can contain no more than 126 characters.
|
2926
|
+
*/
|
2927
|
+
Name: MessageHeaderName;
|
2928
|
+
/**
|
2929
|
+
* The value of the message header. The message header value has to meet the following criteria: Can contain any printable ASCII character. Can contain no more than 870 characters.
|
2930
|
+
*/
|
2931
|
+
Value: MessageHeaderValue;
|
2932
|
+
}
|
2933
|
+
export type MessageHeaderList = MessageHeader[];
|
2934
|
+
export type MessageHeaderName = string;
|
2935
|
+
export type MessageHeaderValue = string;
|
2919
2936
|
export interface MessageInsightsDataSource {
|
2920
2937
|
/**
|
2921
2938
|
* Represents the start date for the export interval as a timestamp. The start date is inclusive.
|
@@ -3119,7 +3136,7 @@ declare namespace SESV2 {
|
|
3119
3136
|
*/
|
3120
3137
|
AdditionalContactEmailAddresses?: AdditionalContactEmailAddresses;
|
3121
3138
|
/**
|
3122
|
-
* Indicates whether or not your account should have production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities.
|
3139
|
+
* Indicates whether or not your account should have production access in the current Amazon Web Services Region. If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. If the value is true, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.
|
3123
3140
|
*/
|
3124
3141
|
ProductionAccessEnabled?: EnabledWrapper;
|
3125
3142
|
}
|
@@ -3550,7 +3567,7 @@ declare namespace SESV2 {
|
|
3550
3567
|
*/
|
3551
3568
|
FeedbackForwardingEmailAddressIdentityArn?: AmazonResourceName;
|
3552
3569
|
/**
|
3553
|
-
* An object that contains the body of the message. You can send either a Simple message Raw message or a
|
3570
|
+
* An object that contains the body of the message. You can send either a Simple message, Raw message, or a Templated message.
|
3554
3571
|
*/
|
3555
3572
|
Content: EmailContent;
|
3556
3573
|
/**
|
@@ -3568,7 +3585,7 @@ declare namespace SESV2 {
|
|
3568
3585
|
}
|
3569
3586
|
export interface SendEmailResponse {
|
3570
3587
|
/**
|
3571
|
-
* A unique identifier for the message that is generated when the message is accepted. It's possible for Amazon SES to accept a message without sending it.
|
3588
|
+
* A unique identifier for the message that is generated when the message is accepted. It's possible for Amazon SES to accept a message without sending it. For example, this can happen when the message that you're trying to send has an attachment that contains a virus, or when you send a templated email that contains invalid personalization content.
|
3572
3589
|
*/
|
3573
3590
|
MessageId?: OutboundMessageId;
|
3574
3591
|
}
|
@@ -3707,6 +3724,10 @@ declare namespace SESV2 {
|
|
3707
3724
|
* An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.
|
3708
3725
|
*/
|
3709
3726
|
TemplateData?: EmailTemplateData;
|
3727
|
+
/**
|
3728
|
+
* The list of message headers that will be added to the email message.
|
3729
|
+
*/
|
3730
|
+
Headers?: MessageHeaderList;
|
3710
3731
|
}
|
3711
3732
|
export type TemplateContent = string;
|
3712
3733
|
export interface TestRenderEmailTemplateRequest {
|