{-# 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.AwsRdsDbClusterAssociatedRole -- 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.AwsRdsDbClusterAssociatedRole 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 -- | An IAM role that is associated with the Amazon RDS DB cluster. -- -- /See:/ 'newAwsRdsDbClusterAssociatedRole' smart constructor. data AwsRdsDbClusterAssociatedRole = AwsRdsDbClusterAssociatedRole' { -- | The ARN of the IAM role. roleArn :: Prelude.Maybe Prelude.Text, -- | The status of the association between the IAM role and the DB cluster. -- Valid values are as follows: -- -- - @ACTIVE@ -- -- - @INVALID@ -- -- - @PENDING@ status :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsRdsDbClusterAssociatedRole' 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: -- -- 'roleArn', 'awsRdsDbClusterAssociatedRole_roleArn' - The ARN of the IAM role. -- -- 'status', 'awsRdsDbClusterAssociatedRole_status' - The status of the association between the IAM role and the DB cluster. -- Valid values are as follows: -- -- - @ACTIVE@ -- -- - @INVALID@ -- -- - @PENDING@ newAwsRdsDbClusterAssociatedRole :: AwsRdsDbClusterAssociatedRole newAwsRdsDbClusterAssociatedRole = AwsRdsDbClusterAssociatedRole' { roleArn = Prelude.Nothing, status = Prelude.Nothing } -- | The ARN of the IAM role. awsRdsDbClusterAssociatedRole_roleArn :: Lens.Lens' AwsRdsDbClusterAssociatedRole (Prelude.Maybe Prelude.Text) awsRdsDbClusterAssociatedRole_roleArn = Lens.lens (\AwsRdsDbClusterAssociatedRole' {roleArn} -> roleArn) (\s@AwsRdsDbClusterAssociatedRole' {} a -> s {roleArn = a} :: AwsRdsDbClusterAssociatedRole) -- | The status of the association between the IAM role and the DB cluster. -- Valid values are as follows: -- -- - @ACTIVE@ -- -- - @INVALID@ -- -- - @PENDING@ awsRdsDbClusterAssociatedRole_status :: Lens.Lens' AwsRdsDbClusterAssociatedRole (Prelude.Maybe Prelude.Text) awsRdsDbClusterAssociatedRole_status = Lens.lens (\AwsRdsDbClusterAssociatedRole' {status} -> status) (\s@AwsRdsDbClusterAssociatedRole' {} a -> s {status = a} :: AwsRdsDbClusterAssociatedRole) instance Data.FromJSON AwsRdsDbClusterAssociatedRole where parseJSON = Data.withObject "AwsRdsDbClusterAssociatedRole" ( \x -> AwsRdsDbClusterAssociatedRole' Prelude.<$> (x Data..:? "RoleArn") Prelude.<*> (x Data..:? "Status") ) instance Prelude.Hashable AwsRdsDbClusterAssociatedRole where hashWithSalt _salt AwsRdsDbClusterAssociatedRole' {..} = _salt `Prelude.hashWithSalt` roleArn `Prelude.hashWithSalt` status instance Prelude.NFData AwsRdsDbClusterAssociatedRole where rnf AwsRdsDbClusterAssociatedRole' {..} = Prelude.rnf roleArn `Prelude.seq` Prelude.rnf status instance Data.ToJSON AwsRdsDbClusterAssociatedRole where toJSON AwsRdsDbClusterAssociatedRole' {..} = Data.object ( Prelude.catMaybes [ ("RoleArn" Data..=) Prelude.<$> roleArn, ("Status" Data..=) Prelude.<$> status ] )