libZSservicesZSamazonka-iamZSamazonka-iam
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.IAM.Types.SSHPublicKeyMetadata

Description

 
Synopsis

Documentation

data SSHPublicKeyMetadata Source #

Contains information about an SSH public key, without the key's body or fingerprint.

This data type is used as a response element in the ListSSHPublicKeys operation.

See: newSSHPublicKeyMetadata smart constructor.

Constructors

SSHPublicKeyMetadata' 

Fields

Instances

Instances details
Eq SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

Read SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

Show SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

Generic SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

Associated Types

type Rep SSHPublicKeyMetadata :: Type -> Type #

NFData SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

Methods

rnf :: SSHPublicKeyMetadata -> () #

Hashable SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

FromXML SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

type Rep SSHPublicKeyMetadata Source # 
Instance details

Defined in Amazonka.IAM.Types.SSHPublicKeyMetadata

type Rep SSHPublicKeyMetadata = D1 ('MetaData "SSHPublicKeyMetadata" "Amazonka.IAM.Types.SSHPublicKeyMetadata" "libZSservicesZSamazonka-iamZSamazonka-iam" 'False) (C1 ('MetaCons "SSHPublicKeyMetadata'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "userName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "sSHPublicKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 StatusType) :*: S1 ('MetaSel ('Just "uploadDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ISO8601))))

newSSHPublicKeyMetadata Source #

Create a value of SSHPublicKeyMetadata with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:userName:SSHPublicKeyMetadata', sSHPublicKeyMetadata_userName - The name of the IAM user associated with the SSH public key.

$sel:sSHPublicKeyId:SSHPublicKeyMetadata', sSHPublicKeyMetadata_sSHPublicKeyId - The unique identifier for the SSH public key.

$sel:status:SSHPublicKeyMetadata', sSHPublicKeyMetadata_status - The status of the SSH public key. Active means that the key can be used for authentication with an CodeCommit repository. Inactive means that the key cannot be used.

$sel:uploadDate:SSHPublicKeyMetadata', sSHPublicKeyMetadata_uploadDate - The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.

sSHPublicKeyMetadata_userName :: Lens' SSHPublicKeyMetadata Text Source #

The name of the IAM user associated with the SSH public key.

sSHPublicKeyMetadata_sSHPublicKeyId :: Lens' SSHPublicKeyMetadata Text Source #

The unique identifier for the SSH public key.

sSHPublicKeyMetadata_status :: Lens' SSHPublicKeyMetadata StatusType Source #

The status of the SSH public key. Active means that the key can be used for authentication with an CodeCommit repository. Inactive means that the key cannot be used.

sSHPublicKeyMetadata_uploadDate :: Lens' SSHPublicKeyMetadata UTCTime Source #

The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.