Skip to main content
Tab

UploadControlAmazonSettings.BucketName Property

Specifies the name of the bucket that contains a file system available from the upload control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string BucketName { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that is the bucket name.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to BucketName
ASP.NET MVC Extensions UploadControlBinderSettings
.AmazonSettings .BucketName
HtmlEditorFileSaveSettings
.AmazonSettings .BucketName
UploadControlSettings
.AmazonSettings .BucketName
ASP.NET Web Forms Controls ASPxHtmlEditorUploadSettingsBase
.AmazonSettings .BucketName
ASPxUploadControl
.AmazonSettings .BucketName

Remarks

On Amazon S3, all files are stored and organized in buckets that are top level folders, which can contain sub folders and store data (objects). Use the BucketName property to specify the bucket where a file system is contained.

A region where the bucket is stored can be specified by the UploadControlAmazonSettings.Region property. Use the UploadControlAmazonSettings.ObjectKeyPrefix property to specify a prefix that should be added to the name of the uploaded file.

Important

The AmazonFileSystemProvider uses an SSL connection to get data from Amazon. In this mode, periods aren’t supported.

For bucket naming guidelines, see Bucket Restrictions and Limitations.

To learn more, see the Working with Amazon S3 Buckets topic.

See Also