@aws-sdk/client-notifications 3.952.0 → 3.953.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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +514 -355
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateChannelCommand.js +2 -2
  4. package/dist-es/commands/AssociateManagedNotificationAccountContactCommand.js +2 -2
  5. package/dist-es/commands/AssociateManagedNotificationAdditionalChannelCommand.js +2 -2
  6. package/dist-es/commands/AssociateOrganizationalUnitCommand.js +2 -2
  7. package/dist-es/commands/CreateEventRuleCommand.js +2 -2
  8. package/dist-es/commands/CreateNotificationConfigurationCommand.js +2 -2
  9. package/dist-es/commands/DeleteEventRuleCommand.js +2 -2
  10. package/dist-es/commands/DeleteNotificationConfigurationCommand.js +2 -2
  11. package/dist-es/commands/DeregisterNotificationHubCommand.js +2 -2
  12. package/dist-es/commands/DisableNotificationsAccessForOrganizationCommand.js +2 -2
  13. package/dist-es/commands/DisassociateChannelCommand.js +2 -2
  14. package/dist-es/commands/DisassociateManagedNotificationAccountContactCommand.js +2 -2
  15. package/dist-es/commands/DisassociateManagedNotificationAdditionalChannelCommand.js +2 -2
  16. package/dist-es/commands/DisassociateOrganizationalUnitCommand.js +2 -2
  17. package/dist-es/commands/EnableNotificationsAccessForOrganizationCommand.js +2 -2
  18. package/dist-es/commands/GetEventRuleCommand.js +2 -2
  19. package/dist-es/commands/GetManagedNotificationChildEventCommand.js +2 -2
  20. package/dist-es/commands/GetManagedNotificationConfigurationCommand.js +2 -2
  21. package/dist-es/commands/GetManagedNotificationEventCommand.js +2 -2
  22. package/dist-es/commands/GetNotificationConfigurationCommand.js +2 -2
  23. package/dist-es/commands/GetNotificationEventCommand.js +2 -2
  24. package/dist-es/commands/GetNotificationsAccessForOrganizationCommand.js +2 -2
  25. package/dist-es/commands/ListChannelsCommand.js +2 -2
  26. package/dist-es/commands/ListEventRulesCommand.js +2 -2
  27. package/dist-es/commands/ListManagedNotificationChannelAssociationsCommand.js +2 -2
  28. package/dist-es/commands/ListManagedNotificationChildEventsCommand.js +2 -2
  29. package/dist-es/commands/ListManagedNotificationConfigurationsCommand.js +2 -2
  30. package/dist-es/commands/ListManagedNotificationEventsCommand.js +2 -2
  31. package/dist-es/commands/ListMemberAccountsCommand.js +2 -2
  32. package/dist-es/commands/ListNotificationConfigurationsCommand.js +2 -2
  33. package/dist-es/commands/ListNotificationEventsCommand.js +2 -2
  34. package/dist-es/commands/ListNotificationHubsCommand.js +2 -2
  35. package/dist-es/commands/ListOrganizationalUnitsCommand.js +2 -2
  36. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  37. package/dist-es/commands/RegisterNotificationHubCommand.js +2 -2
  38. package/dist-es/commands/TagResourceCommand.js +2 -2
  39. package/dist-es/commands/UntagResourceCommand.js +2 -2
  40. package/dist-es/commands/UpdateEventRuleCommand.js +2 -2
  41. package/dist-es/commands/UpdateNotificationConfigurationCommand.js +2 -2
  42. package/dist-es/index.js +1 -0
  43. package/dist-es/runtimeConfig.shared.js +6 -1
  44. package/dist-es/schemas/schemas_0.js +307 -306
  45. package/dist-types/NotificationsClient.d.ts +1 -10
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  48. package/dist-types/runtimeConfig.d.ts +6 -2
  49. package/dist-types/runtimeConfig.native.d.ts +6 -2
  50. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  51. package/dist-types/schemas/schemas_0.d.ts +159 -187
  52. package/dist-types/ts3.4/NotificationsClient.d.ts +0 -4
  53. package/dist-types/ts3.4/index.d.ts +1 -0
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +158 -188
  59. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.notifications" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.notifications",
32
+ version: "2018-05-10",
33
+ serviceTarget: "Notifications",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Notifications",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateChannel } from "../schemas/schemas_0";
4
+ import { AssociateChannel$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateChannelCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateChannelCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "AssociateChannel", {})
13
13
  .n("NotificationsClient", "AssociateChannelCommand")
