Skip to content

ListSyncConfigurations

Source: src/AWS/CodeConnections/ListSyncConfigurations.ts

Runtime binding for codeconnections:ListSyncConfigurations.

Bind this operation to a RepositoryLink to enumerate the sync configurations attached to the link — which AWS resources Git sync keeps converged from the linked repository. Provide the implementation with Effect.provide(AWS.CodeConnections.ListSyncConfigurationsHttp).

// init — bind the operation to the repository link
const listSyncConfigurations =
yield* AWS.CodeConnections.ListSyncConfigurations(link);
// runtime
const { SyncConfigurations } =
yield* listSyncConfigurations({ SyncType: "CFN_STACK_SYNC" });