@aws-sdk/client-notifications 3.876.0 → 3.880.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/README.md +33 -8
- package/dist-cjs/Notifications.js +8 -0
- package/dist-cjs/commands/AssociateOrganizationalUnitCommand.js +26 -0
- package/dist-cjs/commands/DisassociateOrganizationalUnitCommand.js +26 -0
- package/dist-cjs/commands/ListMemberAccountsCommand.js +26 -0
- package/dist-cjs/commands/ListOrganizationalUnitsCommand.js +26 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +13 -1
- package/dist-cjs/pagination/ListMemberAccountsPaginator.js +7 -0
- package/dist-cjs/pagination/ListOrganizationalUnitsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +125 -2
- package/dist-es/Notifications.js +8 -0
- package/dist-es/commands/AssociateOrganizationalUnitCommand.js +22 -0
- package/dist-es/commands/DisassociateOrganizationalUnitCommand.js +22 -0
- package/dist-es/commands/ListMemberAccountsCommand.js +22 -0
- package/dist-es/commands/ListOrganizationalUnitsCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/pagination/ListMemberAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListOrganizationalUnitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/Notifications.d.ts +29 -8
- package/dist-types/NotificationsClient.d.ts +7 -10
- package/dist-types/commands/AssociateChannelCommand.d.ts +1 -2
- package/dist-types/commands/AssociateManagedNotificationAdditionalChannelCommand.d.ts +1 -2
- package/dist-types/commands/AssociateOrganizationalUnitCommand.d.ts +92 -0
- package/dist-types/commands/CreateEventRuleCommand.d.ts +1 -4
- package/dist-types/commands/DeregisterNotificationHubCommand.d.ts +1 -7
- package/dist-types/commands/DisassociateChannelCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateManagedNotificationAdditionalChannelCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateOrganizationalUnitCommand.d.ts +86 -0
- package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/GetNotificationEventCommand.d.ts +2 -6
- package/dist-types/commands/GetNotificationsAccessForOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +101 -0
- package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +3 -2
- package/dist-types/commands/ListNotificationEventsCommand.d.ts +3 -6
- package/dist-types/commands/ListOrganizationalUnitsCommand.d.ts +92 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -5
- package/dist-types/commands/RegisterNotificationHubCommand.d.ts +1 -3
- package/dist-types/commands/TagResourceCommand.d.ts +1 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -8
- package/dist-types/models/models_0.d.ts +303 -1054
- package/dist-types/pagination/ListMemberAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOrganizationalUnitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Notifications.d.ts +68 -0
- package/dist-types/ts3.4/NotificationsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/AssociateOrganizationalUnitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateOrganizationalUnitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOrganizationalUnitsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -0
- package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOrganizationalUnitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +12 -12
|
@@ -10,6 +10,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
10
10
|
export declare const AccessStatus: {
|
|
11
11
|
readonly DISABLED: "DISABLED";
|
|
12
12
|
readonly ENABLED: "ENABLED";
|
|
13
|
+
readonly FAILED: "FAILED";
|
|
13
14
|
readonly PENDING: "PENDING";
|
|
14
15
|
};
|
|
15
16
|
export type AccessStatus = (typeof AccessStatus)[keyof typeof AccessStatus];
|
|
@@ -141,6 +142,11 @@ export interface AssociateManagedNotificationAdditionalChannelRequest {
|
|
|
141
142
|
managedNotificationConfigurationArn: string | undefined;
|
|
142
143
|
}
|
|
143
144
|
export interface AssociateManagedNotificationAdditionalChannelResponse {}
|
|
145
|
+
export interface AssociateOrganizationalUnitRequest {
|
|
146
|
+
organizationalUnitId: string | undefined;
|
|
147
|
+
notificationConfigurationArn: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface AssociateOrganizationalUnitResponse {}
|
|
144
150
|
export interface DisassociateChannelRequest {
|
|
145
151
|
arn: string | undefined;
|
|
146
152
|
notificationConfigurationArn: string | undefined;
|
|
@@ -254,6 +260,11 @@ export interface DisassociateManagedNotificationAdditionalChannelRequest {
|
|
|
254
260
|
managedNotificationConfigurationArn: string | undefined;
|
|
255
261
|
}
|
|
256
262
|
export interface DisassociateManagedNotificationAdditionalChannelResponse {}
|
|
263
|
+
export interface DisassociateOrganizationalUnitRequest {
|
|
264
|
+
organizationalUnitId: string | undefined;
|
|
265
|
+
notificationConfigurationArn: string | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface DisassociateOrganizationalUnitResponse {}
|
|
257
268
|
export interface EnableNotificationsAccessForOrganizationRequest {}
|
|
258
269
|
export interface EnableNotificationsAccessForOrganizationResponse {}
|
|
259
270
|
export interface GetEventRuleRequest {
|
|
@@ -416,6 +427,12 @@ export interface GetManagedNotificationEventResponse {
|
|
|
416
427
|
export interface GetNotificationConfigurationRequest {
|
|
417
428
|
arn: string | undefined;
|
|
418
429
|
}
|
|
430
|
+
export declare const NotificationConfigurationSubtype: {
|
|
431
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
432
|
+
readonly ADMIN_MANAGED: "ADMIN_MANAGED";
|
|
433
|
+
};
|
|
434
|
+
export type NotificationConfigurationSubtype =
|
|
435
|
+
(typeof NotificationConfigurationSubtype)[keyof typeof NotificationConfigurationSubtype];
|
|
419
436
|
export interface GetNotificationConfigurationResponse {
|
|
420
437
|
arn: string | undefined;
|
|
421
438
|
name: string | undefined;
|
|
@@ -423,6 +440,7 @@ export interface GetNotificationConfigurationResponse {
|
|
|
423
440
|
status: NotificationConfigurationStatus | undefined;
|
|
424
441
|
creationTime: Date | undefined;
|
|
425
442
|
aggregationDuration?: AggregationDuration | undefined;
|
|
443
|
+
subtype?: NotificationConfigurationSubtype | undefined;
|
|
426
444
|
}
|
|
427
445
|
export interface GetNotificationEventRequest {
|
|
428
446
|
arn: string | undefined;
|
|
@@ -471,6 +489,7 @@ export interface NotificationEventSchema {
|
|
|
471
489
|
endTime?: Date | undefined;
|
|
472
490
|
textParts: Record<string, TextPartValue> | undefined;
|
|
473
491
|
media: MediaElement[] | undefined;
|
|
492
|
+
organizationalUnitId?: string | undefined;
|
|
474
493
|
}
|
|
475
494
|
export interface GetNotificationEventResponse {
|
|
476
495
|
arn: string | undefined;
|
|
@@ -592,10 +611,39 @@ export interface ListManagedNotificationEventsResponse {
|
|
|
592
611
|
nextToken?: string | undefined;
|
|
593
612
|
managedNotificationEvents: ManagedNotificationEventOverview[] | undefined;
|
|
594
613
|
}
|
|
614
|
+
export declare const MemberAccountNotificationConfigurationStatus: {
|
|
615
|
+
readonly ACTIVE: "ACTIVE";
|
|
616
|
+
readonly CREATING: "CREATING";
|
|
617
|
+
readonly DELETING: "DELETING";
|
|
618
|
+
readonly INACTIVE: "INACTIVE";
|
|
619
|
+
readonly PENDING: "PENDING";
|
|
620
|
+
};
|
|
621
|
+
export type MemberAccountNotificationConfigurationStatus =
|
|
622
|
+
(typeof MemberAccountNotificationConfigurationStatus)[keyof typeof MemberAccountNotificationConfigurationStatus];
|
|
623
|
+
export interface ListMemberAccountsRequest {
|
|
624
|
+
notificationConfigurationArn: string | undefined;
|
|
625
|
+
maxResults?: number | undefined;
|
|
626
|
+
nextToken?: string | undefined;
|
|
627
|
+
memberAccount?: string | undefined;
|
|
628
|
+
status?: MemberAccountNotificationConfigurationStatus | undefined;
|
|
629
|
+
organizationalUnitId?: string | undefined;
|
|
630
|
+
}
|
|
631
|
+
export interface MemberAccount {
|
|
632
|
+
notificationConfigurationArn?: string | undefined;
|
|
633
|
+
accountId: string | undefined;
|
|
634
|
+
status: MemberAccountNotificationConfigurationStatus | undefined;
|
|
635
|
+
statusReason: string | undefined;
|
|
636
|
+
organizationalUnitId: string | undefined;
|
|
637
|
+
}
|
|
638
|
+
export interface ListMemberAccountsResponse {
|
|
639
|
+
memberAccounts: MemberAccount[] | undefined;
|
|
640
|
+
nextToken?: string | undefined;
|
|
641
|
+
}
|
|
595
642
|
export interface ListNotificationConfigurationsRequest {
|
|
596
643
|
eventRuleSource?: string | undefined;
|
|
597
644
|
channelArn?: string | undefined;
|
|
598
645
|
status?: NotificationConfigurationStatus | undefined;
|
|
646
|
+
subtype?: NotificationConfigurationSubtype | undefined;
|
|
599
647
|
maxResults?: number | undefined;
|
|
600
648
|
nextToken?: string | undefined;
|
|
601
649
|
}
|
|
@@ -606,6 +654,7 @@ export interface NotificationConfigurationStructure {
|
|
|
606
654
|
status: NotificationConfigurationStatus | undefined;
|
|
607
655
|
creationTime: Date | undefined;
|
|
608
656
|
aggregationDuration?: AggregationDuration | undefined;
|
|
657
|
+
subtype?: NotificationConfigurationSubtype | undefined;
|
|
609
658
|
}
|
|
610
659
|
export interface ListNotificationConfigurationsResponse {
|
|
611
660
|
nextToken?: string | undefined;
|
|
@@ -620,6 +669,7 @@ export interface ListNotificationEventsRequest {
|
|
|
620
669
|
aggregateNotificationEventArn?: string | undefined;
|
|
621
670
|
maxResults?: number | undefined;
|
|
622
671
|
nextToken?: string | undefined;
|
|
672
|
+
organizationalUnitId?: string | undefined;
|
|
623
673
|
}
|
|
624
674
|
export interface SourceEventMetadataSummary {
|
|
625
675
|
eventOriginRegion?: string | undefined;
|
|
@@ -642,6 +692,7 @@ export interface NotificationEventOverview {
|
|
|
642
692
|
aggregationEventType?: AggregationEventType | undefined;
|
|
643
693
|
aggregateNotificationEventArn?: string | undefined;
|
|
644
694
|
aggregationSummary?: AggregationSummary | undefined;
|
|
695
|
+
organizationalUnitId?: string | undefined;
|
|
645
696
|
}
|
|
646
697
|
export interface ListNotificationEventsResponse {
|
|
647
698
|
nextToken?: string | undefined;
|
|
@@ -661,6 +712,15 @@ export interface ListNotificationHubsResponse {
|
|
|
661
712
|
notificationHubs: NotificationHubOverview[] | undefined;
|
|
662
713
|
nextToken?: string | undefined;
|
|
663
714
|
}
|
|
715
|
+
export interface ListOrganizationalUnitsRequest {
|
|
716
|
+
notificationConfigurationArn: string | undefined;
|
|
717
|
+
maxResults?: number | undefined;
|
|
718
|
+
nextToken?: string | undefined;
|
|
719
|
+
}
|
|
720
|
+
export interface ListOrganizationalUnitsResponse {
|
|
721
|
+
organizationalUnits: string[] | undefined;
|
|
722
|
+
nextToken?: string | undefined;
|
|
723
|
+
}
|
|
664
724
|
export interface ListTagsForResourceRequest {
|
|
665
725
|
arn: string | undefined;
|
|
666
726
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMemberAccountsCommandInput,
|
|
4
|
+
ListMemberAccountsCommandOutput,
|
|
5
|
+
} from "../commands/ListMemberAccountsCommand";
|
|
6
|
+
import { NotificationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMemberAccounts: (
|
|
8
|
+
config: NotificationsPaginationConfiguration,
|
|
9
|
+
input: ListMemberAccountsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMemberAccountsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOrganizationalUnitsCommandInput,
|
|
4
|
+
ListOrganizationalUnitsCommandOutput,
|
|
5
|
+
} from "../commands/ListOrganizationalUnitsCommand";
|
|
6
|
+
import { NotificationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListOrganizationalUnits: (
|
|
8
|
+
config: NotificationsPaginationConfiguration,
|
|
9
|
+
input: ListOrganizationalUnitsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListOrganizationalUnitsCommandOutput>;
|
|
@@ -5,6 +5,8 @@ export * from "./ListManagedNotificationChannelAssociationsPaginator";
|
|
|
5
5
|
export * from "./ListManagedNotificationChildEventsPaginator";
|
|
6
6
|
export * from "./ListManagedNotificationConfigurationsPaginator";
|
|
7
7
|
export * from "./ListManagedNotificationEventsPaginator";
|
|
8
|
+
export * from "./ListMemberAccountsPaginator";
|
|
8
9
|
export * from "./ListNotificationConfigurationsPaginator";
|
|
9
10
|
export * from "./ListNotificationEventsPaginator";
|
|
10
11
|
export * from "./ListNotificationHubsPaginator";
|
|
12
|
+
export * from "./ListOrganizationalUnitsPaginator";
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
AssociateManagedNotificationAdditionalChannelCommandInput,
|
|
16
16
|
AssociateManagedNotificationAdditionalChannelCommandOutput,
|
|
17
17
|
} from "../commands/AssociateManagedNotificationAdditionalChannelCommand";
|
|
18
|
+
import {
|
|
19
|
+
AssociateOrganizationalUnitCommandInput,
|
|
20
|
+
AssociateOrganizationalUnitCommandOutput,
|
|
21
|
+
} from "../commands/AssociateOrganizationalUnitCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateEventRuleCommandInput,
|
|
20
24
|
CreateEventRuleCommandOutput,
|
|
@@ -51,6 +55,10 @@ import {
|
|
|
51
55
|
DisassociateManagedNotificationAdditionalChannelCommandInput,
|
|
52
56
|
DisassociateManagedNotificationAdditionalChannelCommandOutput,
|
|
53
57
|
} from "../commands/DisassociateManagedNotificationAdditionalChannelCommand";
|
|
58
|
+
import {
|
|
59
|
+
DisassociateOrganizationalUnitCommandInput,
|
|
60
|
+
DisassociateOrganizationalUnitCommandOutput,
|
|
61
|
+
} from "../commands/DisassociateOrganizationalUnitCommand";
|
|
54
62
|
import {
|
|
55
63
|
EnableNotificationsAccessForOrganizationCommandInput,
|
|
56
64
|
EnableNotificationsAccessForOrganizationCommandOutput,
|
|
@@ -107,6 +115,10 @@ import {
|
|
|
107
115
|
ListManagedNotificationEventsCommandInput,
|
|
108
116
|
ListManagedNotificationEventsCommandOutput,
|
|
109
117
|
} from "../commands/ListManagedNotificationEventsCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListMemberAccountsCommandInput,
|
|
120
|
+
ListMemberAccountsCommandOutput,
|
|
121
|
+
} from "../commands/ListMemberAccountsCommand";
|
|
110
122
|
import {
|
|
111
123
|
ListNotificationConfigurationsCommandInput,
|
|
112
124
|
ListNotificationConfigurationsCommandOutput,
|
|
@@ -119,6 +131,10 @@ import {
|
|
|
119
131
|
ListNotificationHubsCommandInput,
|
|
120
132
|
ListNotificationHubsCommandOutput,
|
|
121
133
|
} from "../commands/ListNotificationHubsCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListOrganizationalUnitsCommandInput,
|
|
136
|
+
ListOrganizationalUnitsCommandOutput,
|
|
137
|
+
} from "../commands/ListOrganizationalUnitsCommand";
|
|
122
138
|
import {
|
|
123
139
|
ListTagsForResourceCommandInput,
|
|
124
140
|
ListTagsForResourceCommandOutput,
|
|
@@ -155,6 +171,10 @@ export declare const se_AssociateManagedNotificationAdditionalChannelCommand: (
|
|
|
155
171
|
input: AssociateManagedNotificationAdditionalChannelCommandInput,
|
|
156
172
|
context: __SerdeContext
|
|
157
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_AssociateOrganizationalUnitCommand: (
|
|
175
|
+
input: AssociateOrganizationalUnitCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
158
178
|
export declare const se_CreateEventRuleCommand: (
|
|
159
179
|
input: CreateEventRuleCommandInput,
|
|
160
180
|
context: __SerdeContext
|
|
@@ -191,6 +211,10 @@ export declare const se_DisassociateManagedNotificationAdditionalChannelCommand:
|
|
|
191
211
|
input: DisassociateManagedNotificationAdditionalChannelCommandInput,
|
|
192
212
|
context: __SerdeContext
|
|
193
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_DisassociateOrganizationalUnitCommand: (
|
|
215
|
+
input: DisassociateOrganizationalUnitCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
194
218
|
export declare const se_EnableNotificationsAccessForOrganizationCommand: (
|
|
195
219
|
input: EnableNotificationsAccessForOrganizationCommandInput,
|
|
196
220
|
context: __SerdeContext
|
|
@@ -247,6 +271,10 @@ export declare const se_ListManagedNotificationEventsCommand: (
|
|
|
247
271
|
input: ListManagedNotificationEventsCommandInput,
|
|
248
272
|
context: __SerdeContext
|
|
249
273
|
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_ListMemberAccountsCommand: (
|
|
275
|
+
input: ListMemberAccountsCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
250
278
|
export declare const se_ListNotificationConfigurationsCommand: (
|
|
251
279
|
input: ListNotificationConfigurationsCommandInput,
|
|
252
280
|
context: __SerdeContext
|
|
@@ -259,6 +287,10 @@ export declare const se_ListNotificationHubsCommand: (
|
|
|
259
287
|
input: ListNotificationHubsCommandInput,
|
|
260
288
|
context: __SerdeContext
|
|
261
289
|
) => Promise<__HttpRequest>;
|
|
290
|
+
export declare const se_ListOrganizationalUnitsCommand: (
|
|
291
|
+
input: ListOrganizationalUnitsCommandInput,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<__HttpRequest>;
|
|
262
294
|
export declare const se_ListTagsForResourceCommand: (
|
|
263
295
|
input: ListTagsForResourceCommandInput,
|
|
264
296
|
context: __SerdeContext
|
|
@@ -295,6 +327,10 @@ export declare const de_AssociateManagedNotificationAdditionalChannelCommand: (
|
|
|
295
327
|
output: __HttpResponse,
|
|
296
328
|
context: __SerdeContext
|
|
297
329
|
) => Promise<AssociateManagedNotificationAdditionalChannelCommandOutput>;
|
|
330
|
+
export declare const de_AssociateOrganizationalUnitCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<AssociateOrganizationalUnitCommandOutput>;
|
|
298
334
|
export declare const de_CreateEventRuleCommand: (
|
|
299
335
|
output: __HttpResponse,
|
|
300
336
|
context: __SerdeContext
|
|
@@ -331,6 +367,10 @@ export declare const de_DisassociateManagedNotificationAdditionalChannelCommand:
|
|
|
331
367
|
output: __HttpResponse,
|
|
332
368
|
context: __SerdeContext
|
|
333
369
|
) => Promise<DisassociateManagedNotificationAdditionalChannelCommandOutput>;
|
|
370
|
+
export declare const de_DisassociateOrganizationalUnitCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<DisassociateOrganizationalUnitCommandOutput>;
|
|
334
374
|
export declare const de_EnableNotificationsAccessForOrganizationCommand: (
|
|
335
375
|
output: __HttpResponse,
|
|
336
376
|
context: __SerdeContext
|
|
@@ -387,6 +427,10 @@ export declare const de_ListManagedNotificationEventsCommand: (
|
|
|
387
427
|
output: __HttpResponse,
|
|
388
428
|
context: __SerdeContext
|
|
389
429
|
) => Promise<ListManagedNotificationEventsCommandOutput>;
|
|
430
|
+
export declare const de_ListMemberAccountsCommand: (
|
|
431
|
+
output: __HttpResponse,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<ListMemberAccountsCommandOutput>;
|
|
390
434
|
export declare const de_ListNotificationConfigurationsCommand: (
|
|
391
435
|
output: __HttpResponse,
|
|
392
436
|
context: __SerdeContext
|
|
@@ -399,6 +443,10 @@ export declare const de_ListNotificationHubsCommand: (
|
|
|
399
443
|
output: __HttpResponse,
|
|
400
444
|
context: __SerdeContext
|
|
401
445
|
) => Promise<ListNotificationHubsCommandOutput>;
|
|
446
|
+
export declare const de_ListOrganizationalUnitsCommand: (
|
|
447
|
+
output: __HttpResponse,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<ListOrganizationalUnitsCommandOutput>;
|
|
402
450
|
export declare const de_ListTagsForResourceCommand: (
|
|
403
451
|
output: __HttpResponse,
|
|
404
452
|
context: __SerdeContext
|
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.880.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",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.879.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.879.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.873.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.876.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.873.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.879.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.873.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.879.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.873.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.879.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.5",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.9.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.19",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.20",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.9",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.4",
|
|
45
45
|
"@smithy/node-http-handler": "^4.1.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.3",
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
47
|
+
"@smithy/smithy-client": "^4.5.0",
|
|
48
48
|
"@smithy/types": "^4.3.2",
|
|
49
49
|
"@smithy/url-parser": "^4.0.5",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.27",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.27",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.7",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.5",
|
|
57
57
|
"@smithy/util-retry": "^4.0.7",
|