پرش به مطلب اصلی

احراز هویت

برای استفاده از فضای ابری، شما نیازمند Access Key،Secret Key و آدرس اتصال (Endpoint URL) هستید.

شیوه‌ دریافت کلید‌های احراز هویت

در پیشخان سرویس فضای ابری، می‌توانید Access key و Secret Key مربوط به حساب کاربری خود را نیز مشاهده کنید.

برای احراز هویت می‌توانید با قرار دادن Access Key و Secret Key در قطعه کد زیر این فرآیند را انجام دهید.

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX - License - Identifier: Apache - 2.0

using Amazon.S3;
using Amazon.S3.Model;
using System;
using System.Threading.Tasks;

namespace CreateBucket
{
public class CreateBucket
{
// This example shows how to use Amazon Simple Storage Service (Amazon S3)
// to create a new Amazon S3 bucket. The examples uses AWS SDK for .NET 3.5 and
// .NET 5.0.

private static IAmazonS3 _s3Client;

static async Task Main()
{
var awsCredentials = new Amazon.Runtime.BasicAWSCredentials("<ACCESS-KEY>", "<SECRET-KEY>");
var config = new AmazonS3Config { ServiceURL = "<ENDPOINT>" };
_s3Client = new AmazonS3Client(awsCredentials, config);

// Continue your code here
}
}
}