Skip to content

This is a simple implementation for AWSSDK.S3 which is one of the SDK provided by AWS for .Net applications to handle connections and operations on S3 buckets

Notifications You must be signed in to change notification settings

Ahmed-Adel3/AWSSDK.S3-Demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

➽To use this repo :

☞You just to put your ows AWS Access Key and AWS Secret Access Key in the main method in the console app and try.


➽What is the AWS SDK for .NET?

☞The AWS SDK for .NET makes it easier to build .NET applications that tap into cost-effective, scalable, and reliable AWS services such as Amazon Simple Storage Service (Amazon S3) and Amazon Elastic Compute Cloud (Amazon EC2). The SDK simplifies the use of AWS services by providing a set of libraries that are consistent and familiar for .NET developers.

AWS SDKs

Let's start in this article with the first SDK which is AWSSDK.S3 ...

AWSSDK.S3 is a SDK that helps .Net Developers to use Access Amazon Simple Storage Service (Amazon S3) in their applications to create buckets and store objects.

Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier.

Amazon S3 has a simple web services interface that you can use to store and retrieve any amount of data, at any time, from anywhere on the web. It gives any developer access to the same highly scalable, reliable, fast, and inexpensive data storage infrastructure that Amazon uses to run its own global network of web sites, to read more about it go here.


➽Installing AWSSDK.S3 :

AWSSDK.S3 is installed mainly from Nuget, which is a package management system for the .NET platform. With NuGet, you can install the AWSSDK packages, as well as several other extensions, to your project, and here is [Nuget Website] (https://www.nuget.org/)

There is 3 ways to install AWSSDK.S3 (or any other Nuget Package in General)

1- Using NuGet from the Command prompt or terminal: ➤ Go to the AWSSDK packages on NuGet and determine which packages you need in your project; today we will install , AWSSDK.S3. ➤ Copy the .NET CLI command from that package's webpage, as shown in the following example.

dotnet add package AWSSDK.S3 --version 3.3.110.19

➤ In your project's directory, run that .NET CLI command. NuGet also installs any dependencies, such as AWSSDK.Core (which is the main dependency for all AWS SDKs for .Net ).

2- Using NuGet Package Manager in Visual Studio: ➤ In Solution Explorer, right-click your project, and then choose Manage NuGet Packages from the context menu.

➤ In the left pane of the NuGet Package Manager, choose Browse. You can then use the search box to search for the package you want to install.

➤ The following figure shows installation of the AWSSDK.S3 package.

Nuget Package Manager

3- Using NuGet from the Package Manager Console: ➤ In Visual Studio, choose Tools, NuGet Package Manager, Package Manager Console.

➤ You can install the AWSSDK packages you want from the Package Manager Console by using the Install-Package command. For example, to install AWSSDK.S3, use the following command.

PM> Install-Package AWSSDK.S3

➤ If you need to install an earlier version of a package, use the -Version option and specify the package version you want, as shown in the following example.

PM> Install-Package AWSSDK.S3 -Version 3.3.106.6

About

This is a simple implementation for AWSSDK.S3 which is one of the SDK provided by AWS for .Net applications to handle connections and operations on S3 buckets

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages