@aws-sdk/client-notifications 3.975.0 → 3.978.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-cjs/index.js +36 -23
- package/dist-es/Notifications.js +25 -1
- package/dist-types/Notifications.d.ts +78 -1
- package/dist-types/ts3.4/Notifications.d.ts +82 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1755,6 +1755,28 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1755
1755
|
.build() {
|
|
1756
1756
|
}
|
|
1757
1757
|
|
|
1758
|
+
const paginateListChannels = core.createPaginator(NotificationsClient, ListChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
1759
|
+
|
|
1760
|
+
const paginateListEventRules = core.createPaginator(NotificationsClient, ListEventRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
1761
|
+
|
|
1762
|
+
const paginateListManagedNotificationChannelAssociations = core.createPaginator(NotificationsClient, ListManagedNotificationChannelAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1763
|
+
|
|
1764
|
+
const paginateListManagedNotificationChildEvents = core.createPaginator(NotificationsClient, ListManagedNotificationChildEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1765
|
+
|
|
1766
|
+
const paginateListManagedNotificationConfigurations = core.createPaginator(NotificationsClient, ListManagedNotificationConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1767
|
+
|
|
1768
|
+
const paginateListManagedNotificationEvents = core.createPaginator(NotificationsClient, ListManagedNotificationEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1769
|
+
|
|
1770
|
+
const paginateListMemberAccounts = core.createPaginator(NotificationsClient, ListMemberAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
1771
|
+
|
|
1772
|
+
const paginateListNotificationConfigurations = core.createPaginator(NotificationsClient, ListNotificationConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1773
|
+
|
|
1774
|
+
const paginateListNotificationEvents = core.createPaginator(NotificationsClient, ListNotificationEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1775
|
+
|
|
1776
|
+
const paginateListNotificationHubs = core.createPaginator(NotificationsClient, ListNotificationHubsCommand, "nextToken", "nextToken", "maxResults");
|
|
1777
|
+
|
|
1778
|
+
const paginateListOrganizationalUnits = core.createPaginator(NotificationsClient, ListOrganizationalUnitsCommand, "nextToken", "nextToken", "maxResults");
|
|
1779
|
+
|
|
1758
1780
|
const commands = {
|
|
1759
1781
|
AssociateChannelCommand,
|
|
1760
1782
|
AssociateManagedNotificationAccountContactCommand,
|
|
@@ -1796,31 +1818,22 @@ const commands = {
|
|
|
1796
1818
|
UpdateEventRuleCommand,
|
|
1797
1819
|
UpdateNotificationConfigurationCommand,
|
|
1798
1820
|
};
|
|
1821
|
+
const paginators = {
|
|
1822
|
+
paginateListChannels,
|
|
1823
|
+
paginateListEventRules,
|
|
1824
|
+
paginateListManagedNotificationChannelAssociations,
|
|
1825
|
+
paginateListManagedNotificationChildEvents,
|
|
1826
|
+
paginateListManagedNotificationConfigurations,
|
|
1827
|
+
paginateListManagedNotificationEvents,
|
|
1828
|
+
paginateListMemberAccounts,
|
|
1829
|
+
paginateListNotificationConfigurations,
|
|
1830
|
+
paginateListNotificationEvents,
|
|
1831
|
+
paginateListNotificationHubs,
|
|
1832
|
+
paginateListOrganizationalUnits,
|
|
1833
|
+
};
|
|
1799
1834
|
class Notifications extends NotificationsClient {
|
|
1800
1835
|
}
|
|
1801
|
-
smithyClient.createAggregatedClient(commands, Notifications);
|
|
1802
|
-
|
|
1803
|
-
const paginateListChannels = core.createPaginator(NotificationsClient, ListChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
1804
|
-
|
|
1805
|
-
const paginateListEventRules = core.createPaginator(NotificationsClient, ListEventRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
1806
|
-
|
|
1807
|
-
const paginateListManagedNotificationChannelAssociations = core.createPaginator(NotificationsClient, ListManagedNotificationChannelAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1808
|
-
|
|
1809
|
-
const paginateListManagedNotificationChildEvents = core.createPaginator(NotificationsClient, ListManagedNotificationChildEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1810
|
-
|
|
1811
|
-
const paginateListManagedNotificationConfigurations = core.createPaginator(NotificationsClient, ListManagedNotificationConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1812
|
-
|
|
1813
|
-
const paginateListManagedNotificationEvents = core.createPaginator(NotificationsClient, ListManagedNotificationEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1814
|
-
|
|
1815
|
-
const paginateListMemberAccounts = core.createPaginator(NotificationsClient, ListMemberAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
1816
|
-
|
|
1817
|
-
const paginateListNotificationConfigurations = core.createPaginator(NotificationsClient, ListNotificationConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1818
|
-
|
|
1819
|
-
const paginateListNotificationEvents = core.createPaginator(NotificationsClient, ListNotificationEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1820
|
-
|
|
1821
|
-
const paginateListNotificationHubs = core.createPaginator(NotificationsClient, ListNotificationHubsCommand, "nextToken", "nextToken", "maxResults");
|
|
1822
|
-
|
|
1823
|
-
const paginateListOrganizationalUnits = core.createPaginator(NotificationsClient, ListOrganizationalUnitsCommand, "nextToken", "nextToken", "maxResults");
|
|
1836
|
+
smithyClient.createAggregatedClient(commands, Notifications, { paginators });
|
|
1824
1837
|
|
|
1825
1838
|
const AccessStatus = {
|
|
1826
1839
|
DISABLED: "DISABLED",
|
package/dist-es/Notifications.js
CHANGED
|
@@ -39,6 +39,17 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
39
39
|
import { UpdateEventRuleCommand, } from "./commands/UpdateEventRuleCommand";
|
|
40
40
|
import { UpdateNotificationConfigurationCommand, } from "./commands/UpdateNotificationConfigurationCommand";
|
|
41
41
|
import { NotificationsClient } from "./NotificationsClient";
|
|
42
|
+
import { paginateListChannels } from "./pagination/ListChannelsPaginator";
|
|
43
|
+
import { paginateListEventRules } from "./pagination/ListEventRulesPaginator";
|
|
44
|
+
import { paginateListManagedNotificationChannelAssociations, } from "./pagination/ListManagedNotificationChannelAssociationsPaginator";
|
|
45
|
+
import { paginateListManagedNotificationChildEvents } from "./pagination/ListManagedNotificationChildEventsPaginator";
|
|
46
|
+
import { paginateListManagedNotificationConfigurations, } from "./pagination/ListManagedNotificationConfigurationsPaginator";
|
|
47
|
+
import { paginateListManagedNotificationEvents } from "./pagination/ListManagedNotificationEventsPaginator";
|
|
48
|
+
import { paginateListMemberAccounts } from "./pagination/ListMemberAccountsPaginator";
|
|
49
|
+
import { paginateListNotificationConfigurations } from "./pagination/ListNotificationConfigurationsPaginator";
|
|
50
|
+
import { paginateListNotificationEvents } from "./pagination/ListNotificationEventsPaginator";
|
|
51
|
+
import { paginateListNotificationHubs } from "./pagination/ListNotificationHubsPaginator";
|
|
52
|
+
import { paginateListOrganizationalUnits } from "./pagination/ListOrganizationalUnitsPaginator";
|
|
42
53
|
const commands = {
|
|
43
54
|
AssociateChannelCommand,
|
|
44
55
|
AssociateManagedNotificationAccountContactCommand,
|
|
@@ -80,6 +91,19 @@ const commands = {
|
|
|
80
91
|
UpdateEventRuleCommand,
|
|
81
92
|
UpdateNotificationConfigurationCommand,
|
|
82
93
|
};
|
|
94
|
+
const paginators = {
|
|
95
|
+
paginateListChannels,
|
|
96
|
+
paginateListEventRules,
|
|
97
|
+
paginateListManagedNotificationChannelAssociations,
|
|
98
|
+
paginateListManagedNotificationChildEvents,
|
|
99
|
+
paginateListManagedNotificationConfigurations,
|
|
100
|
+
paginateListManagedNotificationEvents,
|
|
101
|
+
paginateListMemberAccounts,
|
|
102
|
+
paginateListNotificationConfigurations,
|
|
103
|
+
paginateListNotificationEvents,
|
|
104
|
+
paginateListNotificationHubs,
|
|
105
|
+
paginateListOrganizationalUnits,
|
|
106
|
+
};
|
|
83
107
|
export class Notifications extends NotificationsClient {
|
|
84
108
|
}
|
|
85
|
-
createAggregatedClient(commands, Notifications);
|
|
109
|
+
createAggregatedClient(commands, Notifications, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateChannelCommandInput, AssociateChannelCommandOutput } from "./commands/AssociateChannelCommand";
|
|
3
3
|
import { AssociateManagedNotificationAccountContactCommandInput, AssociateManagedNotificationAccountContactCommandOutput } from "./commands/AssociateManagedNotificationAccountContactCommand";
|
|
4
4
|
import { AssociateManagedNotificationAdditionalChannelCommandInput, AssociateManagedNotificationAdditionalChannelCommandOutput } from "./commands/AssociateManagedNotificationAdditionalChannelCommand";
|
|
@@ -282,6 +282,83 @@ export interface Notifications {
|
|
|
282
282
|
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotificationConfigurationCommandOutput>;
|
|
283
283
|
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void): void;
|
|
284
284
|
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void): void;
|
|
285
|
+
/**
|
|
286
|
+
* @see {@link ListChannelsCommand}
|
|
287
|
+
* @param args - command input.
|
|
288
|
+
* @param paginationConfig - optional pagination config.
|
|
289
|
+
* @returns AsyncIterable of {@link ListChannelsCommandOutput}.
|
|
290
|
+
*/
|
|
291
|
+
paginateListChannels(args: ListChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelsCommandOutput>;
|
|
292
|
+
/**
|
|
293
|
+
* @see {@link ListEventRulesCommand}
|
|
294
|
+
* @param args - command input.
|
|
295
|
+
* @param paginationConfig - optional pagination config.
|
|
296
|
+
* @returns AsyncIterable of {@link ListEventRulesCommandOutput}.
|
|
297
|
+
*/
|
|
298
|
+
paginateListEventRules(args: ListEventRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventRulesCommandOutput>;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link ListManagedNotificationChannelAssociationsCommand}
|
|
301
|
+
* @param args - command input.
|
|
302
|
+
* @param paginationConfig - optional pagination config.
|
|
303
|
+
* @returns AsyncIterable of {@link ListManagedNotificationChannelAssociationsCommandOutput}.
|
|
304
|
+
*/
|
|
305
|
+
paginateListManagedNotificationChannelAssociations(args: ListManagedNotificationChannelAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListManagedNotificationChannelAssociationsCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link ListManagedNotificationChildEventsCommand}
|
|
308
|
+
* @param args - command input.
|
|
309
|
+
* @param paginationConfig - optional pagination config.
|
|
310
|
+
* @returns AsyncIterable of {@link ListManagedNotificationChildEventsCommandOutput}.
|
|
311
|
+
*/
|
|
312
|
+
paginateListManagedNotificationChildEvents(args: ListManagedNotificationChildEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListManagedNotificationChildEventsCommandOutput>;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link ListManagedNotificationConfigurationsCommand}
|
|
315
|
+
* @param args - command input.
|
|
316
|
+
* @param paginationConfig - optional pagination config.
|
|
317
|
+
* @returns AsyncIterable of {@link ListManagedNotificationConfigurationsCommandOutput}.
|
|
318
|
+
*/
|
|
319
|
+
paginateListManagedNotificationConfigurations(args?: ListManagedNotificationConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListManagedNotificationConfigurationsCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link ListManagedNotificationEventsCommand}
|
|
322
|
+
* @param args - command input.
|
|
323
|
+
* @param paginationConfig - optional pagination config.
|
|
324
|
+
* @returns AsyncIterable of {@link ListManagedNotificationEventsCommandOutput}.
|
|
325
|
+
*/
|
|
326
|
+
paginateListManagedNotificationEvents(args?: ListManagedNotificationEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListManagedNotificationEventsCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* @see {@link ListMemberAccountsCommand}
|
|
329
|
+
* @param args - command input.
|
|
330
|
+
* @param paginationConfig - optional pagination config.
|
|
331
|
+
* @returns AsyncIterable of {@link ListMemberAccountsCommandOutput}.
|
|
332
|
+
*/
|
|
333
|
+
paginateListMemberAccounts(args: ListMemberAccountsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMemberAccountsCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* @see {@link ListNotificationConfigurationsCommand}
|
|
336
|
+
* @param args - command input.
|
|
337
|
+
* @param paginationConfig - optional pagination config.
|
|
338
|
+
* @returns AsyncIterable of {@link ListNotificationConfigurationsCommandOutput}.
|
|
339
|
+
*/
|
|
340
|
+
paginateListNotificationConfigurations(args?: ListNotificationConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotificationConfigurationsCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link ListNotificationEventsCommand}
|
|
343
|
+
* @param args - command input.
|
|
344
|
+
* @param paginationConfig - optional pagination config.
|
|
345
|
+
* @returns AsyncIterable of {@link ListNotificationEventsCommandOutput}.
|
|
346
|
+
*/
|
|
347
|
+
paginateListNotificationEvents(args?: ListNotificationEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotificationEventsCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link ListNotificationHubsCommand}
|
|
350
|
+
* @param args - command input.
|
|
351
|
+
* @param paginationConfig - optional pagination config.
|
|
352
|
+
* @returns AsyncIterable of {@link ListNotificationHubsCommandOutput}.
|
|
353
|
+
*/
|
|
354
|
+
paginateListNotificationHubs(args?: ListNotificationHubsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotificationHubsCommandOutput>;
|
|
355
|
+
/**
|
|
356
|
+
* @see {@link ListOrganizationalUnitsCommand}
|
|
357
|
+
* @param args - command input.
|
|
358
|
+
* @param paginationConfig - optional pagination config.
|
|
359
|
+
* @returns AsyncIterable of {@link ListOrganizationalUnitsCommandOutput}.
|
|
360
|
+
*/
|
|
361
|
+
paginateListOrganizationalUnits(args: ListOrganizationalUnitsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOrganizationalUnitsCommandOutput>;
|
|
285
362
|
}
|
|
286
363
|
/**
|
|
287
364
|
* <p>The <i>User Notifications API Reference</i> provides descriptions, API request parameters, and the JSON response for each of the User Notifications API actions.</p> <p>User Notification control plane APIs are currently available in US East (Virginia) - <code>us-east-1</code>.</p> <p> <a href="https://docs.aws.amazon.com/notifications/latest/APIReference/API_GetNotificationEvent.html">GetNotificationEvent</a> and <a href="https://docs.aws.amazon.com/notifications/latest/APIReference/API_ListNotificationEvents.html">ListNotificationEvents</a> APIs are currently available in <a href="https://docs.aws.amazon.com/notifications/latest/userguide/supported-regions.html">commercial partition Regions</a> and only return notifications stored in the same Region in which they're called.</p> <p>The User Notifications console can only be used in US East (Virginia). Your data however, is stored in each Region chosen as a <a href="https://docs.aws.amazon.com/notifications/latest/userguide/notification-hubs.html">notification hub</a> in addition to US East (Virginia).</p> <note> <p>For information about descriptions, API request parameters, and the JSON response for email contact related API actions, see the <a href="https://docs.aws.amazon.com/notificationscontacts/latest/APIReference/Welcome.html">User Notifications Contacts API Reference Guide</a>.</p> </note>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateChannelCommandInput,
|
|
4
8
|
AssociateChannelCommandOutput,
|
|
@@ -738,6 +742,83 @@ export interface Notifications {
|
|
|
738
742
|
options: __HttpHandlerOptions,
|
|
739
743
|
cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void
|
|
740
744
|
): void;
|
|
745
|
+
paginateListChannels(
|
|
746
|
+
args: ListChannelsCommandInput,
|
|
747
|
+
paginationConfig?: Pick<
|
|
748
|
+
PaginationConfiguration,
|
|
749
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
750
|
+
>
|
|
751
|
+
): Paginator<ListChannelsCommandOutput>;
|
|
752
|
+
paginateListEventRules(
|
|
753
|
+
args: ListEventRulesCommandInput,
|
|
754
|
+
paginationConfig?: Pick<
|
|
755
|
+
PaginationConfiguration,
|
|
756
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
757
|
+
>
|
|
758
|
+
): Paginator<ListEventRulesCommandOutput>;
|
|
759
|
+
paginateListManagedNotificationChannelAssociations(
|
|
760
|
+
args: ListManagedNotificationChannelAssociationsCommandInput,
|
|
761
|
+
paginationConfig?: Pick<
|
|
762
|
+
PaginationConfiguration,
|
|
763
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
764
|
+
>
|
|
765
|
+
): Paginator<ListManagedNotificationChannelAssociationsCommandOutput>;
|
|
766
|
+
paginateListManagedNotificationChildEvents(
|
|
767
|
+
args: ListManagedNotificationChildEventsCommandInput,
|
|
768
|
+
paginationConfig?: Pick<
|
|
769
|
+
PaginationConfiguration,
|
|
770
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
771
|
+
>
|
|
772
|
+
): Paginator<ListManagedNotificationChildEventsCommandOutput>;
|
|
773
|
+
paginateListManagedNotificationConfigurations(
|
|
774
|
+
args?: ListManagedNotificationConfigurationsCommandInput,
|
|
775
|
+
paginationConfig?: Pick<
|
|
776
|
+
PaginationConfiguration,
|
|
777
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
778
|
+
>
|
|
779
|
+
): Paginator<ListManagedNotificationConfigurationsCommandOutput>;
|
|
780
|
+
paginateListManagedNotificationEvents(
|
|
781
|
+
args?: ListManagedNotificationEventsCommandInput,
|
|
782
|
+
paginationConfig?: Pick<
|
|
783
|
+
PaginationConfiguration,
|
|
784
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
785
|
+
>
|
|
786
|
+
): Paginator<ListManagedNotificationEventsCommandOutput>;
|
|
787
|
+
paginateListMemberAccounts(
|
|
788
|
+
args: ListMemberAccountsCommandInput,
|
|
789
|
+
paginationConfig?: Pick<
|
|
790
|
+
PaginationConfiguration,
|
|
791
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
792
|
+
>
|
|
793
|
+
): Paginator<ListMemberAccountsCommandOutput>;
|
|
794
|
+
paginateListNotificationConfigurations(
|
|
795
|
+
args?: ListNotificationConfigurationsCommandInput,
|
|
796
|
+
paginationConfig?: Pick<
|
|
797
|
+
PaginationConfiguration,
|
|
798
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
799
|
+
>
|
|
800
|
+
): Paginator<ListNotificationConfigurationsCommandOutput>;
|
|
801
|
+
paginateListNotificationEvents(
|
|
802
|
+
args?: ListNotificationEventsCommandInput,
|
|
803
|
+
paginationConfig?: Pick<
|
|
804
|
+
PaginationConfiguration,
|
|
805
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
806
|
+
>
|
|
807
|
+
): Paginator<ListNotificationEventsCommandOutput>;
|
|
808
|
+
paginateListNotificationHubs(
|
|
809
|
+
args?: ListNotificationHubsCommandInput,
|
|
810
|
+
paginationConfig?: Pick<
|
|
811
|
+
PaginationConfiguration,
|
|
812
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
813
|
+
>
|
|
814
|
+
): Paginator<ListNotificationHubsCommandOutput>;
|
|
815
|
+
paginateListOrganizationalUnits(
|
|
816
|
+
args: ListOrganizationalUnitsCommandInput,
|
|
817
|
+
paginationConfig?: Pick<
|
|
818
|
+
PaginationConfiguration,
|
|
819
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
820
|
+
>
|
|
821
|
+
): Paginator<ListOrganizationalUnitsCommandOutput>;
|
|
741
822
|
}
|
|
742
823
|
export declare class Notifications
|
|
743
824
|
extends NotificationsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-notifications",
|
|
3
3
|
"description": "AWS SDK for JavaScript Notifications Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-notifications",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|