Class AccessKeyMetadata
- java.lang.Object
-
- software.amazon.awssdk.services.iam.model.AccessKeyMetadata
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<AccessKeyMetadata.Builder,AccessKeyMetadata>
@Generated("software.amazon.awssdk:codegen") public final class AccessKeyMetadata extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AccessKeyMetadata.Builder,AccessKeyMetadata>
Contains information about an Amazon Web Services access key, without its secret key.
This data type is used as a response element in the ListAccessKeys operation.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAccessKeyMetadata.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaccessKeyId()The ID for this access key.static AccessKeyMetadata.Builderbuilder()InstantcreateDate()The date when the access key was created.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends AccessKeyMetadata.Builder>serializableBuilderClass()StatusTypestatus()The status of the access key.StringstatusAsString()The status of the access key.AccessKeyMetadata.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringuserName()The name of the IAM user that the key is associated with.-
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
-
userName
public final String userName()
The name of the IAM user that the key is associated with.
- Returns:
- The name of the IAM user that the key is associated with.
-
accessKeyId
public final String accessKeyId()
The ID for this access key.
- Returns:
- The ID for this access key.
-
status
public final StatusType status()
The status of the access key.
Activemeans that the key is valid for API calls;Inactivemeans 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.
Activemeans that the key is valid for API calls;Inactivemeans it is not. - See Also:
StatusType
-
statusAsString
public final String statusAsString()
The status of the access key.
Activemeans that the key is valid for API calls;Inactivemeans 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.
Activemeans that the key is valid for API calls;Inactivemeans it is not. - See Also:
StatusType
-
createDate
public final Instant createDate()
The date when the access key was created.
- Returns:
- The date when the access key was created.
-
toBuilder
public AccessKeyMetadata.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<AccessKeyMetadata.Builder,AccessKeyMetadata>
-
builder
public static AccessKeyMetadata.Builder builder()
-
serializableBuilderClass
public static Class<? extends AccessKeyMetadata.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.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-