AWS Marketplace Resource Policies API

The Resource Policies API from AWS Marketplace — 3 operation(s) for resource policies.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aws-marketplace-resource-policies-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aws-marketplace-resource-policies-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: AWS Marketplace Catalog Change Sets Resource Policies API
  version: '2018-09-17'
  description: 'The AWS Marketplace Catalog API lets approved sellers programmatically

    view and update their AWS Marketplace product entities and change sets.

    All operations are REST POST requests to named paths, with the JSON

    request body containing input parameters. Requests are signed with AWS

    Signature Version 4 (SigV4).


    See https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html

    '
servers:
- url: https://catalog.marketplace.{region}.amazonaws.com
  description: AWS Marketplace Catalog regional endpoint
  variables:
    region:
      default: us-east-1
security:
- SigV4: []
tags:
- name: Resource Policies
paths:
  /GetResourcePolicy:
    get:
      tags:
      - Resource Policies
      operationId: GetResourcePolicy
      summary: Get a resource policy
      parameters:
      - name: resourceArn
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/OK'
  /PutResourcePolicy:
    post:
      tags:
      - Resource Policies
      operationId: PutResourcePolicy
      summary: Attach a resource policy
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
  /DeleteResourcePolicy:
    delete:
      tags:
      - Resource Policies
      operationId: DeleteResourcePolicy
      summary: Delete a resource policy
      parameters:
      - name: resourceArn
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/OK'
components:
  responses:
    OK:
      description: Successful response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  requestBodies:
    JsonBody:
      required: true
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  securitySchemes:
    SigV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 signed Authorization header