Skip to main content
This guide provides instructions on how to extend Archera’s Channel Partner Private Offer (CPPO) to your customers through AWS Marketplace.

What is Channel Partner Private Offer (CPPO)?

The Channel Partner Private Offer (CPPO) is a mechanism that allows our channel partners to extend our GRI offers to their customers directly through AWS Marketplace. The marketplace safely handles all of the billing and rev-sharing responsibilities between the customer, the partner, and Archera.
To collect any GRI Premiums, CPPOs must be set up.

Requirements for Archera to Extend the CPPO

First, ensure that you are registered as an AWS Marketplace seller so that we can extend a CPPO to your team. AWS Marketplace: Channel Partner Private Offers Once you are listed as a reseller, we can extend the CPPO to your organization - it’s simple as that! Reach out to partnersupport@archera.ai or in the shared Slack workspace to receive our CPPO. You can verify Archera’s CPPO was extended here: https://aws.amazon.com/marketplace/management/partners/incoming

Creating Private Offers from the CPPO to Send to Customers

Once you are listed as a reseller and we have extended the CPPO to you, follow these steps:

Step 1: Create Private Offer

Navigate to AWS Marketplace Management Portal > Offers > Create offer Select the following:
  • Select ISV: Reserved AI
  • Select product: Archera - Subscription
  • Select opportunity: Archera-[Partner]-Subscription-2024
  • Buyer(s): Enter comma separated buyer account IDs
Step 1: Select ISV and Product

Step 2: Configure Offer Information

On the offer information page:
  • Offer name: Enter a descriptive name (e.g., “Archera - Subscription”)
  • Product: Archera - Subscription (pre-filled)
  • Resale authorization name: Archera-[Partner]-Subscription-2024 (pre-filled)
  • Buyer account ID(s): Verify customer account IDs
Step 2: Offer Information

Step 3: Set Pricing and Usage Dimensions

The usage dimension shown will be Guaranteed Reserved Instance Premiums.
Critical: Set the markup to 25%. This brings premiums from wholesale 0.008 to price 0.010.
Higher tier markups (Silver and Gold) are available based on revenue milestones. Contact partnersupport@archera.ai to discuss tier upgrades.
Step 3: Usage Dimensions

Step 4: Set Usage Duration and Offer Expiration

Usage duration:
  • Set the end date 10 years in the future (e.g., if today is 2025/03/05, set to 2035/03/05)
  • This sets the subscription term to 10 years to avoid renewal requirements
Offer expiration date:
  • Set when this specific offer expires (when the customer can no longer accept it)
  • This is typically much shorter than the usage duration (e.g., 30-90 days)
Review all details and click Review offer to finalize. Step 4: Expiration and Review

Programmatic CPPO Creation

You can also create CPPOs programmatically using the AWS Marketplace Catalog API. This is useful for automating offer creation at scale.

Prerequisites

pip install boto3
Configure AWS credentials with marketplace permissions:
aws configure

Step 1: Create Draft CPPO Offer

import boto3
import json

mp_client = boto3.client('marketplace-catalog', region_name='us-east-1')

# Create the changeset for a new CPPO offer
changeset = [
    {
        "ChangeType": "CreateOfferUsingResaleAuthorization",
        "Entity": {
            "Type": "Offer@1.0"
        },
        "DetailsDocument": {
            "ResaleAuthorizationId": "resaleauthz-rgrycwq5y6nuk",  # Archera resale auth ID
            "Name": "Archera - Subscription for Customer ABC"
        }
    }
]

response = mp_client.start_change_set(
    Catalog="AWSMarketplace",
    ChangeSet=changeset,
    ChangeSetName="Create CPPO for Customer ABC"
)

offer_id = response['ChangeSetId']
print(f"Offer creation started: {offer_id}")
Save: offer_id for next steps

Step 2: Set Pricing Markup

# Apply your partner tier markup
changeset = [
    {
        "ChangeType": "UpdateMarkup",
        "Entity": {
            "Type": "Offer@1.0",
            "Identifier": offer_id
        },
        "DetailsDocument": {
            "Percentage": "25.0"  # Bronze tier: 25% markup
        }
    }
]

response = mp_client.start_change_set(
    Catalog="AWSMarketplace",
    ChangeSet=changeset,
    ChangeSetName="Set markup for Customer ABC offer"
)
Higher tier markups (Silver and Gold) are available based on revenue milestones. Contact partnersupport@archera.ai to discuss tier upgrades.

Step 3: Set Usage Duration

# Set the subscription usage duration to 10 years
changeset = [
    {
        "ChangeType": "UpdateValidityTerms",
        "Entity": {
            "Type": "Offer@1.0",
            "Identifier": offer_id
        },
        "DetailsDocument": {
            "Terms": [
                {
                    "Type": "ValidityTerm",
                    "AgreementDuration": "P3650D"  # 10 years = 3650 days
                }
            ]
        }
    }
]

response = mp_client.start_change_set(
    Catalog="AWSMarketplace",
    ChangeSet=changeset,
    ChangeSetName="Set usage duration for Customer ABC offer"
)
Note: Duration uses ISO 8601 format (e.g., P3650D = 3650 days = ~10 years)

Step 4: Add Buyer Accounts and Publish

# Add buyer account IDs and publish the offer
changeset = [
    {
        "ChangeType": "UpdateTargeting",
        "Entity": {
            "Type": "Offer@1.0",
            "Identifier": offer_id
        },
        "DetailsDocument": {
            "PositiveTargeting": {
                "BuyerAccounts": ["123456789012", "987654321098"]
            }
        }
    },
    {
        "ChangeType": "ReleaseOffer",
        "Entity": {
            "Type": "Offer@1.0",
            "Identifier": offer_id
        },
        "DetailsDocument": {}
    }
]

response = mp_client.start_change_set(
    Catalog="AWSMarketplace",
    ChangeSet=changeset,
    ChangeSetName="Publish CPPO for Customer ABC"
)

print(f"Offer published: {offer_id}")

Complete Reference

For more examples and advanced scenarios, see the AWS Marketplace reference code on GitHub.
If you’d like help implementing programmatic CPPO creation, reach out to partnersupport@archera.ai or in the shared Slack workspace.

Important Notes

  • Ensure that you have the necessary permissions to access and manage private offers
  • Double-check that you are selecting the correct offer related to Archera products/services
  • Contact partnersupport@archera.ai if you need assistance with CPPO setup