List subscribed datasets in AWS Marketplace using a Python code

138 Views Asked by At

i'm trying to list the datasets that i subscribed from AWS market place but im not able to do so it's just returning empty set.

import boto3
import os

# Set AWS credentials as environment variables
os.environ['AWS_ACCESS_KEY_ID'] = '*******************'
os.environ['AWS_SECRET_ACCESS_KEY'] = '************************'
os.environ['AWS_REGION'] = 'us-west-1'

# Create a client for the AWS Marketplace Commerce Analytics Service API
client = boto3.client('dataexchange',
                      region_name='us-west-2')

#print(dir(client))


# Use the search_products operation to retrieve a list of products
response = client.list_data_sets(
    #MaxResults=123,
    #NextToken='string',
    Origin='ENTITLED'
)

# Extract the product names from the response and print them to the console

products = response['DataSets']
#for product in products:
print(products)
0

There are 0 best solutions below