offer_sets
Creates, updates, deletes, gets or lists an offer_sets resource.
Overview
| Name | offer_sets |
| Type | Resource |
| Id | aws.marketplace_discovery.offer_sets |
Fields
The following fields are returned by SELECT queries:
- get_offer_set
| Name | Datatype | Description |
|---|---|---|
associated_entities | array | The products and offers included in this offer set. |
available_from_time | string (date-time) | The date and time when the offer set became available to the buyer. |
badges | array | Badges indicating special attributes of the offer set, such as private pricing or future dated. |
buyer_notes | string | Detailed information about the offer set that helps buyers understand its purpose and contents. |
catalog | string | The name of the catalog that the offer set belongs to. (pattern: <code>[\w-]+</code>) |
expiration_time | string (date-time) | The date and time when the offer set expires and is no longer available for procurement. |
offer_set_id | string | The unique identifier of the offer set. (pattern: <code>[\w-]+</code>) |
offer_set_name | string | The display name of the offer set. (pattern: <code>.\S.</code>) |
seller_of_record | object | The entity responsible for selling the products under this offer set. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_offer_set | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_offer_set
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
;