AWS SDK for .NET
In this article:
AWS SDK for .NET#
S3 access using aws-sdk-net#
To connect AWS SDK for .NET (AWSSDK.core version 3.7.400.53 or later) to K2 Cloud object storage, follow the next steps:
Get API access settings in the cloud management console. Click the user login in the top right corner, select Profile Get API access settings. In the downloaded file, specify your project ID for the*C2_PROJECT* variable.
Add the downloaded settings to the environment variables:
For Windows, convert the settings file and export the environment variables:
C:\> c2rc-convert path\to\c2rc.sh path\to\c2rc.bat C:\> call path\to\c2rc.bat
To convert settings, use c2rc-convert utility from c2-client package.
For Linux, export the environment variables:
source path/to/c2rc.sh
Create a .NET project and add packages AWSSDK.Core and AWSSDK.S3 from the aws-sdk documentation to it:
dotnet new console --name awsdotnets3 && cd awsdotnets3 dotnet add package AWSSDK.Core dotnet add package AWSSDK.S3
Go to the project directory and create
Program.csfile with the following block:Program.cs// Get the value of the S3_URL environment variable string? serviceUrl = Environment.GetEnvironmentVariable("S3_URL"); // Check whether the S3_URL environment variable exists if (string.IsNullOrWhiteSpace(serviceUrl)) { Console.WriteLine("Environment variable S3_URL is not set or empty."); return; } // Configure S3 client var config = new AmazonS3Config { SignatureVersion = "2", // Use Signature Version 2 ServiceURL = serviceUrl // S3_URL }; client = new AmazonS3Client(config);
Build and run the project as follows:
dotnet build dotnet run