GetAttributeGroup
Source:
src/AWS/AppRegistry/GetAttributeGroup.ts
Runtime binding for servicecatalog:GetAttributeGroup.
Reads the bound attribute group’s user-defined JSON metadata (the
attributes string) along with its description and tags — the primary
way for a running function to consume AppRegistry metadata. Provide the
implementation with Effect.provide(AWS.AppRegistry.GetAttributeGroupHttp).
Reading Attribute Group Metadata
Section titled “Reading Attribute Group Metadata”// init — bind the operation to the attribute groupconst getAttributeGroup = yield* AWS.AppRegistry.GetAttributeGroup(group);
// runtimeconst details = yield* getAttributeGroup();const attributes = JSON.parse(details.attributes ?? "{}");