{-# 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.BillingConductor.Types.BillingGroupListElement
-- 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.BillingConductor.Types.BillingGroupListElement where

import Amazonka.BillingConductor.Types.BillingGroupStatus
import Amazonka.BillingConductor.Types.ComputationPreference
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

-- | A representation of a billing group.
--
-- /See:/ 'newBillingGroupListElement' smart constructor.
data BillingGroupListElement = BillingGroupListElement'
  { -- | The Amazon Resource Number (ARN) that can be used to uniquely identify
    -- the billing group.
    BillingGroupListElement -> Maybe Text
arn :: Prelude.Maybe Prelude.Text,
    BillingGroupListElement -> Maybe ComputationPreference
computationPreference :: Prelude.Maybe ComputationPreference,
    -- | The time when the billing group was created.
    BillingGroupListElement -> Maybe Integer
creationTime :: Prelude.Maybe Prelude.Integer,
    -- | The description of the billing group.
    BillingGroupListElement -> Maybe (Sensitive Text)
description :: Prelude.Maybe (Data.Sensitive Prelude.Text),
    -- | The most recent time when the billing group was modified.
    BillingGroupListElement -> Maybe Integer
lastModifiedTime :: Prelude.Maybe Prelude.Integer,
    -- | The name of the billing group.
    BillingGroupListElement -> Maybe (Sensitive Text)
name :: Prelude.Maybe (Data.Sensitive Prelude.Text),
    -- | The account ID that serves as the main account in a billing group.
    BillingGroupListElement -> Maybe Text
primaryAccountId :: Prelude.Maybe Prelude.Text,
    -- | The number of accounts in the particular billing group.
    BillingGroupListElement -> Maybe Natural
size :: Prelude.Maybe Prelude.Natural,
    -- | The billing group status. Only one of the valid values can be used.
    BillingGroupListElement -> Maybe BillingGroupStatus
status :: Prelude.Maybe BillingGroupStatus,
    -- | The reason why the billing group is in its current status.
    BillingGroupListElement -> Maybe Text
statusReason :: Prelude.Maybe Prelude.Text
  }
  deriving (BillingGroupListElement -> BillingGroupListElement -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: BillingGroupListElement -> BillingGroupListElement -> Bool
$c/= :: BillingGroupListElement -> BillingGroupListElement -> Bool
== :: BillingGroupListElement -> BillingGroupListElement -> Bool
$c== :: BillingGroupListElement -> BillingGroupListElement -> Bool
Prelude.Eq, Int -> BillingGroupListElement -> ShowS
[BillingGroupListElement] -> ShowS
BillingGroupListElement -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [BillingGroupListElement] -> ShowS
$cshowList :: [BillingGroupListElement] -> ShowS
show :: BillingGroupListElement -> String
$cshow :: BillingGroupListElement -> String
showsPrec :: Int -> BillingGroupListElement -> ShowS
$cshowsPrec :: Int -> BillingGroupListElement -> ShowS
Prelude.Show, forall x. Rep BillingGroupListElement x -> BillingGroupListElement
forall x. BillingGroupListElement -> Rep BillingGroupListElement x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep BillingGroupListElement x -> BillingGroupListElement
$cfrom :: forall x. BillingGroupListElement -> Rep BillingGroupListElement x
Prelude.Generic)

-- |
-- Create a value of 'BillingGroupListElement' 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:
--
-- 'arn', 'billingGroupListElement_arn' - The Amazon Resource Number (ARN) that can be used to uniquely identify
-- the billing group.
--
-- 'computationPreference', 'billingGroupListElement_computationPreference' - Undocumented member.
--
-- 'creationTime', 'billingGroupListElement_creationTime' - The time when the billing group was created.
--
-- 'description', 'billingGroupListElement_description' - The description of the billing group.
--
-- 'lastModifiedTime', 'billingGroupListElement_lastModifiedTime' - The most recent time when the billing group was modified.
--
-- 'name', 'billingGroupListElement_name' - The name of the billing group.
--
-- 'primaryAccountId', 'billingGroupListElement_primaryAccountId' - The account ID that serves as the main account in a billing group.
--
-- 'size', 'billingGroupListElement_size' - The number of accounts in the particular billing group.
--
-- 'status', 'billingGroupListElement_status' - The billing group status. Only one of the valid values can be used.
--
-- 'statusReason', 'billingGroupListElement_statusReason' - The reason why the billing group is in its current status.
newBillingGroupListElement ::
  BillingGroupListElement
newBillingGroupListElement :: BillingGroupListElement
newBillingGroupListElement =
  BillingGroupListElement'
    { $sel:arn:BillingGroupListElement' :: Maybe Text
arn = forall a. Maybe a
Prelude.Nothing,
      $sel:computationPreference:BillingGroupListElement' :: Maybe ComputationPreference
computationPreference = forall a. Maybe a
Prelude.Nothing,
      $sel:creationTime:BillingGroupListElement' :: Maybe Integer
creationTime = forall a. Maybe a
Prelude.Nothing,
      $sel:description:BillingGroupListElement' :: Maybe (Sensitive Text)
description = forall a. Maybe a
Prelude.Nothing,
      $sel:lastModifiedTime:BillingGroupListElement' :: Maybe Integer
lastModifiedTime = forall a. Maybe a
Prelude.Nothing,
      $sel:name:BillingGroupListElement' :: Maybe (Sensitive Text)
name = forall a. Maybe a
Prelude.Nothing,
      $sel:primaryAccountId:BillingGroupListElement' :: Maybe Text
primaryAccountId = forall a. Maybe a
Prelude.Nothing,
      $sel:size:BillingGroupListElement' :: Maybe Natural
size = forall a. Maybe a
Prelude.Nothing,
      $sel:status:BillingGroupListElement' :: Maybe BillingGroupStatus
status = forall a. Maybe a
Prelude.Nothing,
      $sel:statusReason:BillingGroupListElement' :: Maybe Text
statusReason = forall a. Maybe a
Prelude.Nothing
    }

-- | The Amazon Resource Number (ARN) that can be used to uniquely identify
-- the billing group.
billingGroupListElement_arn :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Text)
billingGroupListElement_arn :: Lens' BillingGroupListElement (Maybe Text)
billingGroupListElement_arn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Text
arn :: Maybe Text
$sel:arn:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
arn} -> Maybe Text
arn) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Text
a -> BillingGroupListElement
s {$sel:arn:BillingGroupListElement' :: Maybe Text
arn = Maybe Text
a} :: BillingGroupListElement)

-- | Undocumented member.
billingGroupListElement_computationPreference :: Lens.Lens' BillingGroupListElement (Prelude.Maybe ComputationPreference)
billingGroupListElement_computationPreference :: Lens' BillingGroupListElement (Maybe ComputationPreference)
billingGroupListElement_computationPreference = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe ComputationPreference
computationPreference :: Maybe ComputationPreference
$sel:computationPreference:BillingGroupListElement' :: BillingGroupListElement -> Maybe ComputationPreference
computationPreference} -> Maybe ComputationPreference
computationPreference) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe ComputationPreference
a -> BillingGroupListElement
s {$sel:computationPreference:BillingGroupListElement' :: Maybe ComputationPreference
computationPreference = Maybe ComputationPreference
a} :: BillingGroupListElement)

-- | The time when the billing group was created.
billingGroupListElement_creationTime :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Integer)
billingGroupListElement_creationTime :: Lens' BillingGroupListElement (Maybe Integer)
billingGroupListElement_creationTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Integer
creationTime :: Maybe Integer
$sel:creationTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
creationTime} -> Maybe Integer
creationTime) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Integer
a -> BillingGroupListElement
s {$sel:creationTime:BillingGroupListElement' :: Maybe Integer
creationTime = Maybe Integer
a} :: BillingGroupListElement)

-- | The description of the billing group.
billingGroupListElement_description :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Text)
billingGroupListElement_description :: Lens' BillingGroupListElement (Maybe Text)
billingGroupListElement_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe (Sensitive Text)
description :: Maybe (Sensitive Text)
$sel:description:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
description} -> Maybe (Sensitive Text)
description) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe (Sensitive Text)
a -> BillingGroupListElement
s {$sel:description:BillingGroupListElement' :: Maybe (Sensitive Text)
description = Maybe (Sensitive Text)
a} :: BillingGroupListElement) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall a. Iso' (Sensitive a) a
Data._Sensitive

-- | The most recent time when the billing group was modified.
billingGroupListElement_lastModifiedTime :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Integer)
billingGroupListElement_lastModifiedTime :: Lens' BillingGroupListElement (Maybe Integer)
billingGroupListElement_lastModifiedTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Integer
lastModifiedTime :: Maybe Integer
$sel:lastModifiedTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
lastModifiedTime} -> Maybe Integer
lastModifiedTime) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Integer
a -> BillingGroupListElement
s {$sel:lastModifiedTime:BillingGroupListElement' :: Maybe Integer
lastModifiedTime = Maybe Integer
a} :: BillingGroupListElement)

-- | The name of the billing group.
billingGroupListElement_name :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Text)
billingGroupListElement_name :: Lens' BillingGroupListElement (Maybe Text)
billingGroupListElement_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe (Sensitive Text)
name :: Maybe (Sensitive Text)
$sel:name:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
name} -> Maybe (Sensitive Text)
name) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe (Sensitive Text)
a -> BillingGroupListElement
s {$sel:name:BillingGroupListElement' :: Maybe (Sensitive Text)
name = Maybe (Sensitive Text)
a} :: BillingGroupListElement) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall a. Iso' (Sensitive a) a
Data._Sensitive

-- | The account ID that serves as the main account in a billing group.
billingGroupListElement_primaryAccountId :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Text)
billingGroupListElement_primaryAccountId :: Lens' BillingGroupListElement (Maybe Text)
billingGroupListElement_primaryAccountId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Text
primaryAccountId :: Maybe Text
$sel:primaryAccountId:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
primaryAccountId} -> Maybe Text
primaryAccountId) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Text
a -> BillingGroupListElement
s {$sel:primaryAccountId:BillingGroupListElement' :: Maybe Text
primaryAccountId = Maybe Text
a} :: BillingGroupListElement)

-- | The number of accounts in the particular billing group.
billingGroupListElement_size :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Natural)
billingGroupListElement_size :: Lens' BillingGroupListElement (Maybe Natural)
billingGroupListElement_size = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Natural
size :: Maybe Natural
$sel:size:BillingGroupListElement' :: BillingGroupListElement -> Maybe Natural
size} -> Maybe Natural
size) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Natural
a -> BillingGroupListElement
s {$sel:size:BillingGroupListElement' :: Maybe Natural
size = Maybe Natural
a} :: BillingGroupListElement)

-- | The billing group status. Only one of the valid values can be used.
billingGroupListElement_status :: Lens.Lens' BillingGroupListElement (Prelude.Maybe BillingGroupStatus)
billingGroupListElement_status :: Lens' BillingGroupListElement (Maybe BillingGroupStatus)
billingGroupListElement_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe BillingGroupStatus
status :: Maybe BillingGroupStatus
$sel:status:BillingGroupListElement' :: BillingGroupListElement -> Maybe BillingGroupStatus
status} -> Maybe BillingGroupStatus
status) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe BillingGroupStatus
a -> BillingGroupListElement
s {$sel:status:BillingGroupListElement' :: Maybe BillingGroupStatus
status = Maybe BillingGroupStatus
a} :: BillingGroupListElement)

-- | The reason why the billing group is in its current status.
billingGroupListElement_statusReason :: Lens.Lens' BillingGroupListElement (Prelude.Maybe Prelude.Text)
billingGroupListElement_statusReason :: Lens' BillingGroupListElement (Maybe Text)
billingGroupListElement_statusReason = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BillingGroupListElement' {Maybe Text
statusReason :: Maybe Text
$sel:statusReason:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
statusReason} -> Maybe Text
statusReason) (\s :: BillingGroupListElement
s@BillingGroupListElement' {} Maybe Text
a -> BillingGroupListElement
s {$sel:statusReason:BillingGroupListElement' :: Maybe Text
statusReason = Maybe Text
a} :: BillingGroupListElement)

