Skip to main content

offer_sets

Creates, updates, deletes, gets or lists an offer_sets resource.

Overview

Nameoffer_sets
TypeResource
Idaws.marketplace_discovery.offer_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
associated_entitiesarrayThe products and offers included in this offer set.
available_from_timestring (date-time)The date and time when the offer set became available to the buyer.
badgesarrayBadges indicating special attributes of the offer set, such as private pricing or future dated.
buyer_notesstringDetailed information about the offer set that helps buyers understand its purpose and contents.
catalogstringThe name of the catalog that the offer set belongs to. (pattern: <code>[\w-]+</code>)
expiration_timestring (date-time)The date and time when the offer set expires and is no longer available for procurement.
offer_set_idstringThe unique identifier of the offer set. (pattern: <code>[\w-]+</code>)
offer_set_namestringThe display name of the offer set. (pattern: <code>.\S.</code>)
seller_of_recordobjectThe entity responsible for selling the products under this offer set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_offer_setselectregionProvides details about an offer set, which is a bundle of offers across multiple products. Includes the seller, availability dates, buyer notes, and associated product-offer pairs.

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 an offer set, which is a bundle of offers across multiple products. Includes the seller, availability dates, buyer notes, and associated product-offer pairs.

SELECT
associated_entities,
available_from_time,
badges,
buyer_notes,
catalog,
expiration_time,
offer_set_id,
offer_set_name,
seller_of_record
FROM aws.marketplace_discovery.offer_sets
WHERE region = '{{ region }}' -- required
;