DescribeRecord
Source:
src/AWS/ServiceCatalog/DescribeRecord.ts
Runtime binding for servicecatalog:DescribeRecord.
Gets a provisioning record — the result of a provision, update, or terminate request. Poll it until the record status is SUCCEEDED or FAILED.
Account-level operation — which products the caller can see and act on
is governed by portfolio principal associations, so the binding takes no
resource argument. Provide the implementation with
Effect.provide(AWS.ServiceCatalog.DescribeRecordHttp).
Tracking Provisioned Products
Section titled “Tracking Provisioned Products”// init — account-level binding, no resource argumentconst describeRecord = yield* AWS.ServiceCatalog.DescribeRecord();
// runtimeconst { RecordDetail } = yield* describeRecord({ Id: "rec-abc123",});