Skip to main content

listings

Creates, updates, deletes, gets or lists a listings resource.

Overview

Namelistings
TypeResource
Idaws.marketplace_discovery.listings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
associated_entitiesarrayThe products and offers associated with this listing. Each entity contains product and offer information.
badgesarrayBadges indicating special attributes of the listing, such as free tier eligibility, free trial availability, or Quick Launch support.
catalogstringThe name of the catalog that the listing belongs to. (pattern: <code>[\w-]+</code>)
categoriesarrayThe categories used to classify this listing into logical groups.
fulfillment_option_summariesarrayA summary of fulfillment options available for deploying or accessing the listing, such as AMI, SaaS, or Container.
highlightsarrayA list of key features that the listing offers to customers.
integration_guidestringOptional guidance explaining how to use data in this listing. Primarily defines how to integrate with a multi-product listing.
listing_idstringThe unique identifier of the listing. (pattern: <code>[\w-]+</code>)
listing_namestringThe human-readable display name of the listing. (pattern: <code>.\S.</code>)
logo_thumbnail_urlstringThe URL of the logo thumbnail image for the listing. (pattern: <code>https?:​//.*</code>)
long_descriptionstringA detailed description of what the listing offers, in paragraph format. (pattern: <code>.\S.</code>)
pricing_modelsarrayThe pricing models for offers associated with this listing, such as usage-based, contract, BYOL, or free.
pricing_unitsarrayThe pricing units that define the billing dimensions for offers associated with this listing, such as users, hosts, or data.
promotional_mediaarrayEmbedded promotional media provided by the creator of the product, such as images and videos.
publisherobjectThe entity who created and published the listing.
resourcesarrayResources that provide further information about using the product or requesting support, such as documentation links, support contacts, and usage instructions.
review_summaryobjectA summary of customer reviews available for the listing, including average rating and total review count by source.
seller_engagementsarrayEngagement options available to potential buyers, such as requesting a private offer or requesting a demo.
short_descriptionstringA 1–3 sentence summary describing the key aspects of the listing. (pattern: <code>.\S.</code>)
use_casesarrayUse cases associated with the listing, describing scenarios where the product can be applied.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_listingselectregionProvides details about a listing, such as descriptions, badges, categories, pricing model summaries, reviews, and associated products and offers.
search_listingsselectregionReturns a list of product listings based on search criteria and filters. You can search by keyword, filter by category, pricing model, fulfillment type, and other attributes, and sort results by relevance or customer rating.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Provides details about a listing, such as descriptions, badges, categories, pricing model summaries, reviews, and associated products and offers.

SELECT
associated_entities,
badges,
catalog,
categories,
fulfillment_option_summaries,
highlights,
integration_guide,
listing_id,
listing_name,
logo_thumbnail_url,
long_description,
pricing_models,
pricing_units,
promotional_media,
publisher,
resources,
review_summary,
seller_engagements,
short_description,
use_cases
FROM aws.marketplace_discovery.listings
WHERE region = '{{ region }}' -- required
;