{-# 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.Route53.Types.HealthCheck -- 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.Route53.Types.HealthCheck 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.Route53.Internal import Amazonka.Route53.Types.CloudWatchAlarmConfiguration import Amazonka.Route53.Types.HealthCheckConfig import Amazonka.Route53.Types.LinkedService -- | A complex type that contains information about one health check that is -- associated with the current Amazon Web Services account. -- -- /See:/ 'newHealthCheck' smart constructor. data HealthCheck = HealthCheck' { -- | A complex type that contains information about the CloudWatch alarm that -- Amazon Route 53 is monitoring for this health check. cloudWatchAlarmConfiguration :: Prelude.Maybe CloudWatchAlarmConfiguration, -- | If the health check was created by another service, the service that -- created the health check. When a health check is created by another -- service, you can\'t edit or delete it using Amazon Route 53. linkedService :: Prelude.Maybe LinkedService, -- | The identifier that Amazon Route 53 assigned to the health check when -- you created it. When you add or update a resource record set, you use -- this value to specify which health check to use. The value can be up to -- 64 characters long. id :: Prelude.Text, -- | A unique string that you specified when you created the health check. callerReference :: Prelude.Text, -- | A complex type that contains detailed information about one health -- check. healthCheckConfig :: HealthCheckConfig, -- | The version of the health check. You can optionally pass this value in a -- call to @UpdateHealthCheck@ to prevent overwriting another change to the -- health check. healthCheckVersion :: Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HealthCheck' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'cloudWatchAlarmConfiguration', 'healthCheck_cloudWatchAlarmConfiguration' - A complex type that contains information about the CloudWatch alarm that -- Amazon Route 53 is monitoring for this health check. -- -- 'linkedService', 'healthCheck_linkedService' - If the health check was created by another service, the service that -- created the health check. When a health check is created by another -- service, you can\'t edit or delete it using Amazon Route 53. -- -- 'id', 'healthCheck_id' - The identifier that Amazon Route 53 assigned to the health check when -- you created it. When you add or update a resource record set, you use -- this value to specify which health check to use. The value can be up to -- 64 characters long. -- -- 'callerReference', 'healthCheck_callerReference' - A unique string that you specified when you created the health check. -- -- 'healthCheckConfig', 'healthCheck_healthCheckConfig' - A complex type that contains detailed information about one health -- check. -- -- 'healthCheckVersion', 'healthCheck_healthCheckVersion' - The version of the health check. You can optionally pass this value in a -- call to @UpdateHealthCheck@ to prevent overwriting another change to the -- health check. newHealthCheck :: -- | 'id' Prelude.Text -> -- | 'callerReference' Prelude.Text -> -- | 'healthCheckConfig' HealthCheckConfig -> -- | 'healthCheckVersion' Prelude.Natural -> HealthCheck newHealthCheck pId_ pCallerReference_ pHealthCheckConfig_ pHealthCheckVersion_ = HealthCheck' { cloudWatchAlarmConfiguration = Prelude.Nothing, linkedService = Prelude.Nothing, id = pId_, callerReference = pCallerReference_, healthCheckConfig = pHealthCheckConfig_, healthCheckVersion = pHealthCheckVersion_ } -- | A complex type that contains information about the CloudWatch alarm that -- Amazon Route 53 is monitoring for this health check. healthCheck_cloudWatchAlarmConfiguration :: Lens.Lens' HealthCheck (Prelude.Maybe CloudWatchAlarmConfiguration) healthCheck_cloudWatchAlarmConfiguration = Lens.lens (\HealthCheck' {cloudWatchAlarmConfiguration} -> cloudWatchAlarmConfiguration) (\s@HealthCheck' {} a -> s {cloudWatchAlarmConfiguration = a} :: HealthCheck) -- | If the health check was created by another service, the service that -- created the health check. When a health check is created by another -- service, you can\'t edit or delete it using Amazon Route 53. healthCheck_linkedService :: Lens.Lens' HealthCheck (Prelude.Maybe LinkedService) healthCheck_linkedService = Lens.lens (\HealthCheck' {linkedService} -> linkedService) (\s@HealthCheck' {} a -> s {linkedService = a} :: HealthCheck) -- | The identifier that Amazon Route 53 assigned to the health check when -- you created it. When you add or update a resource record set, you use -- this value to specify which health check to use. The value can be up to -- 64 characters long. healthCheck_id :: Lens.Lens' HealthCheck Prelude.Text healthCheck_id = Lens.lens (\HealthCheck' {id} -> id) (\s@HealthCheck' {} a -> s {id = a} :: HealthCheck) -- | A unique string that you specified when you created the health check. healthCheck_callerReference :: Lens.Lens' HealthCheck Prelude.Text healthCheck_callerReference = Lens.lens (\HealthCheck' {callerReference} -> callerReference) (\s@HealthCheck' {} a -> s {callerReference = a} :: HealthCheck) -- | A complex type that contains detailed information about one health -- check. healthCheck_healthCheckConfig :: Lens.Lens' HealthCheck HealthCheckConfig healthCheck_healthCheckConfig = Lens.lens (\HealthCheck' {healthCheckConfig} -> healthCheckConfig) (\s@HealthCheck' {} a -> s {healthCheckConfig = a} :: HealthCheck) -- | The version of the health check. You can optionally pass this value in a -- call to @UpdateHealthCheck@ to prevent overwriting another change to the -- health check. healthCheck_healthCheckVersion :: Lens.Lens' HealthCheck Prelude.Natural healthCheck_healthCheckVersion = Lens.lens (\HealthCheck' {healthCheckVersion} -> healthCheckVersion) (\s@HealthCheck' {} a -> s {healthCheckVersion = a} :: HealthCheck) instance Data.FromXML HealthCheck where parseXML x = HealthCheck' Prelude.<$> (x Data..@? "CloudWatchAlarmConfiguration") Prelude.<*> (x Data..@? "LinkedService") Prelude.<*> (x Data..@ "Id") Prelude.<*> (x Data..@ "CallerReference") Prelude.<*> (x Data..@ "HealthCheckConfig") Prelude.<*> (x Data..@ "HealthCheckVersion") instance Prelude.Hashable HealthCheck where hashWithSalt _salt HealthCheck' {..} = _salt `Prelude.hashWithSalt` cloudWatchAlarmConfiguration `Prelude.hashWithSalt` linkedService `Prelude.hashWithSalt` id `Prelude.hashWithSalt` callerReference `Prelude.hashWithSalt` healthCheckConfig `Prelude.hashWithSalt` healthCheckVersion instance Prelude.NFData HealthCheck where rnf HealthCheck' {..} = Prelude.rnf cloudWatchAlarmConfiguration `Prelude.seq` Prelude.rnf linkedService `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf callerReference `Prelude.seq` Prelude.rnf healthCheckConfig `Prelude.seq` Prelude.rnf healthCheckVersion