Packagecom.amazonaws.auth
Interfacepublic interface AWSCredentials
Implementors BasicAWSCredentials

Language Version : ActionScript 3.0
Product Version : Flex 4
Since : January 24. 2011
Runtime Versions : Flash Player 10.1, AIR 2.5

Provides access to the AWS credentials used for accessing AWS services: AWS access key ID and secret access key. These credentials are used to securely sign requests to AWS services. A basic implementation of this interface is provided in BasicAWSCredentials, but callers are free to provide their own implementation, for example, to load AWS credentials from an encrypted file.

See also

AccessKeys
Understanding Permissions


Public Properties
 PropertyDefined By
  awsAccessKeyId : String
Returns the AWS access key ID for this credentials object (a 20-character, alphanumeric sequence).
AWSCredentials
  awsSecretKey : String
Returns the AWS secret access key for this credentials object (a 40-character sequence).
AWSCredentials
Property Detail
awsAccessKeyIdproperty
awsAccessKeyId:String

Returns the AWS access key ID for this credentials object (a 20-character, alphanumeric sequence).


Implementation
    public function get awsAccessKeyId():String
    public function set awsAccessKeyId(value:String):void
awsSecretKeyproperty 
awsSecretKey:String

Returns the AWS secret access key for this credentials object (a 40-character sequence).


Implementation
    public function get awsSecretKey():String
    public function set awsSecretKey(value:String):void