AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

ICoreAmazonS3 is not meant to use directly. It defines S3 with basic .NET types and allows other services to be able to use S3 as a runtime dependency. This interface is implemented by the AmazonS3Client defined in the S3 assembly.

Inheritance Hierarchy

Amazon.Runtime.SharedInterfaces.ICoreAmazonS3

Namespace: Amazon.Runtime.SharedInterfaces
Assembly: AWSSDK.Core.dll
Version: 3.x.y.z

Syntax

C#
public interface ICoreAmazonS3

The ICoreAmazonS3 type exposes the following members

Methods

Note:

Asynchronous operations (methods ending with Async) in the table below are for .NET 4.5 or higher. For .NET 3.5 the SDK follows the standard naming convention of BeginMethodName and EndMethodName to indicate asynchronous operations - these method pairs are not shown in the table below.

NameDescription
Public Method Delete(string, string, IDictionary<String, Object>)

Delete the object.

Public Method DeleteAsync(string, string, IDictionary<String, Object>, CancellationToken)

Delete an object.

Public Method Deletes(string, IEnumerable<String>, IDictionary<String, Object>)

Deletes the ojects.

Public Method DeletesAsync(string, IEnumerable<String>, IDictionary<String, Object>, CancellationToken)

Delete an object.

Public Method DoesS3BucketExist(string)

Check to see if the bucket exists.

Public Method DoesS3BucketExistAsync(string)

Check to see if the bucket exists.

Public Method DownloadToFilePath(string, string, string, IDictionary<String, Object>)

Download object to a file path.

Public Method DownloadToFilePathAsync(string, string, string, IDictionary<String, Object>, CancellationToken)

Download an object in S3 to a file path.

Public Method EnsureBucketExists(string)

Check to see if the bucket exists and if it doesn't create the bucket.

Public Method EnsureBucketExistsAsync(string)

Check to see if the bucket exists and if it doesn't create the bucket.

Public Method GeneratePreSignedURL(string, string, DateTime, IDictionary<String, Object>)

Generate a presigned URL.

Public Method GetAllObjectKeys(string, string, IDictionary<String, Object>)

Get all the object keys for the particular bucket and key prefix.

Public Method GetAllObjectKeysAsync(string, string, IDictionary<String, Object>)

Get all the object keys for the particular bucket and key prefix.

Public Method GetObjectStream(string, string, IDictionary<String, Object>)

Get stream for an object.

Public Method GetObjectStreamAsync(string, string, IDictionary<String, Object>, CancellationToken)

Open a stream to an object in S3.

Public Method MakeObjectPublic(string, string, bool)

Set the ACL on the object to public readable.

Public Method MakeObjectPublicAsync(string, string, bool)

Set the ACL on the object to public readable.

Public Method UploadObjectFromFilePath(string, string, string, IDictionary<String, Object>)

Upload an object from a file path.

Public Method UploadObjectFromFilePathAsync(string, string, string, IDictionary<String, Object>, CancellationToken)

Upload an object from a file path.

Public Method UploadObjectFromStream(string, string, Stream, IDictionary<String, Object>)

Upload an object from a stream.

Public Method UploadObjectFromStreamAsync(string, string, Stream, IDictionary<String, Object>, CancellationToken)

Upload an object from a stream.

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5