{-# 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.QuickSight.Types.DataSourceCredentials -- 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.QuickSight.Types.DataSourceCredentials where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import Amazonka.QuickSight.Types.CredentialPair -- | Data source credentials. This is a variant type structure. For this -- structure to be valid, only one of the attributes can be non-null. -- -- /See:/ 'newDataSourceCredentials' smart constructor. data DataSourceCredentials = DataSourceCredentials' { -- | The Amazon Resource Name (ARN) of a data source that has the credential -- pair that you want to use. When @CopySourceArn@ is not null, the -- credential pair from the data source in the ARN is used as the -- credentials for the @DataSourceCredentials@ structure. copySourceArn :: Prelude.Maybe Prelude.Text, -- | Credential pair. For more information, see -- @ @@ @. credentialPair :: Prelude.Maybe CredentialPair, -- | The Amazon Resource Name (ARN) of the secret associated with the data -- source in Amazon Secrets Manager. secretArn :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DataSourceCredentials' 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: -- -- 'copySourceArn', 'dataSourceCredentials_copySourceArn' - The Amazon Resource Name (ARN) of a data source that has the credential -- pair that you want to use. When @CopySourceArn@ is not null, the -- credential pair from the data source in the ARN is used as the -- credentials for the @DataSourceCredentials@ structure. -- -- 'credentialPair', 'dataSourceCredentials_credentialPair' - Credential pair. For more information, see -- @ @@ @. -- -- 'secretArn', 'dataSourceCredentials_secretArn' - The Amazon Resource Name (ARN) of the secret associated with the data -- source in Amazon Secrets Manager. newDataSourceCredentials :: DataSourceCredentials newDataSourceCredentials = DataSourceCredentials' { copySourceArn = Prelude.Nothing, credentialPair = Prelude.Nothing, secretArn = Prelude.Nothing } -- | The Amazon Resource Name (ARN) of a data source that has the credential -- pair that you want to use. When @CopySourceArn@ is not null, the -- credential pair from the data source in the ARN is used as the -- credentials for the @DataSourceCredentials@ structure. dataSourceCredentials_copySourceArn :: Lens.Lens' DataSourceCredentials (Prelude.Maybe Prelude.Text) dataSourceCredentials_copySourceArn = Lens.lens (\DataSourceCredentials' {copySourceArn} -> copySourceArn) (\s@DataSourceCredentials' {} a -> s {copySourceArn = a} :: DataSourceCredentials) -- | Credential pair. For more information, see -- @ @@ @. dataSourceCredentials_credentialPair :: Lens.Lens' DataSourceCredentials (Prelude.Maybe CredentialPair) dataSourceCredentials_credentialPair = Lens.lens (\DataSourceCredentials' {credentialPair} -> credentialPair) (\s@DataSourceCredentials' {} a -> s {credentialPair = a} :: DataSourceCredentials) -- | The Amazon Resource Name (ARN) of the secret associated with the data -- source in Amazon Secrets Manager. dataSourceCredentials_secretArn :: Lens.Lens' DataSourceCredentials (Prelude.Maybe Prelude.Text) dataSourceCredentials_secretArn = Lens.lens (\DataSourceCredentials' {secretArn} -> secretArn) (\s@DataSourceCredentials' {} a -> s {secretArn = a} :: DataSourceCredentials) instance Prelude.Hashable DataSourceCredentials where hashWithSalt _salt DataSourceCredentials' {..} = _salt `Prelude.hashWithSalt` copySourceArn `Prelude.hashWithSalt` credentialPair `Prelude.hashWithSalt` secretArn instance Prelude.NFData DataSourceCredentials where rnf DataSourceCredentials' {..} = Prelude.rnf copySourceArn `Prelude.seq` Prelude.rnf credentialPair `Prelude.seq` Prelude.rnf secretArn instance Data.ToJSON DataSourceCredentials where toJSON DataSourceCredentials' {..} = Data.object ( Prelude.catMaybes [ ("CopySourceArn" Data..=) Prelude.<$> copySourceArn, ("CredentialPair" Data..=) Prelude.<$> credentialPair, ("SecretArn" Data..=) Prelude.<$> secretArn ] )