amazonka-securityhub-2.0: gen/Amazonka/SecurityHub/Types/AwsRdsDbInstanceEndpoint.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.SecurityHub.Types.AwsRdsDbInstanceEndpoint
-- 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.SecurityHub.Types.AwsRdsDbInstanceEndpoint 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
-- | Specifies the connection endpoint.
--
-- /See:/ 'newAwsRdsDbInstanceEndpoint' smart constructor.
data AwsRdsDbInstanceEndpoint = AwsRdsDbInstanceEndpoint'
{ -- | Specifies the DNS address of the DB instance.
address :: Prelude.Maybe Prelude.Text,
-- | Specifies the ID that Amazon Route 53 assigns when you create a hosted
-- zone.
hostedZoneId :: Prelude.Maybe Prelude.Text,
-- | Specifies the port that the database engine is listening on.
port :: Prelude.Maybe Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AwsRdsDbInstanceEndpoint' 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:
--
-- 'address', 'awsRdsDbInstanceEndpoint_address' - Specifies the DNS address of the DB instance.
--
-- 'hostedZoneId', 'awsRdsDbInstanceEndpoint_hostedZoneId' - Specifies the ID that Amazon Route 53 assigns when you create a hosted
-- zone.
--
-- 'port', 'awsRdsDbInstanceEndpoint_port' - Specifies the port that the database engine is listening on.
newAwsRdsDbInstanceEndpoint ::
AwsRdsDbInstanceEndpoint
newAwsRdsDbInstanceEndpoint =
AwsRdsDbInstanceEndpoint'
{ address =
Prelude.Nothing,
hostedZoneId = Prelude.Nothing,
port = Prelude.Nothing
}
-- | Specifies the DNS address of the DB instance.
awsRdsDbInstanceEndpoint_address :: Lens.Lens' AwsRdsDbInstanceEndpoint (Prelude.Maybe Prelude.Text)
awsRdsDbInstanceEndpoint_address = Lens.lens (\AwsRdsDbInstanceEndpoint' {address} -> address) (\s@AwsRdsDbInstanceEndpoint' {} a -> s {address = a} :: AwsRdsDbInstanceEndpoint)
-- | Specifies the ID that Amazon Route 53 assigns when you create a hosted
-- zone.
awsRdsDbInstanceEndpoint_hostedZoneId :: Lens.Lens' AwsRdsDbInstanceEndpoint (Prelude.Maybe Prelude.Text)
awsRdsDbInstanceEndpoint_hostedZoneId = Lens.lens (\AwsRdsDbInstanceEndpoint' {hostedZoneId} -> hostedZoneId) (\s@AwsRdsDbInstanceEndpoint' {} a -> s {hostedZoneId = a} :: AwsRdsDbInstanceEndpoint)
-- | Specifies the port that the database engine is listening on.
awsRdsDbInstanceEndpoint_port :: Lens.Lens' AwsRdsDbInstanceEndpoint (Prelude.Maybe Prelude.Int)
awsRdsDbInstanceEndpoint_port = Lens.lens (\AwsRdsDbInstanceEndpoint' {port} -> port) (\s@AwsRdsDbInstanceEndpoint' {} a -> s {port = a} :: AwsRdsDbInstanceEndpoint)
instance Data.FromJSON AwsRdsDbInstanceEndpoint where
parseJSON =
Data.withObject
"AwsRdsDbInstanceEndpoint"
( \x ->
AwsRdsDbInstanceEndpoint'
Prelude.<$> (x Data..:? "Address")
Prelude.<*> (x Data..:? "HostedZoneId")
Prelude.<*> (x Data..:? "Port")
)
instance Prelude.Hashable AwsRdsDbInstanceEndpoint where
hashWithSalt _salt AwsRdsDbInstanceEndpoint' {..} =
_salt
`Prelude.hashWithSalt` address
`Prelude.hashWithSalt` hostedZoneId
`Prelude.hashWithSalt` port
instance Prelude.NFData AwsRdsDbInstanceEndpoint where
rnf AwsRdsDbInstanceEndpoint' {..} =
Prelude.rnf address
`Prelude.seq` Prelude.rnf hostedZoneId
`Prelude.seq` Prelude.rnf port
instance Data.ToJSON AwsRdsDbInstanceEndpoint where
toJSON AwsRdsDbInstanceEndpoint' {..} =
Data.object
( Prelude.catMaybes
[ ("Address" Data..=) Prelude.<$> address,
("HostedZoneId" Data..=) Prelude.<$> hostedZoneId,
("Port" Data..=) Prelude.<$> port
]
)