New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aws-sdk/client-marketplace-entitlement-service

Package Overview
Dependencies
Maintainers
5
Versions
434
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-marketplace-entitlement-service

AWS SDK for JavaScript Marketplace Entitlement Service Client for Node.js, Browser and React Native

  • 3.738.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
175K
increased by22.96%
Maintainers
5
Weekly downloads
 
Created

What is @aws-sdk/client-marketplace-entitlement-service?

@aws-sdk/client-marketplace-entitlement-service is an AWS SDK for JavaScript package that allows developers to interact with the AWS Marketplace Entitlement Service. This service helps in managing and retrieving entitlement information for AWS Marketplace products.

What are @aws-sdk/client-marketplace-entitlement-service's main functionalities?

GetEntitlements

The GetEntitlements feature allows you to retrieve entitlement values for a given product. This is useful for checking what entitlements a customer has for a specific product.

const { MarketplaceEntitlementServiceClient, GetEntitlementsCommand } = require('@aws-sdk/client-marketplace-entitlement-service');

const client = new MarketplaceEntitlementServiceClient({ region: 'us-west-2' });

const params = {
  ProductCode: 'your-product-code',
  Filter: {
    CUSTOMER_IDENTIFIER: ['customer-identifier']
  }
};

const run = async () => {
  try {
    const data = await client.send(new GetEntitlementsCommand(params));
    console.log(data);
  } catch (err) {
    console.error(err);
  }
};

run();

Other packages similar to @aws-sdk/client-marketplace-entitlement-service

FAQs

Package last updated on 29 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc