DescribeConnections
Source:
src/AWS/DMS/DescribeConnections.ts
Runtime binding for dms:DescribeConnections.
Bind this operation (account-level) to poll the results of connection
tests started with TestConnection — filter by endpoint-arn or
replication-instance-arn. Provide the implementation with
Effect.provide(AWS.DMS.DescribeConnectionsHttp).
Polling Connection Tests
Section titled “Polling Connection Tests”// init — account-level, no target resourceconst describeConnections = yield* AWS.DMS.DescribeConnections();
// runtimeconst { Connections } = yield* describeConnections({ Filters: [{ Name: "endpoint-arn", Values: [endpointArn] }],});// Connections[0].Status: "testing" | "successful" | "failed"