@aws-sdk/client-appintegrations 3.325.0 → 3.327.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.
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +37 -0
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +36 -0
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +15 -0
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +13 -0
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +13 -0
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +18 -0
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +20 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -65,6 +65,41 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new CreateDataIntegrationCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // { // CreateDataIntegrationResponse
|
|
69
|
+
* // Arn: "STRING_VALUE",
|
|
70
|
+
* // Id: "STRING_VALUE",
|
|
71
|
+
* // Name: "STRING_VALUE",
|
|
72
|
+
* // Description: "STRING_VALUE",
|
|
73
|
+
* // KmsKey: "STRING_VALUE",
|
|
74
|
+
* // SourceURI: "STRING_VALUE",
|
|
75
|
+
* // ScheduleConfiguration: { // ScheduleConfiguration
|
|
76
|
+
* // FirstExecutionFrom: "STRING_VALUE",
|
|
77
|
+
* // Object: "STRING_VALUE",
|
|
78
|
+
* // ScheduleExpression: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // Tags: { // TagMap
|
|
81
|
+
* // "<keys>": "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // ClientToken: "STRING_VALUE",
|
|
84
|
+
* // FileConfiguration: { // FileConfiguration
|
|
85
|
+
* // Folders: [ // FolderList // required
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // Filters: { // FieldsMap
|
|
89
|
+
* // "<keys>": [ // FieldsList
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // ObjectConfiguration: { // ObjectConfiguration
|
|
95
|
+
* // "<keys>": {
|
|
96
|
+
* // "<keys>": [
|
|
97
|
+
* // "STRING_VALUE",
|
|
98
|
+
* // ],
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
68
103
|
* ```
|
|
69
104
|
*
|
|
70
105
|
* @param CreateDataIntegrationCommandInput - {@link CreateDataIntegrationCommandInput}
|
|
@@ -91,6 +126,8 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
|
|
|
91
126
|
* @throws {@link ThrottlingException} (client fault)
|
|
92
127
|
* <p>The throttling limit has been exceeded.</p>
|
|
93
128
|
*
|
|
129
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
94
131
|
*
|
|
95
132
|
*/
|
|
96
133
|
export declare class CreateDataIntegrationCommand extends $Command<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -43,6 +43,10 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateEventIntegrationCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateEventIntegrationResponse
|
|
47
|
+
* // EventIntegrationArn: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
46
50
|
* ```
|
|
47
51
|
*
|
|
48
52
|
* @param CreateEventIntegrationCommandInput - {@link CreateEventIntegrationCommandInput}
|
|
@@ -69,6 +73,8 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
|
|
|
69
73
|
* @throws {@link ThrottlingException} (client fault)
|
|
70
74
|
* <p>The throttling limit has been exceeded.</p>
|
|
71
75
|
*
|
|
76
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
72
78
|
*
|
|
73
79
|
*/
|
|
74
80
|
export declare class CreateEventIntegrationCommand extends $Command<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteDataIntegrationCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param DeleteDataIntegrationCommandInput - {@link DeleteDataIntegrationCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
|
|
|
61
63
|
* @throws {@link ThrottlingException} (client fault)
|
|
62
64
|
* <p>The throttling limit has been exceeded.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class DeleteDataIntegrationCommand extends $Command<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteEventIntegrationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteEventIntegrationCommandInput - {@link DeleteEventIntegrationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
|
|
|
55
57
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
58
|
* <p>The throttling limit has been exceeded.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteEventIntegrationCommand extends $Command<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -36,6 +36,40 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetDataIntegrationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetDataIntegrationResponse
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // Id: "STRING_VALUE",
|
|
42
|
+
* // Name: "STRING_VALUE",
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // KmsKey: "STRING_VALUE",
|
|
45
|
+
* // SourceURI: "STRING_VALUE",
|
|
46
|
+
* // ScheduleConfiguration: { // ScheduleConfiguration
|
|
47
|
+
* // FirstExecutionFrom: "STRING_VALUE",
|
|
48
|
+
* // Object: "STRING_VALUE",
|
|
49
|
+
* // ScheduleExpression: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // Tags: { // TagMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // FileConfiguration: { // FileConfiguration
|
|
55
|
+
* // Folders: [ // FolderList // required
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // Filters: { // FieldsMap
|
|
59
|
+
* // "<keys>": [ // FieldsList
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // ObjectConfiguration: { // ObjectConfiguration
|
|
65
|
+
* // "<keys>": {
|
|
66
|
+
* // "<keys>": [
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
39
73
|
* ```
|
|
40
74
|
*
|
|
41
75
|
* @param GetDataIntegrationCommandInput - {@link GetDataIntegrationCommandInput}
|
|
@@ -59,6 +93,8 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
|
|
|
59
93
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
94
|
* <p>The throttling limit has been exceeded.</p>
|
|
61
95
|
*
|
|
96
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
62
98
|
*
|
|
63
99
|
*/
|
|
64
100
|
export declare class GetDataIntegrationCommand extends $Command<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -31,6 +31,19 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEventIntegrationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetEventIntegrationResponse
|
|
35
|
+
* // Name: "STRING_VALUE",
|
|
36
|
+
* // Description: "STRING_VALUE",
|
|
37
|
+
* // EventIntegrationArn: "STRING_VALUE",
|
|
38
|
+
* // EventBridgeBus: "STRING_VALUE",
|
|
39
|
+
* // EventFilter: { // EventFilter
|
|
40
|
+
* // Source: "STRING_VALUE", // required
|
|
41
|
+
* // },
|
|
42
|
+
* // Tags: { // TagMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
34
47
|
* ```
|
|
35
48
|
*
|
|
36
49
|
* @param GetEventIntegrationCommandInput - {@link GetEventIntegrationCommandInput}
|
|
@@ -54,6 +67,8 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
|
|
|
54
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
68
|
* <p>The throttling limit has been exceeded.</p>
|
|
56
69
|
*
|
|
70
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
57
72
|
*
|
|
58
73
|
*/
|
|
59
74
|
export declare class GetEventIntegrationCommand extends $Command<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -38,6 +38,17 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListDataIntegrationAssociationsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListDataIntegrationAssociationsResponse
|
|
42
|
+
* // DataIntegrationAssociations: [ // DataIntegrationAssociationsList
|
|
43
|
+
* // { // DataIntegrationAssociationSummary
|
|
44
|
+
* // DataIntegrationAssociationArn: "STRING_VALUE",
|
|
45
|
+
* // DataIntegrationArn: "STRING_VALUE",
|
|
46
|
+
* // ClientId: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // NextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
41
52
|
* ```
|
|
42
53
|
*
|
|
43
54
|
* @param ListDataIntegrationAssociationsCommandInput - {@link ListDataIntegrationAssociationsCommandInput}
|
|
@@ -61,6 +72,8 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
|
|
|
61
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
62
73
|
* <p>The throttling limit has been exceeded.</p>
|
|
63
74
|
*
|
|
75
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
64
77
|
*
|
|
65
78
|
*/
|
|
66
79
|
export declare class ListDataIntegrationAssociationsCommand extends $Command<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListDataIntegrationsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListDataIntegrationsResponse
|
|
41
|
+
* // DataIntegrations: [ // DataIntegrationsList
|
|
42
|
+
* // { // DataIntegrationSummary
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // Name: "STRING_VALUE",
|
|
45
|
+
* // SourceURI: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param ListDataIntegrationsCommandInput - {@link ListDataIntegrationsCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
|
|
|
57
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
58
69
|
* <p>The throttling limit has been exceeded.</p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class ListDataIntegrationsCommand extends $Command<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -33,6 +33,22 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListEventIntegrationAssociationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListEventIntegrationAssociationsResponse
|
|
37
|
+
* // EventIntegrationAssociations: [ // EventIntegrationAssociationsList
|
|
38
|
+
* // { // EventIntegrationAssociation
|
|
39
|
+
* // EventIntegrationAssociationArn: "STRING_VALUE",
|
|
40
|
+
* // EventIntegrationAssociationId: "STRING_VALUE",
|
|
41
|
+
* // EventIntegrationName: "STRING_VALUE",
|
|
42
|
+
* // ClientId: "STRING_VALUE",
|
|
43
|
+
* // EventBridgeRuleName: "STRING_VALUE",
|
|
44
|
+
* // ClientAssociationMetadata: { // ClientAssociationMetadata
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // NextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
36
52
|
* ```
|
|
37
53
|
*
|
|
38
54
|
* @param ListEventIntegrationAssociationsCommandInput - {@link ListEventIntegrationAssociationsCommandInput}
|
|
@@ -56,6 +72,8 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
|
|
|
56
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
73
|
* <p>The throttling limit has been exceeded.</p>
|
|
58
74
|
*
|
|
75
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
59
77
|
*
|
|
60
78
|
*/
|
|
61
79
|
export declare class ListEventIntegrationAssociationsCommand extends $Command<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -32,6 +32,24 @@ export interface ListEventIntegrationsCommandOutput extends ListEventIntegration
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListEventIntegrationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListEventIntegrationsResponse
|
|
36
|
+
* // EventIntegrations: [ // EventIntegrationsList
|
|
37
|
+
* // { // EventIntegration
|
|
38
|
+
* // EventIntegrationArn: "STRING_VALUE",
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // Description: "STRING_VALUE",
|
|
41
|
+
* // EventFilter: { // EventFilter
|
|
42
|
+
* // Source: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // EventBridgeBus: "STRING_VALUE",
|
|
45
|
+
* // Tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param ListEventIntegrationsCommandInput - {@link ListEventIntegrationsCommandInput}
|
|
@@ -52,6 +70,8 @@ export interface ListEventIntegrationsCommandOutput extends ListEventIntegration
|
|
|
52
70
|
* @throws {@link ThrottlingException} (client fault)
|
|
53
71
|
* <p>The throttling limit has been exceeded.</p>
|
|
54
72
|
*
|
|
73
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
55
75
|
*
|
|
56
76
|
*/
|
|
57
77
|
export declare class ListEventIntegrationsCommand extends $Command<ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -51,6 +57,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
51
57
|
* @throws {@link ThrottlingException} (client fault)
|
|
52
58
|
* <p>The throttling limit has been exceeded.</p>
|
|
53
59
|
*
|
|
60
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
54
62
|
*
|
|
55
63
|
*/
|
|
56
64
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
54
56
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
57
|
* <p>The throttling limit has been exceeded.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
54
56
|
* @throws {@link ThrottlingException} (client fault)
|
|
55
57
|
* <p>The throttling limit has been exceeded.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateDataIntegrationCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param UpdateDataIntegrationCommandInput - {@link UpdateDataIntegrationCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio
|
|
|
61
63
|
* @throws {@link ThrottlingException} (client fault)
|
|
62
64
|
* <p>The throttling limit has been exceeded.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class UpdateDataIntegrationCommand extends $Command<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateEventIntegrationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UpdateEventIntegrationCommandInput - {@link UpdateEventIntegrationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat
|
|
|
55
57
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
58
|
* <p>The throttling limit has been exceeded.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class UpdateEventIntegrationCommand extends $Command<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
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.
|
|
4
|
+
"version": "3.327.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|