You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@aws-sdk/smithy-client

Package Overview
Dependencies
Maintainers
5
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/smithy-client

[![NPM version](https://img.shields.io/npm/v/@aws-sdk/smithy-client/latest.svg)](https://www.npmjs.com/package/@aws-sdk/smithy-client) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/smithy-client.svg)](https://www.npmjs.com/package/@aws-sdk/smit


Version published
Weekly downloads
3.2M
decreased by-20.37%
Maintainers
5
Install size
765 kB
Created
Weekly downloads
 

Package description

What is @aws-sdk/smithy-client?

@aws-sdk/smithy-client is a foundational package used in the AWS SDK for JavaScript. It provides the core client and command abstractions that are used to build service clients for AWS services. This package is part of the modular AWS SDK for JavaScript (v3), which allows developers to import only the specific AWS services they need.

What are @aws-sdk/smithy-client's main functionalities?

Client Creation

This feature allows you to create a custom client by extending the base Client class provided by the @aws-sdk/smithy-client package. This is useful for creating service-specific clients.

const { Client } = require('@aws-sdk/smithy-client');

class MyServiceClient extends Client {
  constructor(config) {
    super(config);
  }
}

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

Command Creation

This feature allows you to create custom commands by extending the base Command class. Commands encapsulate the input and middleware logic for making API calls.

const { Command } = require('@aws-sdk/smithy-client');

class MyCommand extends Command {
  constructor(input) {
    super();
    this.input = input;
  }

  resolveMiddleware(clientStack, configuration, options) {
    // Middleware logic here
  }
}

const command = new MyCommand({ key: 'value' });

Middleware Stack

This feature allows you to create and manage a stack of middleware functions that can be used to modify the behavior of commands and clients. Middleware can be added at various stages of the request lifecycle.

const { MiddlewareStack } = require('@aws-sdk/smithy-client');

const stack = new MiddlewareStack();
stack.add((next, context) => async (args) => {
  console.log('Before request');
  const result = await next(args);
  console.log('After request');
  return result;
}, {
  step: 'initialize',
  name: 'loggingMiddleware',
});

Other packages similar to @aws-sdk/smithy-client

Changelog

Source

3.374.0 (2023-07-20)

Bug Fixes

  • packages: fix migrated package imports (#4990) (d800f78)

Features

  • client-codecatalyst: This release adds support for updating and deleting spaces and projects in Amazon CodeCatalyst. It also adds support for creating, getting, and deleting source repositories in CodeCatalyst projects. (05a9f89)
  • client-connectcases: This release adds the ability to assign a case to a queue or user. (f47d6f4)
  • client-lex-models-v2: This release updates type for Channel field in SessionSpecification and UtteranceSpecification (1f77d0a)
  • client-route53resolver: This release adds support for Route 53 On Outposts, a new feature that allows customers to run Route 53 Resolver and Resolver endpoints locally on their Outposts. (8acc64c)
  • client-s3: Improve performance of S3 clients by simplifying and optimizing endpoint resolution. (72eb598)
  • client-sagemaker-featurestore-runtime: Cross account support for SageMaker Feature Store (b0593ab)
  • client-sagemaker: Cross account support for SageMaker Feature Store (e4918c1)
  • client-securitylake: Adding support for Tags on Create and Resource Tagging API. (596636d)
  • client-transcribe: Added API argument --toxicity-detection to startTranscriptionJob API, which allows users to view toxicity scores of submitted audio. (9e7552a)
  • smithy-client: update client defaults provider (830cb06)

Readme

Source

@aws-sdk/smithy-client

NPM version NPM downloads

An internal package

Usage

You probably shouldn't, at least directly.

FAQs

Package last updated on 20 Jul 2023

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc