C# Класс 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.

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
IsSetAccessKeyId ( ) : bool
IsSetCreateDate ( ) : bool
IsSetSecretAccessKey ( ) : bool
IsSetStatus ( ) : bool
IsSetUserName ( ) : bool

Описание методов

AccessKey() публичный Метод

Empty constructor used to set properties independently even when a simple constructor is available
public AccessKey ( ) : System
Результат System

AccessKey() публичный Метод

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.
Результат System