{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Greengrass.GetServiceRoleForAccount -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves the service role that is attached to your account. module Amazonka.Greengrass.GetServiceRoleForAccount ( -- * Creating a Request GetServiceRoleForAccount (..), newGetServiceRoleForAccount, -- * Destructuring the Response GetServiceRoleForAccountResponse (..), newGetServiceRoleForAccountResponse, -- * Response Lenses getServiceRoleForAccountResponse_associatedAt, getServiceRoleForAccountResponse_roleArn, getServiceRoleForAccountResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Greengrass.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetServiceRoleForAccount' smart constructor. data GetServiceRoleForAccount = GetServiceRoleForAccount' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetServiceRoleForAccount' with all optional fields omitted. -- -- Use or to modify other optional fields. newGetServiceRoleForAccount :: GetServiceRoleForAccount newGetServiceRoleForAccount = GetServiceRoleForAccount' instance Core.AWSRequest GetServiceRoleForAccount where type AWSResponse GetServiceRoleForAccount = GetServiceRoleForAccountResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetServiceRoleForAccountResponse' Prelude.<$> (x Data..?> "AssociatedAt") Prelude.<*> (x Data..?> "RoleArn") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetServiceRoleForAccount where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData GetServiceRoleForAccount where rnf _ = () instance Data.ToHeaders GetServiceRoleForAccount where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetServiceRoleForAccount where toPath = Prelude.const "/greengrass/servicerole" instance Data.ToQuery GetServiceRoleForAccount where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetServiceRoleForAccountResponse' smart constructor. data GetServiceRoleForAccountResponse = GetServiceRoleForAccountResponse' { -- | The time when the service role was associated with the account. associatedAt :: Prelude.Maybe Prelude.Text, -- | The ARN of the role which is associated with the account. roleArn :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetServiceRoleForAccountResponse' 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: -- -- 'associatedAt', 'getServiceRoleForAccountResponse_associatedAt' - The time when the service role was associated with the account. -- -- 'roleArn', 'getServiceRoleForAccountResponse_roleArn' - The ARN of the role which is associated with the account. -- -- 'httpStatus', 'getServiceRoleForAccountResponse_httpStatus' - The response's http status code. newGetServiceRoleForAccountResponse :: -- | 'httpStatus' Prelude.Int -> GetServiceRoleForAccountResponse newGetServiceRoleForAccountResponse pHttpStatus_ = GetServiceRoleForAccountResponse' { associatedAt = Prelude.Nothing, roleArn = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The time when the service role was associated with the account. getServiceRoleForAccountResponse_associatedAt :: Lens.Lens' GetServiceRoleForAccountResponse (Prelude.Maybe Prelude.Text) getServiceRoleForAccountResponse_associatedAt = Lens.lens (\GetServiceRoleForAccountResponse' {associatedAt} -> associatedAt) (\s@GetServiceRoleForAccountResponse' {} a -> s {associatedAt = a} :: GetServiceRoleForAccountResponse) -- | The ARN of the role which is associated with the account. getServiceRoleForAccountResponse_roleArn :: Lens.Lens' GetServiceRoleForAccountResponse (Prelude.Maybe Prelude.Text) getServiceRoleForAccountResponse_roleArn = Lens.lens (\GetServiceRoleForAccountResponse' {roleArn} -> roleArn) (\s@GetServiceRoleForAccountResponse' {} a -> s {roleArn = a} :: GetServiceRoleForAccountResponse) -- | The response's http status code. getServiceRoleForAccountResponse_httpStatus :: Lens.Lens' GetServiceRoleForAccountResponse Prelude.Int getServiceRoleForAccountResponse_httpStatus = Lens.lens (\GetServiceRoleForAccountResponse' {httpStatus} -> httpStatus) (\s@GetServiceRoleForAccountResponse' {} a -> s {httpStatus = a} :: GetServiceRoleForAccountResponse) instance Prelude.NFData GetServiceRoleForAccountResponse where rnf GetServiceRoleForAccountResponse' {..} = Prelude.rnf associatedAt `Prelude.seq` Prelude.rnf roleArn `Prelude.seq` Prelude.rnf httpStatus