Skip to main content
Tab

UploadControlAmazonSettings.AccessKeyID Property

OBSOLETE

Use the AccountManager class API and the AccountName property instead.

Use the AccountManager class API and the AccountName property instead. For more information, refer to the Cloud Storage Account Management topic.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
[Obsolete("Use the AccountManager class API and the AccountName property instead.")]
public string AccessKeyID { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that is the access key ID.

Property Paths

You can access this nested property as listed below:

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

Remarks

Specifies the access key ID of your AWS account. When you access Amazon Web Services programmatically, you verify your identity and the identity of your applications by using an access key. An access key consists of an access key ID and a secret access key. Use the AccessKeyID and UploadControlAmazonSettings.SecretAccessKey properties to provide your application with access to your AWS account.

The access key ID is 20 alpha-numeric characters like AKIAIOSFODNN7EXAMPLE string that uniquely identifies the user who owns the account. This is actually a user name. The access key ID is not secret; it is available to others in some situations.

See Also