Class AccessKey
- java.lang.Object
-
- software.amazon.awssdk.services.lightsail.model.AccessKey
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<AccessKey.Builder,AccessKey>
@Generated("software.amazon.awssdk:codegen") public final class AccessKey extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AccessKey.Builder,AccessKey>
Describes an access key for an Amazon Lightsail bucket.
Access keys grant full programmatic access to the specified bucket and its objects. You can have a maximum of two access keys per bucket. Use the CreateBucketAccessKey action to create an access key for a specific bucket. For more information about access keys, see Creating access keys for a bucket in Amazon Lightsail in the Amazon Lightsail Developer Guide.
The
secretAccessKeyvalue is returned only in response to theCreateBucketAccessKeyaction. You can get a secret access key only when you first create an access key; you cannot get the secret access key later. If you lose the secret access key, you must create a new access key.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAccessKey.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaccessKeyId()The ID of the access key.static AccessKey.Builderbuilder()InstantcreatedAt()The timestamp when the access key was created.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()AccessKeyLastUsedlastUsed()An object that describes the last time the access key was used.List<SdkField<?>>sdkFields()StringsecretAccessKey()The secret access key used to sign requests.static Class<? extends AccessKey.Builder>serializableBuilderClass()StatusTypestatus()The status of the access key.StringstatusAsString()The status of the access key.AccessKey.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
accessKeyId
public final String accessKeyId()
The ID of the access key.
- Returns:
- The ID of the access key.
-
secretAccessKey
public final String secretAccessKey()
The secret access key used to sign requests.
You should store the secret access key in a safe location. We recommend that you delete the access key if the secret access key is compromised.
- Returns:
- The secret access key used to sign requests.
You should store the secret access key in a safe location. We recommend that you delete the access key if the secret access key is compromised.
-
status
public final StatusType status()
The status of the access key.
A status of
Activemeans that the key is valid, whileInactivemeans it is not.If the service returns an enum value that is not available in the current SDK version,
statuswill returnStatusType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstatusAsString().- Returns:
- The status of the access key.
A status of
Activemeans that the key is valid, whileInactivemeans it is not. - See Also:
StatusType
-
statusAsString
public final String statusAsString()
The status of the access key.
A status of
Activemeans that the key is valid, whileInactivemeans it is not.If the service returns an enum value that is not available in the current SDK version,
statuswill returnStatusType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromstatusAsString().- Returns:
- The status of the access key.
A status of
Activemeans that the key is valid, whileInactivemeans it is not. - See Also:
StatusType
-
createdAt
public final Instant createdAt()
The timestamp when the access key was created.
- Returns:
- The timestamp when the access key was created.
-
lastUsed
public final AccessKeyLastUsed lastUsed()
An object that describes the last time the access key was used.
This object does not include data in the response of a CreateBucketAccessKey action. If the access key has not been used, the
regionandserviceNamevalues areN/A, and thelastUsedDatevalue is null.- Returns:
- An object that describes the last time the access key was used.
This object does not include data in the response of a CreateBucketAccessKey action. If the access key has not been used, the
regionandserviceNamevalues areN/A, and thelastUsedDatevalue is null.
-
toBuilder
public AccessKey.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<AccessKey.Builder,AccessKey>
-
builder
public static AccessKey.Builder builder()
-
serializableBuilderClass
public static Class<? extends AccessKey.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-