@aws-sdk/client-appintegrations 3.479.0 → 3.480.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.
@@ -63,6 +63,17 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
63
63
  * @throws {@link AppIntegrationsServiceException}
64
64
  * <p>Base exception class for all service exceptions from AppIntegrations service.</p>
65
65
  *
66
+ * @example To delete an application
67
+ * ```javascript
68
+ * // The following deletes an application.
69
+ * const input = {
70
+ * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
71
+ * };
72
+ * const command = new DeleteApplicationCommand(input);
73
+ * await client.send(command);
74
+ * // example id: delete-an-application
75
+ * ```
76
+ *
66
77
  */
67
78
  export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppIntegrationsClientResolvedConfig> {
68
79
  readonly input: DeleteApplicationCommandInput;
@@ -74,6 +74,29 @@ export interface ListApplicationAssociationsCommandOutput extends ListApplicatio
74
74
  * @throws {@link AppIntegrationsServiceException}
75
75
  * <p>Base exception class for all service exceptions from AppIntegrations service.</p>
76
76
  *
77
+ * @example To list application associations of an application
78
+ * ```javascript
79
+ * // The following retrives application associations of an application
80
+ * const input = {
81
+ * "ApplicationId": "98542c53-e8ac-4570-9c85-c6552c8d9c5e"
82
+ * };
83
+ * const command = new ListApplicationAssociationsCommand(input);
84
+ * const response = await client.send(command);
85
+ * /* response ==
86
+ * {
87
+ * "ApplicationAssociations": [
88
+ * {
89
+ * "ApplicationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
90
+ * "ApplicationAssociationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application-association/98542c53-e8ac-4570-9c85-c6552c8d9c5e/461dfb57-320a-454d-9bba-bb560845ff38",
91
+ * "ClientId": "connect.amazonaws.com"
92
+ * }
93
+ * ],
94
+ * "NextToken": "abc"
95
+ * }
96
+ * *\/
97
+ * // example id: list-application-associations
98
+ * ```
99
+ *
77
100
  */
78
101
  export declare class ListApplicationAssociationsCommand extends $Command<ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
79
102
  readonly input: ListApplicationAssociationsCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appintegrations",
3
3
  "description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
4
- "version": "3.479.0",
4
+ "version": "3.480.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",