amazonka-xray-2.0: gen/Amazonka/XRay/Types/ResponseTimeRootCauseService.hs
{-# 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.XRay.Types.ResponseTimeRootCauseService
-- 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.XRay.Types.ResponseTimeRootCauseService 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.XRay.Types.ResponseTimeRootCauseEntity
-- | A collection of fields identifying the service in a response time
-- warning.
--
-- /See:/ 'newResponseTimeRootCauseService' smart constructor.
data ResponseTimeRootCauseService = ResponseTimeRootCauseService'
{ -- | The account ID associated to the service.
accountId :: Prelude.Maybe Prelude.Text,
-- | The path of root cause entities found on the service.
entityPath :: Prelude.Maybe [ResponseTimeRootCauseEntity],
-- | A Boolean value indicating if the service is inferred from the trace.
inferred :: Prelude.Maybe Prelude.Bool,
-- | The service name.
name :: Prelude.Maybe Prelude.Text,
-- | A collection of associated service names.
names :: Prelude.Maybe [Prelude.Text],
-- | The type associated to the service.
type' :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ResponseTimeRootCauseService' 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:
--
-- 'accountId', 'responseTimeRootCauseService_accountId' - The account ID associated to the service.
--
-- 'entityPath', 'responseTimeRootCauseService_entityPath' - The path of root cause entities found on the service.
--
-- 'inferred', 'responseTimeRootCauseService_inferred' - A Boolean value indicating if the service is inferred from the trace.
--
-- 'name', 'responseTimeRootCauseService_name' - The service name.
--
-- 'names', 'responseTimeRootCauseService_names' - A collection of associated service names.
--
-- 'type'', 'responseTimeRootCauseService_type' - The type associated to the service.
newResponseTimeRootCauseService ::
ResponseTimeRootCauseService
newResponseTimeRootCauseService =
ResponseTimeRootCauseService'
{ accountId =
Prelude.Nothing,
entityPath = Prelude.Nothing,
inferred = Prelude.Nothing,
name = Prelude.Nothing,
names = Prelude.Nothing,
type' = Prelude.Nothing
}
-- | The account ID associated to the service.
responseTimeRootCauseService_accountId :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe Prelude.Text)
responseTimeRootCauseService_accountId = Lens.lens (\ResponseTimeRootCauseService' {accountId} -> accountId) (\s@ResponseTimeRootCauseService' {} a -> s {accountId = a} :: ResponseTimeRootCauseService)
-- | The path of root cause entities found on the service.
responseTimeRootCauseService_entityPath :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe [ResponseTimeRootCauseEntity])
responseTimeRootCauseService_entityPath = Lens.lens (\ResponseTimeRootCauseService' {entityPath} -> entityPath) (\s@ResponseTimeRootCauseService' {} a -> s {entityPath = a} :: ResponseTimeRootCauseService) Prelude.. Lens.mapping Lens.coerced
-- | A Boolean value indicating if the service is inferred from the trace.
responseTimeRootCauseService_inferred :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe Prelude.Bool)
responseTimeRootCauseService_inferred = Lens.lens (\ResponseTimeRootCauseService' {inferred} -> inferred) (\s@ResponseTimeRootCauseService' {} a -> s {inferred = a} :: ResponseTimeRootCauseService)
-- | The service name.
responseTimeRootCauseService_name :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe Prelude.Text)
responseTimeRootCauseService_name = Lens.lens (\ResponseTimeRootCauseService' {name} -> name) (\s@ResponseTimeRootCauseService' {} a -> s {name = a} :: ResponseTimeRootCauseService)
-- | A collection of associated service names.
responseTimeRootCauseService_names :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe [Prelude.Text])
responseTimeRootCauseService_names = Lens.lens (\ResponseTimeRootCauseService' {names} -> names) (\s@ResponseTimeRootCauseService' {} a -> s {names = a} :: ResponseTimeRootCauseService) Prelude.. Lens.mapping Lens.coerced
-- | The type associated to the service.
responseTimeRootCauseService_type :: Lens.Lens' ResponseTimeRootCauseService (Prelude.Maybe Prelude.Text)
responseTimeRootCauseService_type = Lens.lens (\ResponseTimeRootCauseService' {type'} -> type') (\s@ResponseTimeRootCauseService' {} a -> s {type' = a} :: ResponseTimeRootCauseService)
instance Data.FromJSON ResponseTimeRootCauseService where
parseJSON =
Data.withObject
"ResponseTimeRootCauseService"
( \x ->
ResponseTimeRootCauseService'
Prelude.<$> (x Data..:? "AccountId")
Prelude.<*> (x Data..:? "EntityPath" Data..!= Prelude.mempty)
Prelude.<*> (x Data..:? "Inferred")
Prelude.<*> (x Data..:? "Name")
Prelude.<*> (x Data..:? "Names" Data..!= Prelude.mempty)
Prelude.<*> (x Data..:? "Type")
)
instance
Prelude.Hashable
ResponseTimeRootCauseService
where
hashWithSalt _salt ResponseTimeRootCauseService' {..} =
_salt
`Prelude.hashWithSalt` accountId
`Prelude.hashWithSalt` entityPath
`Prelude.hashWithSalt` inferred
`Prelude.hashWithSalt` name
`Prelude.hashWithSalt` names
`Prelude.hashWithSalt` type'
instance Prelude.NFData ResponseTimeRootCauseService where
rnf ResponseTimeRootCauseService' {..} =
Prelude.rnf accountId
`Prelude.seq` Prelude.rnf entityPath
`Prelude.seq` Prelude.rnf inferred
`Prelude.seq` Prelude.rnf name
`Prelude.seq` Prelude.rnf names
`Prelude.seq` Prelude.rnf type'