@aws-sdk/client-organizations 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.
@@ -98,7 +98,7 @@ declare const DescribeOrganizationCommand_base: {
98
98
  * @example To get information about an organization
99
99
  * ```javascript
100
100
  * // The following example shows how to request information about the current user's organization:/n/n
101
- * const input = undefined;
101
+ * const input = {};
102
102
  * const command = new DescribeOrganizationCommand(input);
103
103
  * const response = await client.send(command);
104
104
  * /* response ==
@@ -453,7 +453,7 @@ declare const LeaveOrganizationCommand_base: {
453
453
  * @example To leave an organization as a member account
454
454
  * ```javascript
455
455
  * // TThe following example shows how to remove your member account from an organization:
456
- * const input = undefined;
456
+ * const input = {};
457
457
  * const command = new LeaveOrganizationCommand(input);
458
458
  * await client.send(command);
459
459
  * // example id: to-leave-an-organization-as-a-member-account-1472508784736
@@ -228,7 +228,7 @@ declare const ListHandshakesForAccountCommand_base: {
228
228
  * @example To retrieve a list of the handshakes sent to an account
229
229
  * ```javascript
230
230
  * // The following example shows you how to get a list of handshakes that are associated with the account of the credentials used to call the operation:
231
- * const input = undefined;
231
+ * const input = {};
232
232
  * const command = new ListHandshakesForAccountCommand(input);
233
233
  * const response = await client.send(command);
234
234
  * /* response ==
@@ -235,7 +235,7 @@ declare const ListHandshakesForOrganizationCommand_base: {
235
235
  * @example To retrieve a list of the handshakes associated with an organization
236
236
  * ```javascript
237
237
  * // The following example shows you how to get a list of handshakes associated with the current organization:
238
- * const input = undefined;
238
+ * const input = {};
239
239
  * const command = new ListHandshakesForOrganizationCommand(input);
240
240
  * const response = await client.send(command);
241
241
  * /* response ==
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-organizations",
3
3
  "description": "AWS SDK for JavaScript Organizations 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-organizations",