Skip to content

GetProvisionedProductOutputs

Source: src/AWS/ServiceCatalog/GetProvisionedProductOutputs.ts

Runtime binding for servicecatalog:GetProvisionedProductOutputs.

Gets the CloudFormation stack outputs of a provisioned product — how downstream code discovers the endpoints and IDs a launched product created.

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.GetProvisionedProductOutputsHttp).

// init — account-level binding, no resource argument
const getProvisionedProductOutputs = yield* AWS.ServiceCatalog.GetProvisionedProductOutputs();
// runtime
const { Outputs } = yield* getProvisionedProductOutputs({
ProvisionedProductName: "my-vpc",
});