{-# 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.DataSync.Types.S3Config
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.DataSync.Types.S3Config where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | The Amazon Resource Name (ARN) of the Identity and Access Management
-- (IAM) role that is used to access an Amazon S3 bucket.
--
-- For detailed information about using such a role, see Creating a
-- Location for Amazon S3 in the /DataSync User Guide/.
--
-- /See:/ 'newS3Config' smart constructor.
data S3Config = S3Config'
  { -- | The Amazon S3 bucket to access. This bucket is used as a parameter in
    -- the
    -- <https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateLocationS3.html CreateLocationS3>
    -- operation.
    S3Config -> Text
bucketAccessRoleArn :: Prelude.Text
  }
  deriving (S3Config -> S3Config -> Bool
(S3Config -> S3Config -> Bool)
-> (S3Config -> S3Config -> Bool) -> Eq S3Config
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: S3Config -> S3Config -> Bool
$c/= :: S3Config -> S3Config -> Bool
== :: S3Config -> S3Config -> Bool
$c== :: S3Config -> S3Config -> Bool
Prelude.Eq, ReadPrec [S3Config]
ReadPrec S3Config
Int -> ReadS S3Config
ReadS [S3Config]
(Int -> ReadS S3Config)
-> ReadS [S3Config]
-> ReadPrec S3Config
-> ReadPrec [S3Config]
-> Read S3Config
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [S3Config]
$creadListPrec :: ReadPrec [S3Config]
readPrec :: ReadPrec S3Config
$creadPrec :: ReadPrec S3Config
readList :: ReadS [S3Config]
$creadList :: ReadS [S3Config]
readsPrec :: Int -> ReadS S3Config
$creadsPrec :: Int -> ReadS S3Config
Prelude.Read, Int -> S3Config -> ShowS
[S3Config] -> ShowS
S3Config -> String
(Int -> S3Config -> ShowS)
-> (S3Config -> String) -> ([S3Config] -> ShowS) -> Show S3Config
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [S3Config] -> ShowS
$cshowList :: [S3Config] -> ShowS
show :: S3Config -> String
$cshow :: S3Config -> String
showsPrec :: Int -> S3Config -> ShowS
$cshowsPrec :: Int -> S3Config -> ShowS
Prelude.Show, (forall x. S3Config -> Rep S3Config x)
-> (forall x. Rep S3Config x -> S3Config) -> Generic S3Config
forall x. Rep S3Config x -> S3Config
forall x. S3Config -> Rep S3Config x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep S3Config x -> S3Config
$cfrom :: forall x. S3Config -> Rep S3Config x
Prelude.Generic)

-- |
-- Create a value of 'S3Config' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'bucketAccessRoleArn', 's3Config_bucketAccessRoleArn' - The Amazon S3 bucket to access. This bucket is used as a parameter in
-- the
-- <https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateLocationS3.html CreateLocationS3>
-- operation.
newS3Config ::
  -- | 'bucketAccessRoleArn'
  Prelude.Text ->
  S3Config
newS3Config :: Text -> S3Config
newS3Config Text
pBucketAccessRoleArn_ =
  S3Config' :: Text -> S3Config
S3Config'
    { $sel:bucketAccessRoleArn:S3Config' :: Text
bucketAccessRoleArn =
        Text
pBucketAccessRoleArn_
    }

-- | The Amazon S3 bucket to access. This bucket is used as a parameter in
-- the
-- <https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateLocationS3.html CreateLocationS3>
-- operation.
s3Config_bucketAccessRoleArn :: Lens.Lens' S3Config Prelude.Text
s3Config_bucketAccessRoleArn :: (Text -> f Text) -> S3Config -> f S3Config
s3Config_bucketAccessRoleArn = (S3Config -> Text)
-> (S3Config -> Text -> S3Config)
-> Lens S3Config S3Config Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Config' {Text
bucketAccessRoleArn :: Text
$sel:bucketAccessRoleArn:S3Config' :: S3Config -> Text
bucketAccessRoleArn} -> Text
bucketAccessRoleArn) (\s :: S3Config
s@S3Config' {} Text
a -> S3Config
s {$sel:bucketAccessRoleArn:S3Config' :: Text
bucketAccessRoleArn = Text
a} :: S3Config)

instance Core.FromJSON S3Config where
  parseJSON :: Value -> Parser S3Config
parseJSON =
    String -> (Object -> Parser S3Config) -> Value -> Parser S3Config
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"S3Config"
      ( \Object
x ->
          Text -> S3Config
S3Config'
            (Text -> S3Config) -> Parser Text -> Parser S3Config
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"BucketAccessRoleArn")
      )

instance Prelude.Hashable S3Config

instance Prelude.NFData S3Config

instance Core.ToJSON S3Config where
  toJSON :: S3Config -> Value
toJSON S3Config' {Text
bucketAccessRoleArn :: Text
$sel:bucketAccessRoleArn:S3Config' :: S3Config -> Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"BucketAccessRoleArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
bucketAccessRoleArn)
          ]
      )