14
- .sc(AssociateChannel)
14
+ .sc(AssociateChannel$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateManagedNotificationAccountContact } from "../schemas/schemas_0";
4
+ import { AssociateManagedNotificationAccountContact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateManagedNotificationAccountContactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateManagedNotificationAccountContactCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "AssociateManagedNotificationAccountContact", {})
13
13
  .n("NotificationsClient", "AssociateManagedNotificationAccountContactCommand")
14
- .sc(AssociateManagedNotificationAccountContact)
14
+ .sc(AssociateManagedNotificationAccountContact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateManagedNotificationAdditionalChannel } from "../schemas/schemas_0";
4
+ import { AssociateManagedNotificationAdditionalChannel$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateManagedNotificationAdditionalChannelCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateManagedNotificationAdditionalChannelCommand extends $Comma
11
11
  })
12
12
  .s("Notifications", "AssociateManagedNotificationAdditionalChannel", {})
13
13
  .n("NotificationsClient", "AssociateManagedNotificationAdditionalChannelCommand")
14
- .sc(AssociateManagedNotificationAdditionalChannel)
14
+ .sc(AssociateManagedNotificationAdditionalChannel$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateOrganizationalUnit } from "../schemas/schemas_0";
4
+ import { AssociateOrganizationalUnit$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateOrganizationalUnitCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateOrganizationalUnitCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "AssociateOrganizationalUnit", {})
13
13
  .n("NotificationsClient", "AssociateOrganizationalUnitCommand")
14
- .sc(AssociateOrganizationalUnit)
14
+ .sc(AssociateOrganizationalUnit$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateEventRule } from "../schemas/schemas_0";
4
+ import { CreateEventRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateEventRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateEventRuleCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "CreateEventRule", {})
13
13
  .n("NotificationsClient", "CreateEventRuleCommand")
14
- .sc(CreateEventRule)
14
+ .sc(CreateEventRule$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateNotificationConfiguration } from "../schemas/schemas_0";
4
+ import { CreateNotificationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateNotificationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateNotificationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "CreateNotificationConfiguration", {})
13
13
  .n("NotificationsClient", "CreateNotificationConfigurationCommand")
