C# Class Amazon.IdentityManagement.Model.AccessKey

The AccessKey data type contains information about an AWS access key.

This data type is used as a response element in the actions CreateAccessKey and ListAccessKeys.

Afficher le fichier Open project: aws/aws-sdk-net Class Usage Examples

Méthodes publiques

Méthode Description
AccessKey ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

AccessKey ( string userName, string accessKeyId, StatusType status, string secretAccessKey ) : System

Instantiates AccessKey with the parameterized properties

Private Methods

Méthode Description
IsSetAccessKeyId ( ) : bool
IsSetCreateDate ( ) : bool
IsSetSecretAccessKey ( ) : bool
IsSetStatus ( ) : bool
IsSetUserName ( ) : bool

Method Details

AccessKey() public méthode

Empty constructor used to set properties independently even when a simple constructor is available
public AccessKey ( ) : System
Résultat System

AccessKey() public méthode

Instantiates AccessKey with the parameterized properties
public AccessKey ( string userName, string accessKeyId, StatusType status, string secretAccessKey ) : System
userName string The name of the IAM user that the access key is associated with.
accessKeyId string The ID for this access key.
status StatusType The status of the access key. Active means the key is valid for API calls, while Inactive means it is not.
secretAccessKey string The secret key used to sign requests.
Résultat System