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.

Exibir arquivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method 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

Method Description
IsSetAccessKeyId ( ) : bool
IsSetCreateDate ( ) : bool
IsSetSecretAccessKey ( ) : bool
IsSetStatus ( ) : bool
IsSetUserName ( ) : bool

Method Details

AccessKey() public method

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

AccessKey() public method

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.
return System