{-# 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.ApplicationCostProfiler.Types.S3Location
-- 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.ApplicationCostProfiler.Types.S3Location 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

-- | Represents the Amazon Simple Storage Service (Amazon S3) location where
-- AWS Application Cost Profiler reports are generated and then written to.
--
-- /See:/ 'newS3Location' smart constructor.
data S3Location = S3Location'
  { -- | Name of the S3 bucket.
    S3Location -> Text
bucket :: Prelude.Text,
    -- | Prefix for the location to write to.
    S3Location -> Text
prefix :: Prelude.Text
  }
  deriving (S3Location -> S3Location -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: S3Location -> S3Location -> Bool
$c/= :: S3Location -> S3Location -> Bool
== :: S3Location -> S3Location -> Bool
$c== :: S3Location -> S3Location -> Bool
Prelude.Eq, ReadPrec [S3Location]
ReadPrec S3Location
Int -> ReadS S3Location
ReadS [S3Location]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [S3Location]
$creadListPrec :: ReadPrec [S3Location]
readPrec :: ReadPrec S3Location
$creadPrec :: ReadPrec S3Location
readList :: ReadS [S3Location]
$creadList :: ReadS [S3Location]
readsPrec :: Int -> ReadS S3Location
$creadsPrec :: Int -> ReadS S3Location
Prelude.Read, Int -> S3Location -> ShowS
[S3Location] -> ShowS
S3Location -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [S3Location] -> ShowS
$cshowList :: [S3Location] -> ShowS
show :: S3Location -> String
$cshow :: S3Location -> String
showsPrec :: Int -> S3Location -> ShowS
$cshowsPrec :: Int -> S3Location -> ShowS
Prelude.Show, forall x. Rep S3Location x -> S3Location
forall x. S3Location -> Rep S3Location x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep S3Location x -> S3Location
$cfrom :: forall x. S3Location -> Rep S3Location x
Prelude.Generic)

-- |
-- Create a value of 'S3Location' 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:
--
-- 'bucket', 's3Location_bucket' - Name of the S3 bucket.
--
-- 'prefix', 's3Location_prefix' - Prefix for the location to write to.
newS3Location ::
  -- | 'bucket'
  Prelude.Text ->
  -- | 'prefix'
  Prelude.Text ->
  S3Location
newS3Location :: Text -> Text -> S3Location
newS3Location Text
pBucket_ Text
pPrefix_ =
  S3Location' {$sel:bucket:S3Location' :: Text
bucket = Text
pBucket_, $sel:prefix:S3Location' :: Text
prefix = Text
pPrefix_}

-- | Name of the S3 bucket.
s3Location_bucket :: Lens.Lens' S3Location Prelude.Text
s3Location_bucket :: Lens' S3Location Text
s3Location_bucket = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Location' {Text
bucket :: Text
$sel:bucket:S3Location' :: S3Location -> Text
bucket} -> Text
bucket) (\s :: S3Location
s@S3Location' {} Text
a -> S3Location
s {$sel:bucket:S3Location' :: Text
bucket = Text
a} :: S3Location)

-- | Prefix for the location to write to.
s3Location_prefix :: Lens.Lens' S3Location Prelude.Text
s3Location_prefix :: Lens' S3Location Text
s3Location_prefix = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Location' {Text
prefix :: Text
$sel:prefix:S3Location' :: S3Location -> Text
prefix} -> Text
prefix) (\s :: S3Location
s@S3Location' {} Text
a -> S3Location
s {$sel:prefix:S3Location' :: Text
prefix = Text
a} :: S3Location)

instance Data.FromJSON S3Location where
  parseJSON :: Value -> Parser S3Location
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"S3Location"
      ( \Object
x ->
          Text -> Text -> S3Location
S3Location'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"bucket")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"prefix")
      )

instance Prelude.Hashable S3Location where
  hashWithSalt :: Int -> S3Location -> Int
hashWithSalt Int
_salt S3Location' {Text
prefix :: Text
bucket :: Text
$sel:prefix:S3Location' :: S3Location -> Text
$sel:bucket:S3Location' :: S3Location -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
bucket
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
prefix

instance Prelude.NFData S3Location where
  rnf :: S3Location -> ()
rnf S3Location' {Text
prefix :: Text
bucket :: Text
$sel:prefix:S3Location' :: S3Location -> Text
$sel:bucket:S3Location' :: S3Location -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
bucket seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
prefix

instance Data.ToJSON S3Location where
  toJSON :: S3Location -> Value
toJSON S3Location' {Text
prefix :: Text
bucket :: Text
$sel:prefix:S3Location' :: S3Location -> Text
$sel:bucket:S3Location' :: S3Location -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just (Key
"bucket" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
bucket),
            forall a. a -> Maybe a
Prelude.Just (Key
"prefix" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
prefix)
          ]
      )