ListRepositoryLinks
Source:
src/AWS/CodeConnections/ListRepositoryLinks.ts
Runtime binding for codeconnections:ListRepositoryLinks.
An account-level operation (no repository-link argument) that enumerates
the account’s repository links — the Git-sync attachments between a
connection and a specific provider repository. Useful for sync dashboards
that discover which repositories are wired up before drilling into their
sync status. Provide the implementation with
Effect.provide(AWS.CodeConnections.ListRepositoryLinksHttp).
Monitoring Git Sync
Section titled “Monitoring Git Sync”// init — account-level binding takes no resourceconst listRepositoryLinks = yield* AWS.CodeConnections.ListRepositoryLinks();
// runtimeconst result = yield* listRepositoryLinks();const repos = (result.RepositoryLinks ?? []).map((l) => l.RepositoryName);