14
- .sc(CreateNotificationConfiguration)
14
+ .sc(CreateNotificationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteEventRule } from "../schemas/schemas_0";
4
+ import { DeleteEventRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteEventRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteEventRuleCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DeleteEventRule", {})
13
13
  .n("NotificationsClient", "DeleteEventRuleCommand")
14
- .sc(DeleteEventRule)
14
+ .sc(DeleteEventRule$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteNotificationConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteNotificationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteNotificationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteNotificationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DeleteNotificationConfiguration", {})
13
13
  .n("NotificationsClient", "DeleteNotificationConfigurationCommand")
14
- .sc(DeleteNotificationConfiguration)
14
+ .sc(DeleteNotificationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeregisterNotificationHub } from "../schemas/schemas_0";
4
+ import { DeregisterNotificationHub$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeregisterNotificationHubCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeregisterNotificationHubCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DeregisterNotificationHub", {})
13
13
  .n("NotificationsClient", "DeregisterNotificationHubCommand")
14
- .sc(DeregisterNotificationHub)
14
+ .sc(DeregisterNotificationHub$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisableNotificationsAccessForOrganization } from "../schemas/schemas_0";
4
+ import { DisableNotificationsAccessForOrganization$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisableNotificationsAccessForOrganizationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisableNotificationsAccessForOrganizationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DisableNotificationsAccessForOrganization", {})
13
13
  .n("NotificationsClient", "DisableNotificationsAccessForOrganizationCommand")
14
- .sc(DisableNotificationsAccessForOrganization)
14
+ .sc(DisableNotificationsAccessForOrganization$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateChannel } from "../schemas/schemas_0";
4
+ import { DisassociateChannel$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateChannelCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateChannelCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DisassociateChannel", {})
13
13
  .n("NotificationsClient", "DisassociateChannelCommand")
14
- .sc(DisassociateChannel)
14
+ .sc(DisassociateChannel$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateManagedNotificationAccountContact } from "../schemas/schemas_0";
4
+ import { DisassociateManagedNotificationAccountContact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateManagedNotificationAccountContactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateManagedNotificationAccountContactCommand extends $Comma
11
11
  })
12
12
  .s("Notifications", "DisassociateManagedNotificationAccountContact", {})
13
13
  .n("NotificationsClient", "DisassociateManagedNotificationAccountContactCommand")
14
- .sc(DisassociateManagedNotificationAccountContact)
14
+ .sc(DisassociateManagedNotificationAccountContact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateManagedNotificationAdditionalChannel } from "../schemas/schemas_0";
4
+ import { DisassociateManagedNotificationAdditionalChannel$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateManagedNotificationAdditionalChannelCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateManagedNotificationAdditionalChannelCommand extends $Co
11
11
  })
12
12
  .s("Notifications", "DisassociateManagedNotificationAdditionalChannel", {})
13
13
  .n("NotificationsClient", "DisassociateManagedNotificationAdditionalChannelCommand")
14
- .sc(DisassociateManagedNotificationAdditionalChannel)
14
+ .sc(DisassociateManagedNotificationAdditionalChannel$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateOrganizationalUnit } from "../schemas/schemas_0";
4
+ import { DisassociateOrganizationalUnit$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateOrganizationalUnitCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateOrganizationalUnitCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "DisassociateOrganizationalUnit", {})
13
13
  .n("NotificationsClient", "DisassociateOrganizationalUnitCommand")
14
- .sc(DisassociateOrganizationalUnit)
14
+ .sc(DisassociateOrganizationalUnit$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { EnableNotificationsAccessForOrganization } from "../schemas/schemas_0";
4
+ import { EnableNotificationsAccessForOrganization$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EnableNotificationsAccessForOrganizationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class EnableNotificationsAccessForOrganizationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "EnableNotificationsAccessForOrganization", {})
13
13
  .n("NotificationsClient", "EnableNotificationsAccessForOrganizationCommand")
14
- .sc(EnableNotificationsAccessForOrganization)
14
+ .sc(EnableNotificationsAccessForOrganization$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetEventRule } from "../schemas/schemas_0";
4
+ import { GetEventRule$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetEventRuleCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetEventRuleCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetEventRule", {})
13
13
  .n("NotificationsClient", "GetEventRuleCommand")
14
- .sc(GetEventRule)
14
+ .sc(GetEventRule$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetManagedNotificationChildEvent } from "../schemas/schemas_0";
4
+ import { GetManagedNotificationChildEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetManagedNotificationChildEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetManagedNotificationChildEventCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetManagedNotificationChildEvent", {})
13
13
  .n("NotificationsClient", "GetManagedNotificationChildEventCommand")
14
- .sc(GetManagedNotificationChildEvent)
14
+ .sc(GetManagedNotificationChildEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetManagedNotificationConfiguration } from "../schemas/schemas_0";
4
+ import { GetManagedNotificationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetManagedNotificationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetManagedNotificationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetManagedNotificationConfiguration", {})
13
13
  .n("NotificationsClient", "GetManagedNotificationConfigurationCommand")
14
- .sc(GetManagedNotificationConfiguration)
14
+ .sc(GetManagedNotificationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetManagedNotificationEvent } from "../schemas/schemas_0";
4
+ import { GetManagedNotificationEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetManagedNotificationEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetManagedNotificationEventCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetManagedNotificationEvent", {})
13
13
  .n("NotificationsClient", "GetManagedNotificationEventCommand")
14
- .sc(GetManagedNotificationEvent)
14
+ .sc(GetManagedNotificationEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetNotificationConfiguration } from "../schemas/schemas_0";
4
+ import { GetNotificationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNotificationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNotificationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetNotificationConfiguration", {})
13
13
  .n("NotificationsClient", "GetNotificationConfigurationCommand")
14
- .sc(GetNotificationConfiguration)
14
+ .sc(GetNotificationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetNotificationEvent } from "../schemas/schemas_0";
4
+ import { GetNotificationEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNotificationEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNotificationEventCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetNotificationEvent", {})
13
13
  .n("NotificationsClient", "GetNotificationEventCommand")
14
- .sc(GetNotificationEvent)
14
+ .sc(GetNotificationEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetNotificationsAccessForOrganization } from "../schemas/schemas_0";
4
+ import { GetNotificationsAccessForOrganization$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNotificationsAccessForOrganizationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNotificationsAccessForOrganizationCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "GetNotificationsAccessForOrganization", {})
13
13
  .n("NotificationsClient", "GetNotificationsAccessForOrganizationCommand")
14
- .sc(GetNotificationsAccessForOrganization)
14
+ .sc(GetNotificationsAccessForOrganization$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListChannels } from "../schemas/schemas_0";
4
+ import { ListChannels$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListChannelsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListChannelsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListChannels", {})
13
13
  .n("NotificationsClient", "ListChannelsCommand")
14
- .sc(ListChannels)
14
+ .sc(ListChannels$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListEventRules } from "../schemas/schemas_0";
4
+ import { ListEventRules$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListEventRulesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListEventRulesCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListEventRules", {})
13
13
  .n("NotificationsClient", "ListEventRulesCommand")
14
- .sc(ListEventRules)
14
+ .sc(ListEventRules$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListManagedNotificationChannelAssociations } from "../schemas/schemas_0";
4
+ import { ListManagedNotificationChannelAssociations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedNotificationChannelAssociationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedNotificationChannelAssociationsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListManagedNotificationChannelAssociations", {})
13
13
  .n("NotificationsClient", "ListManagedNotificationChannelAssociationsCommand")
14
- .sc(ListManagedNotificationChannelAssociations)
14
+ .sc(ListManagedNotificationChannelAssociations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListManagedNotificationChildEvents } from "../schemas/schemas_0";
4
+ import { ListManagedNotificationChildEvents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedNotificationChildEventsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedNotificationChildEventsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListManagedNotificationChildEvents", {})
13
13
  .n("NotificationsClient", "ListManagedNotificationChildEventsCommand")
14
- .sc(ListManagedNotificationChildEvents)
14
+ .sc(ListManagedNotificationChildEvents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListManagedNotificationConfigurations } from "../schemas/schemas_0";
4
+ import { ListManagedNotificationConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedNotificationConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedNotificationConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListManagedNotificationConfigurations", {})
13
13
  .n("NotificationsClient", "ListManagedNotificationConfigurationsCommand")
14
- .sc(ListManagedNotificationConfigurations)
14
+ .sc(ListManagedNotificationConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListManagedNotificationEvents } from "../schemas/schemas_0";
4
+ import { ListManagedNotificationEvents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedNotificationEventsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedNotificationEventsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListManagedNotificationEvents", {})
13
13
  .n("NotificationsClient", "ListManagedNotificationEventsCommand")
14
- .sc(ListManagedNotificationEvents)
14
+ .sc(ListManagedNotificationEvents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMemberAccounts } from "../schemas/schemas_0";
4
+ import { ListMemberAccounts$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMemberAccountsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMemberAccountsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListMemberAccounts", {})
13
13
  .n("NotificationsClient", "ListMemberAccountsCommand")
14
- .sc(ListMemberAccounts)
14
+ .sc(ListMemberAccounts$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListNotificationConfigurations } from "../schemas/schemas_0";
4
+ import { ListNotificationConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListNotificationConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListNotificationConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListNotificationConfigurations", {})
13
13
  .n("NotificationsClient", "ListNotificationConfigurationsCommand")
14
- .sc(ListNotificationConfigurations)
14
+ .sc(ListNotificationConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListNotificationEvents } from "../schemas/schemas_0";
4
+ import { ListNotificationEvents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListNotificationEventsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListNotificationEventsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListNotificationEvents", {})
13
13
  .n("NotificationsClient", "ListNotificationEventsCommand")
14
- .sc(ListNotificationEvents)
14
+ .sc(ListNotificationEvents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListNotificationHubs } from "../schemas/schemas_0";
4
+ import { ListNotificationHubs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListNotificationHubsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListNotificationHubsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListNotificationHubs", {})
13
13
  .n("NotificationsClient", "ListNotificationHubsCommand")
14
- .sc(ListNotificationHubs)
14
+ .sc(ListNotificationHubs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListOrganizationalUnits } from "../schemas/schemas_0";
4
+ import { ListOrganizationalUnits$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListOrganizationalUnitsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListOrganizationalUnitsCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListOrganizationalUnits", {})
13
13
  .n("NotificationsClient", "ListOrganizationalUnitsCommand")
14
- .sc(ListOrganizationalUnits)
14
+ .sc(ListOrganizationalUnits$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "ListTagsForResource", {})
13
13
  .n("NotificationsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterNotificationHub } from "../schemas/schemas_0";
4
+ import { RegisterNotificationHub$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterNotificationHubCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterNotificationHubCommand extends $Command
11
11
  })
12
12
  .s("Notifications", "RegisterNotificationHub", {})
13
13
  .n("NotificationsClient", "RegisterNotificationHubCommand")
14
- .sc(RegisterNotificationHub)
14
+ .sc(RegisterNotificationHub$)
15
15
  .build() {
16
16
  }