{-# 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.ECR.GetAuthorizationToken -- 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 an authorization token. An authorization token represents your -- IAM authentication credentials and can be used to access any Amazon ECR -- registry that your IAM principal has access to. The authorization token -- is valid for 12 hours. -- -- The @authorizationToken@ returned is a base64 encoded string that can be -- decoded and used in a @docker login@ command to authenticate to a -- registry. The CLI offers an @get-login-password@ command that simplifies -- the login process. For more information, see -- -- in the /Amazon Elastic Container Registry User Guide/. module Amazonka.ECR.GetAuthorizationToken ( -- * Creating a Request GetAuthorizationToken (..), newGetAuthorizationToken, -- * Request Lenses getAuthorizationToken_registryIds, -- * Destructuring the Response GetAuthorizationTokenResponse (..), newGetAuthorizationTokenResponse, -- * Response Lenses getAuthorizationTokenResponse_authorizationData, getAuthorizationTokenResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ECR.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetAuthorizationToken' smart constructor. data GetAuthorizationToken = GetAuthorizationToken' { -- | A list of Amazon Web Services account IDs that are associated with the -- registries for which to get AuthorizationData objects. If you do not -- specify a registry, the default registry is assumed. registryIds :: Prelude.Maybe (Prelude.NonEmpty Prelude.Text) } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetAuthorizationToken' 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: -- -- 'registryIds', 'getAuthorizationToken_registryIds' - A list of Amazon Web Services account IDs that are associated with the -- registries for which to get AuthorizationData objects. If you do not -- specify a registry, the default registry is assumed. newGetAuthorizationToken :: GetAuthorizationToken newGetAuthorizationToken = GetAuthorizationToken' { registryIds = Prelude.Nothing } -- | A list of Amazon Web Services account IDs that are associated with the -- registries for which to get AuthorizationData objects. If you do not -- specify a registry, the default registry is assumed. getAuthorizationToken_registryIds :: Lens.Lens' GetAuthorizationToken (Prelude.Maybe (Prelude.NonEmpty Prelude.Text)) getAuthorizationToken_registryIds = Lens.lens (\GetAuthorizationToken' {registryIds} -> registryIds) (\s@GetAuthorizationToken' {} a -> s {registryIds = a} :: GetAuthorizationToken) Prelude.. Lens.mapping Lens.coerced instance Core.AWSRequest GetAuthorizationToken where type AWSResponse GetAuthorizationToken = GetAuthorizationTokenResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetAuthorizationTokenResponse' Prelude.<$> ( x Data..?> "authorizationData" Core..!@ Prelude.mempty ) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetAuthorizationToken where hashWithSalt _salt GetAuthorizationToken' {..} = _salt `Prelude.hashWithSalt` registryIds instance Prelude.NFData GetAuthorizationToken where rnf GetAuthorizationToken' {..} = Prelude.rnf registryIds instance Data.ToHeaders GetAuthorizationToken where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AmazonEC2ContainerRegistry_V20150921.GetAuthorizationToken" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON GetAuthorizationToken where toJSON GetAuthorizationToken' {..} = Data.object ( Prelude.catMaybes [("registryIds" Data..=) Prelude.<$> registryIds] ) instance Data.ToPath GetAuthorizationToken where toPath = Prelude.const "/" instance Data.ToQuery GetAuthorizationToken where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetAuthorizationTokenResponse' smart constructor. data GetAuthorizationTokenResponse = GetAuthorizationTokenResponse' { -- | A list of authorization token data objects that correspond to the -- @registryIds@ values in the request. authorizationData :: Prelude.Maybe [AuthorizationData], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetAuthorizationTokenResponse' 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: -- -- 'authorizationData', 'getAuthorizationTokenResponse_authorizationData' - A list of authorization token data objects that correspond to the -- @registryIds@ values in the request. -- -- 'httpStatus', 'getAuthorizationTokenResponse_httpStatus' - The response's http status code. newGetAuthorizationTokenResponse :: -- | 'httpStatus' Prelude.Int -> GetAuthorizationTokenResponse newGetAuthorizationTokenResponse pHttpStatus_ = GetAuthorizationTokenResponse' { authorizationData = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | A list of authorization token data objects that correspond to the -- @registryIds@ values in the request. getAuthorizationTokenResponse_authorizationData :: Lens.Lens' GetAuthorizationTokenResponse (Prelude.Maybe [AuthorizationData]) getAuthorizationTokenResponse_authorizationData = Lens.lens (\GetAuthorizationTokenResponse' {authorizationData} -> authorizationData) (\s@GetAuthorizationTokenResponse' {} a -> s {authorizationData = a} :: GetAuthorizationTokenResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. getAuthorizationTokenResponse_httpStatus :: Lens.Lens' GetAuthorizationTokenResponse Prelude.Int getAuthorizationTokenResponse_httpStatus = Lens.lens (\GetAuthorizationTokenResponse' {httpStatus} -> httpStatus) (\s@GetAuthorizationTokenResponse' {} a -> s {httpStatus = a} :: GetAuthorizationTokenResponse) instance Prelude.NFData GetAuthorizationTokenResponse where rnf GetAuthorizationTokenResponse' {..} = Prelude.rnf authorizationData `Prelude.seq` Prelude.rnf httpStatus