{-# 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.AwsRdsDbInstanceAssociatedRole -- 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.AwsRdsDbInstanceAssociatedRole 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 associated with the DB instance. -- -- /See:/ 'newAwsRdsDbInstanceAssociatedRole' smart constructor. data AwsRdsDbInstanceAssociatedRole = AwsRdsDbInstanceAssociatedRole' { -- | The name of the feature associated with the IAM role. featureName :: Prelude.Maybe Prelude.Text, -- | The ARN of the IAM role that is associated with the DB instance. roleArn :: Prelude.Maybe Prelude.Text, -- | Describes the state of the association between the IAM role and the DB -- instance. The @Status@ property returns one of the following values: -- -- - @ACTIVE@ - The IAM role ARN is associated with the DB instance and -- can be used to access other Amazon Web Services services on your -- behalf. -- -- - @PENDING@ - The IAM role ARN is being associated with the DB -- instance. -- -- - @INVALID@ - The IAM role ARN is associated with the DB instance. But -- the DB instance is unable to assume the IAM role in order to access -- other Amazon Web Services services on your behalf. status :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsRdsDbInstanceAssociatedRole' 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: -- -- 'featureName', 'awsRdsDbInstanceAssociatedRole_featureName' - The name of the feature associated with the IAM role. -- -- 'roleArn', 'awsRdsDbInstanceAssociatedRole_roleArn' - The ARN of the IAM role that is associated with the DB instance. -- -- 'status', 'awsRdsDbInstanceAssociatedRole_status' - Describes the state of the association between the IAM role and the DB -- instance. The @Status@ property returns one of the following values: -- -- - @ACTIVE@ - The IAM role ARN is associated with the DB instance and -- can be used to access other Amazon Web Services services on your -- behalf. -- -- - @PENDING@ - The IAM role ARN is being associated with the DB -- instance. -- -- - @INVALID@ - The IAM role ARN is associated with the DB instance. But -- the DB instance is unable to assume the IAM role in order to access -- other Amazon Web Services services on your behalf. newAwsRdsDbInstanceAssociatedRole :: AwsRdsDbInstanceAssociatedRole newAwsRdsDbInstanceAssociatedRole = AwsRdsDbInstanceAssociatedRole' { featureName = Prelude.Nothing, roleArn = Prelude.Nothing, status = Prelude.Nothing } -- | The name of the feature associated with the IAM role. awsRdsDbInstanceAssociatedRole_featureName :: Lens.Lens' AwsRdsDbInstanceAssociatedRole (Prelude.Maybe Prelude.Text) awsRdsDbInstanceAssociatedRole_featureName = Lens.lens (\AwsRdsDbInstanceAssociatedRole' {featureName} -> featureName) (\s@AwsRdsDbInstanceAssociatedRole' {} a -> s {featureName = a} :: AwsRdsDbInstanceAssociatedRole) -- | The ARN of the IAM role that is associated with the DB instance. awsRdsDbInstanceAssociatedRole_roleArn :: Lens.Lens' AwsRdsDbInstanceAssociatedRole (Prelude.Maybe Prelude.Text) awsRdsDbInstanceAssociatedRole_roleArn = Lens.lens (\AwsRdsDbInstanceAssociatedRole' {roleArn} -> roleArn) (\s@AwsRdsDbInstanceAssociatedRole' {} a -> s {roleArn = a} :: AwsRdsDbInstanceAssociatedRole) -- | Describes the state of the association between the IAM role and the DB -- instance. The @Status@ property returns one of the following values: -- -- - @ACTIVE@ - The IAM role ARN is associated with the DB instance and -- can be used to access other Amazon Web Services services on your -- behalf. -- -- - @PENDING@ - The IAM role ARN is being associated with the DB -- instance. -- -- - @INVALID@ - The IAM role ARN is associated with the DB instance. But -- the DB instance is unable to assume the IAM role in order to access -- other Amazon Web Services services on your behalf. awsRdsDbInstanceAssociatedRole_status :: Lens.Lens' AwsRdsDbInstanceAssociatedRole (Prelude.Maybe Prelude.Text) awsRdsDbInstanceAssociatedRole_status = Lens.lens (\AwsRdsDbInstanceAssociatedRole' {status} -> status) (\s@AwsRdsDbInstanceAssociatedRole' {} a -> s {status = a} :: AwsRdsDbInstanceAssociatedRole) instance Data.FromJSON AwsRdsDbInstanceAssociatedRole where parseJSON = Data.withObject "AwsRdsDbInstanceAssociatedRole" ( \x -> AwsRdsDbInstanceAssociatedRole' Prelude.<$> (x Data..:? "FeatureName") Prelude.<*> (x Data..:? "RoleArn") Prelude.<*> (x Data..:? "Status") ) instance Prelude.Hashable AwsRdsDbInstanceAssociatedRole where hashWithSalt _salt AwsRdsDbInstanceAssociatedRole' {..} = _salt `Prelude.hashWithSalt` featureName `Prelude.hashWithSalt` roleArn `Prelude.hashWithSalt` status instance Prelude.NFData AwsRdsDbInstanceAssociatedRole where rnf AwsRdsDbInstanceAssociatedRole' {..} = Prelude.rnf featureName `Prelude.seq` Prelude.rnf roleArn `Prelude.seq` Prelude.rnf status instance Data.ToJSON AwsRdsDbInstanceAssociatedRole where toJSON AwsRdsDbInstanceAssociatedRole' {..} = Data.object ( Prelude.catMaybes [ ("FeatureName" Data..=) Prelude.<$> featureName, ("RoleArn" Data..=) Prelude.<$> roleArn, ("Status" Data..=) Prelude.<$> status ] )