Socket
Socket
Sign inDemoInstall

@aws-sdk/middleware-bucket-endpoint

Package Overview
Dependencies
9
Maintainers
5
Versions
182
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aws-sdk/middleware-bucket-endpoint

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


Version published
Weekly downloads
5.3M
decreased by-2.93%
Maintainers
5
Install size
594 kB
Created
Weekly downloads
 

Package description

What is @aws-sdk/middleware-bucket-endpoint?

The @aws-sdk/middleware-bucket-endpoint package is part of the AWS SDK for JavaScript (v3). It provides middleware that automatically configures the endpoint for S3 bucket operations, allowing users to interact with different S3 bucket configurations and regions more seamlessly. This package is particularly useful for managing requests to S3 buckets by modifying the endpoint based on the operation and the provided bucket parameters.

What are @aws-sdk/middleware-bucket-endpoint's main functionalities?

Automatic Endpoint Resolution

This code sample demonstrates how to integrate the bucketEndpointMiddleware into an S3 client instance. It automatically resolves the correct endpoint for the bucket specified in the command.

import { S3Client, GetObjectCommand } from '@aws-sdk/client-s3';
import { bucketEndpointMiddleware } from '@aws-sdk/middleware-bucket-endpoint';

const client = new S3Client({
  region: 'us-west-2',
  middlewareStack: {
    add: (middleware) => middleware(bucketEndpointMiddleware())
  }
});

const command = new GetObjectCommand({ Bucket: 'example-bucket', Key: 'example-object' });
client.send(command);

Other packages similar to @aws-sdk/middleware-bucket-endpoint

Changelog

Source

3.460.0 (2023-11-28)

Features

  • client-elasticache: Launching Amazon ElastiCache Serverless that enables you to create a cache in under a minute without any capacity management. ElastiCache Serverless monitors the cache's memory, CPU, and network usage and scales both vertically and horizontally to support your application's requirements. (93b77fa)
  • clients: update client endpoints as of 2023-11-28 (ac91564)

Readme

Source

@aws-sdk/middleware-bucket-endpoint

NPM version NPM downloads

FAQs

Last updated on 28 Nov 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc