{-# 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.ElasticBeanstalk.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.ElasticBeanstalk.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

-- | The bucket and key of an item stored in Amazon S3.
--
-- /See:/ 'newS3Location' smart constructor.
data S3Location = S3Location'
  { -- | The Amazon S3 bucket where the data is located.
    S3Location -> Maybe Text
s3Bucket :: Prelude.Maybe Prelude.Text,
    -- | The Amazon S3 key where the data is located.
    S3Location -> Maybe Text
s3Key :: Prelude.Maybe 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:
--
-- 's3Bucket', 's3Location_s3Bucket' - The Amazon S3 bucket where the data is located.
--
-- 's3Key', 's3Location_s3Key' - The Amazon S3 key where the data is located.
newS3Location ::
  S3Location
newS3Location :: S3Location
newS3Location =
  S3Location'
    { $sel:s3Bucket:S3Location' :: Maybe Text
s3Bucket = forall a. Maybe a
Prelude.Nothing,
      $sel:s3Key:S3Location' :: Maybe Text
s3Key = forall a. Maybe a
Prelude.Nothing
    }

-- | The Amazon S3 bucket where the data is located.
s3Location_s3Bucket :: Lens.Lens' S3Location (Prelude.Maybe Prelude.Text)
s3Location_s3Bucket :: Lens' S3Location (Maybe Text)
s3Location_s3Bucket = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Location' {Maybe Text
s3Bucket :: Maybe Text
$sel:s3Bucket:S3Location' :: S3Location -> Maybe Text
s3Bucket} -> Maybe Text
s3Bucket) (\s :: S3Location
s@S3Location' {} Maybe Text
a -> S3Location
s {$sel:s3Bucket:S3Location' :: Maybe Text
s3Bucket = Maybe Text
a} :: S3Location)

-- | The Amazon S3 key where the data is located.
s3Location_s3Key :: Lens.Lens' S3Location (Prelude.Maybe Prelude.Text)
s3Location_s3Key :: Lens' S3Location (Maybe Text)
s3Location_s3Key = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Location' {Maybe Text
s3Key :: Maybe Text
$sel:s3Key:S3Location' :: S3Location -> Maybe Text
s3Key} -> Maybe Text
s3Key) (\s :: S3Location
s@S3Location' {} Maybe Text
a -> S3Location
s {$sel:s3Key:S3Location' :: Maybe Text
s3Key = Maybe Text
a} :: S3Location)

instance Data.FromXML S3Location where
  parseXML :: [Node] -> Either String S3Location
parseXML [Node]
x =
    Maybe Text -> Maybe Text -> S3Location
S3Location'
      forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"S3Bucket")
      forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"S3Key")

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

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

instance Data.ToQuery S3Location where
  toQuery :: S3Location -> QueryString
toQuery S3Location' {Maybe Text
s3Key :: Maybe Text
s3Bucket :: Maybe Text
$sel:s3Key:S3Location' :: S3Location -> Maybe Text
$sel:s3Bucket:S3Location' :: S3Location -> Maybe Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"S3Bucket" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Maybe Text
s3Bucket, ByteString
"S3Key" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Maybe Text
s3Key]