instance Data.FromJSON BillingGroupListElement where
  parseJSON :: Value -> Parser BillingGroupListElement
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"BillingGroupListElement"
      ( \Object
x ->
          Maybe Text
-> Maybe ComputationPreference
-> Maybe Integer
-> Maybe (Sensitive Text)
-> Maybe Integer
-> Maybe (Sensitive Text)
-> Maybe Text
-> Maybe Natural
-> Maybe BillingGroupStatus
-> Maybe Text
-> BillingGroupListElement
BillingGroupListElement'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Arn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"ComputationPreference")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"CreationTime")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Description")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"LastModifiedTime")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Name")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"PrimaryAccountId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Size")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Status")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"StatusReason")
      )

instance Prelude.Hashable BillingGroupListElement where
  hashWithSalt :: Int -> BillingGroupListElement -> Int
hashWithSalt Int
_salt BillingGroupListElement' {Maybe Integer
Maybe Natural
Maybe Text
Maybe (Sensitive Text)
Maybe BillingGroupStatus
Maybe ComputationPreference
statusReason :: Maybe Text
status :: Maybe BillingGroupStatus
size :: Maybe Natural
primaryAccountId :: Maybe Text
name :: Maybe (Sensitive Text)
lastModifiedTime :: Maybe Integer
description :: Maybe (Sensitive Text)
creationTime :: Maybe Integer
computationPreference :: Maybe ComputationPreference
arn :: Maybe Text
$sel:statusReason:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
$sel:status:BillingGroupListElement' :: BillingGroupListElement -> Maybe BillingGroupStatus
$sel:size:BillingGroupListElement' :: BillingGroupListElement -> Maybe Natural
$sel:primaryAccountId:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
$sel:name:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
$sel:lastModifiedTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
$sel:description:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
$sel:creationTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
$sel:computationPreference:BillingGroupListElement' :: BillingGroupListElement -> Maybe ComputationPreference
$sel:arn:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
arn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ComputationPreference
computationPreference
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Integer
creationTime
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (Sensitive Text)
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Integer
lastModifiedTime
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (Sensitive Text)
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
primaryAccountId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
size
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe BillingGroupStatus
status
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
statusReason

instance Prelude.NFData BillingGroupListElement where
  rnf :: BillingGroupListElement -> ()
rnf BillingGroupListElement' {Maybe Integer
Maybe Natural
Maybe Text
Maybe (Sensitive Text)
Maybe BillingGroupStatus
Maybe ComputationPreference
statusReason :: Maybe Text
status :: Maybe BillingGroupStatus
size :: Maybe Natural
primaryAccountId :: Maybe Text
name :: Maybe (Sensitive Text)
lastModifiedTime :: Maybe Integer
description :: Maybe (Sensitive Text)
creationTime :: Maybe Integer
computationPreference :: Maybe ComputationPreference
arn :: Maybe Text
$sel:statusReason:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
$sel:status:BillingGroupListElement' :: BillingGroupListElement -> Maybe BillingGroupStatus
$sel:size:BillingGroupListElement' :: BillingGroupListElement -> Maybe Natural
$sel:primaryAccountId:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
$sel:name:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
$sel:lastModifiedTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
$sel:description:BillingGroupListElement' :: BillingGroupListElement -> Maybe (Sensitive Text)
$sel:creationTime:BillingGroupListElement' :: BillingGroupListElement -> Maybe Integer
$sel:computationPreference:BillingGroupListElement' :: BillingGroupListElement -> Maybe ComputationPreference
$sel:arn:BillingGroupListElement' :: BillingGroupListElement -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
arn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe ComputationPreference
computationPreference
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Integer
creationTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive Text)
description
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Integer
lastModifiedTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive Text)
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
primaryAccountId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
size
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe BillingGroupStatus
status
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
statusReason