canonical: https://jentic.com/apis/amazonaws.com/aws-service-catalog-appregistry

# AWS Service Catalog App Registry

Jentic publishes the only available OpenAPI specification for AWS Service Catalog App Registry, keeping it validated and agent-ready. App Registry gives organisations a structured repository of their applications, the AWS resources that compose them, and the metadata needed to operate and govern them. Agents can create applications, attach attribute groups that carry custom JSON schemas, associate or disassociate AWS resources, and query the resulting application graph. The 24 operations cover applications, attribute groups, resource associations, sync, and tag management.

## For AI agents

Catalogue applications, attach metadata attribute groups, and bind AWS resources to applications in App Registry. Agents can register applications and discover all resources tied to a given application.

## Scope

Does not provision resources, manage IaC templates, or share resources across accounts - use for cataloguing applications and attaching metadata only.

## Capabilities

- Register applications in App Registry with CreateApplication and update them via UpdateApplication
- Attach reusable JSON metadata via attribute groups using CreateAttributeGroup and AssociateAttributeGroup
- Bind AWS resources (CloudFormation stacks, resource groups) to an application with AssociateResource
- Query an application's associated resources, attribute groups, and tags with ListAssociated* operations
- Sync resource state into App Registry on demand with SyncResource
- Tag and untag applications and attribute groups for billing and governance

## Use cases

### Application Inventory for a Multi-Service System

Platform teams use App Registry to declare each business application as a first-class entity, then attach the CloudFormation stacks, EC2 instances, and other resources that implement it. Once associated, ListAssociatedResources gives a complete view of which AWS resources belong to which application - useful for cost allocation, change management, and runbooks.

Example prompt: CreateApplication named 'checkout-service', then AssociateResource to bind two CloudFormation stack ARNs to it, and call ListAssociatedResources to verify.

### Standardised Application Metadata via Attribute Groups

Governance teams define attribute groups that capture required metadata (tier, owner, data classification, compliance scope) and attach them to many applications. Because attribute groups carry a JSON schema, downstream automation can rely on the shape of the data without per-team variation.

Example prompt: CreateAttributeGroup with a JSON schema for {tier, owner, compliance}, then AssociateAttributeGroup to bind it to applications 'checkout-service' and 'orders-service'.

### Resource Reconciliation Across CloudFormation Updates

When CloudFormation stacks change, App Registry can be kept in sync so that the application's resource list reflects reality. SyncResource refreshes the latest state for a specific associated resource, and ListAssociatedResources reveals drift between declared and actual membership.

Example prompt: Call SyncResource for resourceType=CFN_STACK and resource=<stack-arn> on application 'orders-service', then ListAssociatedResources to confirm the refreshed status.

### AI Agent Application Discovery via Jentic

AI agents using Jentic can answer questions like 'which resources belong to the checkout application?' by calling App Registry through Jentic. The agent searches by intent, loads the operation schema, and executes List operations against the agent's AWS credentials in the vault.

Example prompt: Search Jentic for 'list resources associated with an appregistry application', execute GetApplication for 'checkout-service', then call the associated-resources listing to return the bound CloudFormation stacks.

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /applications | Create an App Registry application |
| GET | /applications | List all applications in the account |
| PATCH | /applications/{application} | Update an application's name or description |
| PUT | /applications/{application}/attribute-groups/{attributeGroup} | Attach an attribute group to an application |
| PUT | /applications/{application}/resources/{resourceType}/{resource} | Associate an AWS resource with an application |
| GET | /applications/{application}/resources/{resourceType}/{resource} | Get details for an associated resource |
| POST | /attribute-groups | Create a reusable attribute group |

## Key resources

- **Applications** — First-class application records; CreateApplication, GetApplication, UpdateApplication, DeleteApplication, ListApplications
- **Attribute Groups** — Reusable JSON metadata schemas attached to applications; CreateAttributeGroup, AssociateAttributeGroup
- **Resource Associations** — Bindings between applications and AWS resources; AssociateResource, DisassociateResource, GetAssociatedResource
- **Tags** — TagResource and UntagResource for billing and governance metadata

## Why Jentic

- **Setup:** Wiring AWS Service Catalog App Registry by hand means implementing AWS SigV4 signing, resolving the servicecatalog-appregistry regional host, and mapping resource types like CFN_STACK into the association path yourself. Through Jentic you install once, import AWS Service Catalog App Registry from the API Directory, store your AWS access key and secret once, and your agent calls it.
- **Permission scoping:** App Registry puts the application identifier in the URL path (/applications/{application}/resources/{resourceType}/{resource}), so a rule can pin your agent to one application: it can read and list the resources bound to that application and nothing else. You choose the operations it may call, so DeleteApplication or DisassociateResource are not included unless you add them.
- **Credential handling:** Your AWS access key and secret are stored once, encrypted, by your own Jentic One instance and each request is signed with SigV4 at execution time. They never enter the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'register an application in App Registry' or 'list resources associated with an application', and Jentic returns the matching operation like CreateApplication or GetAssociatedResource with its input schema so the agent calls it without reading the AWS reference.

## Related APIs

- **AWS Resource Groups** — Tag-based resource grouping that App Registry references for resource membership
- **AWS Resource Groups Tagging API** — Bulk tag management across AWS resources that App Registry references
- **AWS Resource Access Manager** — Cross-account resource sharing; targets sharing rather than per-application cataloguing

## FAQ

### Why is there no official OpenAPI spec for AWS Service Catalog App Registry?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AWS Service Catalog App Registry via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

### What authentication does the AWS Service Catalog App Registry use?

App Registry uses AWS Signature Version 4 with IAM credentials and permissions on the servicecatalog:* and resource-groups:* actions. Through Jentic, the AWS access key and secret are stored encrypted in the vault and signed into each request - agents never see the raw credentials.

### Can I associate any AWS resource with an App Registry application?

App Registry supports specific resource types - CloudFormation stacks (CFN_STACK) and AWS Resource Groups (RESOURCE_TAG_VALUE) - bound via AssociateResource at /applications/{application}/resources/{resourceType}/{resource}. Other AWS services are tracked indirectly through the CloudFormation stacks that create them.

### What are the rate limits for the AWS Service Catalog App Registry?

App Registry uses standard AWS API throttling - most operations are limited to roughly 5-10 requests per second per account per region with brief burst capacity. Throttled requests return a ThrottlingException; clients should retry with exponential backoff.

### How do I list every resource bound to an application through Jentic?

Through Jentic, search for 'list associated resources appregistry', load the operation schema, and execute against /applications/{application} with the application name. Jentic returns the resource list along with each association's lastSyncTime.

### Is AWS Service Catalog App Registry free?

App Registry itself is offered at no additional charge - you pay only for the underlying resources you catalogue. Standard AWS Service Catalog product pricing applies if you also use Service Catalog provisioned products.

### Can I limit what my agent is allowed to do with the AWS Service Catalog App Registry API?

Yes. Because you run Jentic One yourself, your own rules decide which App Registry operations and AWS credentials the agent may use. App Registry puts the application identifier in the URL path (/applications/{application}/resources/{resourceType}/{resource}), so you can pin the agent to a single application and let it only read and list the resources and attribute groups bound to that application. You choose the operations it may call, so write actions like DeleteApplication or DisassociateResource are excluded unless you explicitly add them.
