{-# 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.AwsEcsServiceDeploymentControllerDetails -- 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.AwsEcsServiceDeploymentControllerDetails 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 -- | Information about the deployment controller type that the service uses. -- -- /See:/ 'newAwsEcsServiceDeploymentControllerDetails' smart constructor. data AwsEcsServiceDeploymentControllerDetails = AwsEcsServiceDeploymentControllerDetails' { -- | The rolling update (@ECS@) deployment type replaces the current running -- version of the container with the latest version. -- -- The blue\/green (@CODE_DEPLOY@) deployment type uses the blue\/green -- deployment model that is powered by CodeDeploy. This deployment model a -- new deployment of a service can be verified before production traffic is -- sent to it. -- -- The external (@EXTERNAL@) deployment type allows the use of any -- third-party deployment controller for full control over the deployment -- process for an Amazon ECS service. -- -- Valid values: @ECS@ | @CODE_DEPLOY@ | @EXTERNAL@ type' :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsEcsServiceDeploymentControllerDetails' 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: -- -- 'type'', 'awsEcsServiceDeploymentControllerDetails_type' - The rolling update (@ECS@) deployment type replaces the current running -- version of the container with the latest version. -- -- The blue\/green (@CODE_DEPLOY@) deployment type uses the blue\/green -- deployment model that is powered by CodeDeploy. This deployment model a -- new deployment of a service can be verified before production traffic is -- sent to it. -- -- The external (@EXTERNAL@) deployment type allows the use of any -- third-party deployment controller for full control over the deployment -- process for an Amazon ECS service. -- -- Valid values: @ECS@ | @CODE_DEPLOY@ | @EXTERNAL@ newAwsEcsServiceDeploymentControllerDetails :: AwsEcsServiceDeploymentControllerDetails newAwsEcsServiceDeploymentControllerDetails = AwsEcsServiceDeploymentControllerDetails' { type' = Prelude.Nothing } -- | The rolling update (@ECS@) deployment type replaces the current running -- version of the container with the latest version. -- -- The blue\/green (@CODE_DEPLOY@) deployment type uses the blue\/green -- deployment model that is powered by CodeDeploy. This deployment model a -- new deployment of a service can be verified before production traffic is -- sent to it. -- -- The external (@EXTERNAL@) deployment type allows the use of any -- third-party deployment controller for full control over the deployment -- process for an Amazon ECS service. -- -- Valid values: @ECS@ | @CODE_DEPLOY@ | @EXTERNAL@ awsEcsServiceDeploymentControllerDetails_type :: Lens.Lens' AwsEcsServiceDeploymentControllerDetails (Prelude.Maybe Prelude.Text) awsEcsServiceDeploymentControllerDetails_type = Lens.lens (\AwsEcsServiceDeploymentControllerDetails' {type'} -> type') (\s@AwsEcsServiceDeploymentControllerDetails' {} a -> s {type' = a} :: AwsEcsServiceDeploymentControllerDetails) instance Data.FromJSON AwsEcsServiceDeploymentControllerDetails where parseJSON = Data.withObject "AwsEcsServiceDeploymentControllerDetails" ( \x -> AwsEcsServiceDeploymentControllerDetails' Prelude.<$> (x Data..:? "Type") ) instance Prelude.Hashable AwsEcsServiceDeploymentControllerDetails where hashWithSalt _salt AwsEcsServiceDeploymentControllerDetails' {..} = _salt `Prelude.hashWithSalt` type' instance Prelude.NFData AwsEcsServiceDeploymentControllerDetails where rnf AwsEcsServiceDeploymentControllerDetails' {..} = Prelude.rnf type' instance Data.ToJSON AwsEcsServiceDeploymentControllerDetails where toJSON AwsEcsServiceDeploymentControllerDetails' {..} = Data.object ( Prelude.catMaybes [("Type" Data..=) Prelude.<$> type'] )