@aws-sdk/client-ec2 3.497.0 → 3.498.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.
@@ -90,7 +90,7 @@ declare const AllocateAddressCommand_base: {
90
90
  * @example To allocate an Elastic IP address
91
91
  * ```javascript
92
92
  * // This example allocates an Elastic IP address.
93
- * const input = undefined;
93
+ * const input = {};
94
94
  * const command = new AllocateAddressCommand(input);
95
95
  * const response = await client.send(command);
96
96
  * /* response ==
@@ -85,7 +85,7 @@ declare const CreateInternetGatewayCommand_base: {
85
85
  * @example To create an Internet gateway
86
86
  * ```javascript
87
87
  * // This example creates an Internet gateway.
88
- * const input = undefined;
88
+ * const input = {};
89
89
  * const command = new CreateInternetGatewayCommand(input);
90
90
  * const response = await client.send(command);
91
91
  * /* response ==
@@ -54,7 +54,7 @@ declare const DeleteSpotDatafeedSubscriptionCommand_base: {
54
54
  * @example To cancel a Spot Instance data feed subscription
55
55
  * ```javascript
56
56
  * // This example deletes a Spot data feed subscription for the account.
57
- * const input = undefined;
57
+ * const input = {};
58
58
  * const command = new DeleteSpotDatafeedSubscriptionCommand(input);
59
59
  * await client.send(command);
60
60
  * // example id: ec2-delete-spot-datafeed-subscription-1
@@ -128,7 +128,7 @@ declare const DescribeAccountAttributesCommand_base: {
128
128
  * @example To describe all attributes for your AWS account
129
129
  * ```javascript
130
130
  * // This example describes the attributes for your AWS account.
131
- * const input = undefined;
131
+ * const input = {};
132
132
  * const command = new DescribeAccountAttributesCommand(input);
133
133
  * const response = await client.send(command);
134
134
  * /* response ==
@@ -92,7 +92,7 @@ declare const DescribeAddressesCommand_base: {
92
92
  * @example To describe your Elastic IP addresses
93
93
  * ```javascript
94
94
  * // This example describes your Elastic IP addresses.
95
- * const input = undefined;
95
+ * const input = {};
96
96
  * const command = new DescribeAddressesCommand(input);
97
97
  * const response = await client.send(command);
98
98
  * /* response ==
@@ -94,7 +94,7 @@ declare const DescribeAvailabilityZonesCommand_base: {
94
94
  * @example To describe your Availability Zones
95
95
  * ```javascript
96
96
  * // This example describes the Availability Zones that are available to you. The response includes Availability Zones only for the current region.
97
- * const input = undefined;
97
+ * const input = {};
98
98
  * const command = new DescribeAvailabilityZonesCommand(input);
99
99
  * const response = await client.send(command);
100
100
  * /* response ==
@@ -79,7 +79,7 @@ declare const DescribeMovingAddressesCommand_base: {
79
79
  * @example To describe your moving addresses
80
80
  * ```javascript
81
81
  * // This example describes all of your moving Elastic IP addresses.
82
- * const input = undefined;
82
+ * const input = {};
83
83
  * const command = new DescribeMovingAddressesCommand(input);
84
84
  * const response = await client.send(command);
85
85
  * /* response ==
@@ -77,7 +77,7 @@ declare const DescribeRegionsCommand_base: {
77
77
  * @example To describe your regions
78
78
  * ```javascript
79
79
  * // This example describes all the regions that are available to you.
80
- * const input = undefined;
80
+ * const input = {};
81
81
  * const command = new DescribeRegionsCommand(input);
82
82
  * const response = await client.send(command);
83
83
  * /* response ==
@@ -66,7 +66,7 @@ declare const DescribeSpotDatafeedSubscriptionCommand_base: {
66
66
  * @example To describe the datafeed for your AWS account
67
67
  * ```javascript
68
68
  * // This example describes the Spot Instance datafeed subscription for your AWS account.
69
- * const input = undefined;
69
+ * const input = {};
70
70
  * const command = new DescribeSpotDatafeedSubscriptionCommand(input);
71
71
  * const response = await client.send(command);
72
72
  * /* response ==
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.497.0",
4
+ "version": "3.498.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ec2",