ToCopyableBuilder<AccessKey.Builder,AccessKey>
@Generated("software.amazon.awssdk:codegen") public class AccessKey extends Object implements ToCopyableBuilder<AccessKey.Builder,AccessKey>
Contains information about an AWS access key.
This data type is used as a response element in the CreateAccessKey and ListAccessKeys actions.
The SecretAccessKey
value is returned only in response to CreateAccessKey. You can get a secret
access key only when you first create an access key; you cannot recover the secret access key later. If you lose a
secret access key, you must create a new access key.
Modifier and Type | Class | Description |
---|---|---|
static interface |
AccessKey.Builder |
Modifier and Type | Method | Description |
---|---|---|
String |
accessKeyId() |
The ID for this access key.
|
static AccessKey.Builder |
builder() |
|
Date |
createDate() |
The date when the access key was created.
|
boolean |
equals(Object obj) |
|
int |
hashCode() |
|
String |
secretAccessKey() |
The secret key used to sign requests.
|
static Class<? extends AccessKey.Builder> |
serializableBuilderClass() |
|
String |
status() |
The status of the access key.
|
AccessKey.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
|
String |
userName() |
The name of the IAM user that the access key is associated with.
|
public String userName()
The name of the IAM user that the access key is associated with.
public String accessKeyId()
The ID for this access key.
public String status()
The status of the access key. Active
means the key is valid for API calls, while
Inactive
means it is not.
Active
means the key is valid for API calls, while
Inactive
means it is not.StatusType
public String secretAccessKey()
The secret key used to sign requests.
public Date createDate()
The date when the access key was created.
public AccessKey.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<AccessKey.Builder,AccessKey>
public static AccessKey.Builder builder()
public static Class<? extends AccessKey.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.