ListApplications
Source:
src/AWS/AppIntegrations/ListApplications.ts
Lists the AppIntegrations applications in the account
(app-integrations:ListApplications).
An account-level operation — bind it with no resource argument. Provide the
ListApplicationsHttp layer on the Function to satisfy the binding.
Listing Applications
Section titled “Listing Applications”// init — no resource argument (provide AWS.AppIntegrations.ListApplicationsHttp on the Function)const listApplications = yield* AWS.AppIntegrations.ListApplications();
// runtime — page through the applications in the accountconst { Applications } = yield* listApplications({});