You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::IAM::AccessKey
- Inherits:
-
Resources::Resource
- Object
- Resources::Resource
- Aws::IAM::AccessKey
- Defined in:
- (unknown)
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
readonly
The ID for this access key.
-
#create_date ⇒ Time
readonly
The date when the access key was created.
-
#id ⇒ String
readonly
-
#status ⇒ String
readonly
The status of the access key.
-
#user_name ⇒ String
readonly
Attributes inherited from Resources::Resource
Instance Method Summary collapse
-
#activate ⇒ Struct
Changes the status of the specified access key from Active to Inactive, or vice versa.
-
#deactivate ⇒ Struct
Changes the status of the specified access key from Active to Inactive, or vice versa.
-
#delete ⇒ Struct
Deletes the access key pair associated with the specified IAM user.
If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request.
-
#initialize ⇒ Object
constructor
-
#user ⇒ User
Methods inherited from Resources::Resource
add_data_attribute, add_identifier, #data, data_attributes, #data_loaded?, identifiers, #load, #wait_until
Methods included from Resources::OperationMethods
#add_batch_operation, #add_operation, #batch_operation, #batch_operation_names, #batch_operations, #operation, #operation_names, #operations
Constructor Details
#initialize(user_name, id, options = {}) ⇒ Object #initialize(options = {}) ⇒ Object
Instance Attribute Details
#access_key_id ⇒ String (readonly)
The ID for this access key.
#create_date ⇒ Time (readonly)
The date when the access key was created.
#id ⇒ String (readonly)
#status ⇒ String (readonly)
The status of the access key. Active
means that the key is valid for
API calls; Inactive
means it is not.
Possible values:
- Active
- Inactive
#user_name ⇒ String (readonly)
Instance Method Details
#activate ⇒ Struct
Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow.
If the UserName
is not specified, the user name is determined implicitly based on the AWS access key ID used to sign the request. This operation works for access keys under the AWS account. Consequently, you can use this operation to manage AWS account root user credentials even if the AWS account has no associated users.
For information about rotating keys, see Managing Keys and Certificates in the IAM User Guide.
#deactivate ⇒ Struct
Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow.
If the UserName
is not specified, the user name is determined implicitly based on the AWS access key ID used to sign the request. This operation works for access keys under the AWS account. Consequently, you can use this operation to manage AWS account root user credentials even if the AWS account has no associated users.
For information about rotating keys, see Managing Keys and Certificates in the IAM User Guide.
#delete ⇒ Struct
Deletes the access key pair associated with the specified IAM user.
If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. This operation works for access keys under the AWS account. Consequently, you can use this operation to manage AWS account root user credentials even if the AWS account has no associated users.