Class AccountInfo
- Namespace
- Kentico.Xperience.AmazonStorage
- Assembly
- Kentico.Xperience.AmazonStorage.dll
Represents Account of Amazon web services.
public class AccountInfo
- Inheritance
-
objectAccountInfo
- Extension Methods
Constructors
AccountInfo(string, string, string)
Initializes a new instance of the AccountInfo class using the credentials and bucket name provided.
public AccountInfo(string accessKeyID, string accessKey, string bucketName)
Parameters
accessKeyIDstringAccess key ID.
accessKeystringAccess secret key.
bucketNamestringBucket name.
- See Also
Properties
AccessKey
Gets or sets secret access key.
public string AccessKey { get; set; }
Property Value
- string
AccessKeyID
Gets or sets access key id.
public string AccessKeyID { get; set; }
Property Value
- string
BucketName
Sets or gets bucket name.
public string BucketName { get; set; }
Property Value
- string
Current
Returns instance of Account Info.
public static AccountInfo Current { get; }
Property Value
S3Client
Gets instance of AmazonS3 class (main class providing operations with storage).
public AmazonS3Client S3Client { get; }
Property Value
- AmazonS3Client