{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.IAM.Types.ServiceSpecificCredentialMetadata -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.IAM.Types.ServiceSpecificCredentialMetadata where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IAM.Types.StatusType import qualified Amazonka.Prelude as Prelude -- | Contains additional details about a service-specific credential. -- -- /See:/ 'newServiceSpecificCredentialMetadata' smart constructor. data ServiceSpecificCredentialMetadata = ServiceSpecificCredentialMetadata' { -- | The name of the IAM user associated with the service-specific -- credential. userName :: Prelude.Text, -- | The status of the service-specific credential. @Active@ means that the -- key is valid for API calls, while @Inactive@ means it is not. status :: StatusType, -- | The generated user name for the service-specific credential. serviceUserName :: Prelude.Text, -- | The date and time, in -- , when the -- service-specific credential were created. createDate :: Data.ISO8601, -- | The unique identifier for the service-specific credential. serviceSpecificCredentialId :: Prelude.Text, -- | The name of the service associated with the service-specific credential. serviceName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ServiceSpecificCredentialMetadata' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'userName', 'serviceSpecificCredentialMetadata_userName' - The name of the IAM user associated with the service-specific -- credential. -- -- 'status', 'serviceSpecificCredentialMetadata_status' - The status of the service-specific credential. @Active@ means that the -- key is valid for API calls, while @Inactive@ means it is not. -- -- 'serviceUserName', 'serviceSpecificCredentialMetadata_serviceUserName' - The generated user name for the service-specific credential. -- -- 'createDate', 'serviceSpecificCredentialMetadata_createDate' - The date and time, in -- , when the -- service-specific credential were created. -- -- 'serviceSpecificCredentialId', 'serviceSpecificCredentialMetadata_serviceSpecificCredentialId' - The unique identifier for the service-specific credential. -- -- 'serviceName', 'serviceSpecificCredentialMetadata_serviceName' - The name of the service associated with the service-specific credential. newServiceSpecificCredentialMetadata :: -- | 'userName' Prelude.Text -> -- | 'status' StatusType -> -- | 'serviceUserName' Prelude.Text -> -- | 'createDate' Prelude.UTCTime -> -- | 'serviceSpecificCredentialId' Prelude.Text -> -- | 'serviceName' Prelude.Text -> ServiceSpecificCredentialMetadata newServiceSpecificCredentialMetadata pUserName_ pStatus_ pServiceUserName_ pCreateDate_ pServiceSpecificCredentialId_ pServiceName_ = ServiceSpecificCredentialMetadata' { userName = pUserName_, status = pStatus_, serviceUserName = pServiceUserName_, createDate = Data._Time Lens.# pCreateDate_, serviceSpecificCredentialId = pServiceSpecificCredentialId_, serviceName = pServiceName_ } -- | The name of the IAM user associated with the service-specific -- credential. serviceSpecificCredentialMetadata_userName :: Lens.Lens' ServiceSpecificCredentialMetadata Prelude.Text serviceSpecificCredentialMetadata_userName = Lens.lens (\ServiceSpecificCredentialMetadata' {userName} -> userName) (\s@ServiceSpecificCredentialMetadata' {} a -> s {userName = a} :: ServiceSpecificCredentialMetadata) -- | The status of the service-specific credential. @Active@ means that the -- key is valid for API calls, while @Inactive@ means it is not. serviceSpecificCredentialMetadata_status :: Lens.Lens' ServiceSpecificCredentialMetadata StatusType serviceSpecificCredentialMetadata_status = Lens.lens (\ServiceSpecificCredentialMetadata' {status} -> status) (\s@ServiceSpecificCredentialMetadata' {} a -> s {status = a} :: ServiceSpecificCredentialMetadata) -- | The generated user name for the service-specific credential. serviceSpecificCredentialMetadata_serviceUserName :: Lens.Lens' ServiceSpecificCredentialMetadata Prelude.Text serviceSpecificCredentialMetadata_serviceUserName = Lens.lens (\ServiceSpecificCredentialMetadata' {serviceUserName} -> serviceUserName) (\s@ServiceSpecificCredentialMetadata' {} a -> s {serviceUserName = a} :: ServiceSpecificCredentialMetadata) -- | The date and time, in -- , when the -- service-specific credential were created. serviceSpecificCredentialMetadata_createDate :: Lens.Lens' ServiceSpecificCredentialMetadata Prelude.UTCTime serviceSpecificCredentialMetadata_createDate = Lens.lens (\ServiceSpecificCredentialMetadata' {createDate} -> createDate) (\s@ServiceSpecificCredentialMetadata' {} a -> s {createDate = a} :: ServiceSpecificCredentialMetadata) Prelude.. Data._Time -- | The unique identifier for the service-specific credential. serviceSpecificCredentialMetadata_serviceSpecificCredentialId :: Lens.Lens' ServiceSpecificCredentialMetadata Prelude.Text serviceSpecificCredentialMetadata_serviceSpecificCredentialId = Lens.lens (\ServiceSpecificCredentialMetadata' {serviceSpecificCredentialId} -> serviceSpecificCredentialId) (\s@ServiceSpecificCredentialMetadata' {} a -> s {serviceSpecificCredentialId = a} :: ServiceSpecificCredentialMetadata) -- | The name of the service associated with the service-specific credential. serviceSpecificCredentialMetadata_serviceName :: Lens.Lens' ServiceSpecificCredentialMetadata Prelude.Text serviceSpecificCredentialMetadata_serviceName = Lens.lens (\ServiceSpecificCredentialMetadata' {serviceName} -> serviceName) (\s@ServiceSpecificCredentialMetadata' {} a -> s {serviceName = a} :: ServiceSpecificCredentialMetadata) instance Data.FromXML ServiceSpecificCredentialMetadata where parseXML x = ServiceSpecificCredentialMetadata' Prelude.<$> (x Data..@ "UserName") Prelude.<*> (x Data..@ "Status") Prelude.<*> (x Data..@ "ServiceUserName") Prelude.<*> (x Data..@ "CreateDate") Prelude.<*> (x Data..@ "ServiceSpecificCredentialId") Prelude.<*> (x Data..@ "ServiceName") instance Prelude.Hashable ServiceSpecificCredentialMetadata where hashWithSalt _salt ServiceSpecificCredentialMetadata' {..} = _salt `Prelude.hashWithSalt` userName `Prelude.hashWithSalt` status `Prelude.hashWithSalt` serviceUserName `Prelude.hashWithSalt` createDate `Prelude.hashWithSalt` serviceSpecificCredentialId `Prelude.hashWithSalt` serviceName instance Prelude.NFData ServiceSpecificCredentialMetadata where rnf ServiceSpecificCredentialMetadata' {..} = Prelude.rnf userName `Prelude.seq` Prelude.rnf status `Prelude.seq` Prelude.rnf serviceUserName `Prelude.seq` Prelude.rnf createDate `Prelude.seq` Prelude.rnf serviceSpecificCredentialId `Prelude.seq` Prelude.rnf serviceName