module Stratosphere.AIOps.InvestigationGroup (
        module Exports, InvestigationGroup(..), mkInvestigationGroup
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.AIOps.InvestigationGroup.ChatbotNotificationChannelProperty as Exports
import {-# SOURCE #-} Stratosphere.AIOps.InvestigationGroup.CrossAccountConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AIOps.InvestigationGroup.EncryptionConfigMapProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data InvestigationGroup
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html>
    InvestigationGroup {InvestigationGroup -> ()
haddock_workaround_ :: (),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-chatbotnotificationchannels>
                        InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
chatbotNotificationChannels :: (Prelude.Maybe [ChatbotNotificationChannelProperty]),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-crossaccountconfigurations>
                        InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
crossAccountConfigurations :: (Prelude.Maybe [CrossAccountConfigurationProperty]),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-encryptionconfig>
                        InvestigationGroup -> Maybe EncryptionConfigMapProperty
encryptionConfig :: (Prelude.Maybe EncryptionConfigMapProperty),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-investigationgrouppolicy>
                        InvestigationGroup -> Maybe (Value Text)
investigationGroupPolicy :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-iscloudtraileventhistoryenabled>
                        InvestigationGroup -> Maybe (Value Bool)
isCloudTrailEventHistoryEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-name>
                        InvestigationGroup -> Value Text
name :: (Value Prelude.Text),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-retentionindays>
                        InvestigationGroup -> Maybe (Value Integer)
retentionInDays :: (Prelude.Maybe (Value Prelude.Integer)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-rolearn>
                        InvestigationGroup -> Maybe (Value Text)
roleArn :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-tagkeyboundaries>
                        InvestigationGroup -> Maybe (ValueList Text)
tagKeyBoundaries :: (Prelude.Maybe (ValueList Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-tags>
                        InvestigationGroup -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (InvestigationGroup -> InvestigationGroup -> Bool
(InvestigationGroup -> InvestigationGroup -> Bool)
-> (InvestigationGroup -> InvestigationGroup -> Bool)
-> Eq InvestigationGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: InvestigationGroup -> InvestigationGroup -> Bool
== :: InvestigationGroup -> InvestigationGroup -> Bool
$c/= :: InvestigationGroup -> InvestigationGroup -> Bool
/= :: InvestigationGroup -> InvestigationGroup -> Bool
Prelude.Eq, Int -> InvestigationGroup -> ShowS
[InvestigationGroup] -> ShowS
InvestigationGroup -> String
(Int -> InvestigationGroup -> ShowS)
-> (InvestigationGroup -> String)
-> ([InvestigationGroup] -> ShowS)
-> Show InvestigationGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> InvestigationGroup -> ShowS
showsPrec :: Int -> InvestigationGroup -> ShowS
$cshow :: InvestigationGroup -> String
show :: InvestigationGroup -> String
$cshowList :: [InvestigationGroup] -> ShowS
showList :: [InvestigationGroup] -> ShowS
Prelude.Show)
mkInvestigationGroup :: Value Prelude.Text -> InvestigationGroup
mkInvestigationGroup :: Value Text -> InvestigationGroup
mkInvestigationGroup Value Text
name
  = InvestigationGroup
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
       chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
chatbotNotificationChannels = Maybe [ChatbotNotificationChannelProperty]
forall a. Maybe a
Prelude.Nothing,
       crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
crossAccountConfigurations = Maybe [CrossAccountConfigurationProperty]
forall a. Maybe a
Prelude.Nothing,
       encryptionConfig :: Maybe EncryptionConfigMapProperty
encryptionConfig = Maybe EncryptionConfigMapProperty
forall a. Maybe a
Prelude.Nothing,
       investigationGroupPolicy :: Maybe (Value Text)
investigationGroupPolicy = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
isCloudTrailEventHistoryEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       retentionInDays :: Maybe (Value Integer)
retentionInDays = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, roleArn :: Maybe (Value Text)
roleArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tagKeyBoundaries :: Maybe (ValueList Text)
tagKeyBoundaries = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties InvestigationGroup where
  toResourceProperties :: InvestigationGroup -> ResourceProperties
toResourceProperties InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::AIOps::InvestigationGroup",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> [ChatbotNotificationChannelProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChatbotNotificationChannels"
                                 ([ChatbotNotificationChannelProperty] -> (Key, Value))
-> Maybe [ChatbotNotificationChannelProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ChatbotNotificationChannelProperty]
chatbotNotificationChannels,
                               Key -> [CrossAccountConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrossAccountConfigurations"
                                 ([CrossAccountConfigurationProperty] -> (Key, Value))
-> Maybe [CrossAccountConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CrossAccountConfigurationProperty]
crossAccountConfigurations,
                               Key -> EncryptionConfigMapProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionConfig" (EncryptionConfigMapProperty -> (Key, Value))
-> Maybe EncryptionConfigMapProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionConfigMapProperty
encryptionConfig,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InvestigationGroupPolicy"
                                 (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
investigationGroupPolicy,
                               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IsCloudTrailEventHistoryEnabled"
                                 (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
isCloudTrailEventHistoryEnabled,
                               Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RetentionInDays" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
retentionInDays,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RoleArn" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
roleArn,
                               Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TagKeyBoundaries" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
tagKeyBoundaries,
                               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON InvestigationGroup where
  toJSON :: InvestigationGroup -> Value
toJSON InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [ChatbotNotificationChannelProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChatbotNotificationChannels"
                    ([ChatbotNotificationChannelProperty] -> (Key, Value))
-> Maybe [ChatbotNotificationChannelProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ChatbotNotificationChannelProperty]
chatbotNotificationChannels,
                  Key -> [CrossAccountConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrossAccountConfigurations"
                    ([CrossAccountConfigurationProperty] -> (Key, Value))
-> Maybe [CrossAccountConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [CrossAccountConfigurationProperty]
crossAccountConfigurations,
                  Key -> EncryptionConfigMapProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionConfig" (EncryptionConfigMapProperty -> (Key, Value))
-> Maybe EncryptionConfigMapProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionConfigMapProperty
encryptionConfig,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InvestigationGroupPolicy"
                    (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
investigationGroupPolicy,
                  Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IsCloudTrailEventHistoryEnabled"
                    (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
isCloudTrailEventHistoryEnabled,
                  Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RetentionInDays" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
retentionInDays,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RoleArn" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
roleArn,
                  Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TagKeyBoundaries" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
tagKeyBoundaries,
                  Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "ChatbotNotificationChannels" InvestigationGroup where
  type PropertyType "ChatbotNotificationChannels" InvestigationGroup = [ChatbotNotificationChannelProperty]
  set :: PropertyType "ChatbotNotificationChannels" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "ChatbotNotificationChannels" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup
        {chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
chatbotNotificationChannels = [ChatbotNotificationChannelProperty]
-> Maybe [ChatbotNotificationChannelProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ChatbotNotificationChannelProperty]
PropertyType "ChatbotNotificationChannels" InvestigationGroup
newValue, Maybe [Tag]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "CrossAccountConfigurations" InvestigationGroup where
  type PropertyType "CrossAccountConfigurations" InvestigationGroup = [CrossAccountConfigurationProperty]
  set :: PropertyType "CrossAccountConfigurations" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "CrossAccountConfigurations" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup
        {crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
crossAccountConfigurations = [CrossAccountConfigurationProperty]
-> Maybe [CrossAccountConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [CrossAccountConfigurationProperty]
PropertyType "CrossAccountConfigurations" InvestigationGroup
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "EncryptionConfig" InvestigationGroup where
  type PropertyType "EncryptionConfig" InvestigationGroup = EncryptionConfigMapProperty
  set :: PropertyType "EncryptionConfig" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "EncryptionConfig" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {encryptionConfig :: Maybe EncryptionConfigMapProperty
encryptionConfig = EncryptionConfigMapProperty -> Maybe EncryptionConfigMapProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EncryptionConfig" InvestigationGroup
EncryptionConfigMapProperty
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "InvestigationGroupPolicy" InvestigationGroup where
  type PropertyType "InvestigationGroupPolicy" InvestigationGroup = Value Prelude.Text
  set :: PropertyType "InvestigationGroupPolicy" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "InvestigationGroupPolicy" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup
        {investigationGroupPolicy :: Maybe (Value Text)
investigationGroupPolicy = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InvestigationGroupPolicy" InvestigationGroup
Value Text
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "IsCloudTrailEventHistoryEnabled" InvestigationGroup where
  type PropertyType "IsCloudTrailEventHistoryEnabled" InvestigationGroup = Value Prelude.Bool
  set :: PropertyType "IsCloudTrailEventHistoryEnabled" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "IsCloudTrailEventHistoryEnabled" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup
        {isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
isCloudTrailEventHistoryEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IsCloudTrailEventHistoryEnabled" InvestigationGroup
Value Bool
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "Name" InvestigationGroup where
  type PropertyType "Name" InvestigationGroup = Value Prelude.Text
  set :: PropertyType "Name" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "Name" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {name :: Value Text
name = PropertyType "Name" InvestigationGroup
Value Text
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "RetentionInDays" InvestigationGroup where
  type PropertyType "RetentionInDays" InvestigationGroup = Value Prelude.Integer
  set :: PropertyType "RetentionInDays" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "RetentionInDays" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {retentionInDays :: Maybe (Value Integer)
retentionInDays = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RetentionInDays" InvestigationGroup
Value Integer
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "RoleArn" InvestigationGroup where
  type PropertyType "RoleArn" InvestigationGroup = Value Prelude.Text
  set :: PropertyType "RoleArn" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "RoleArn" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {roleArn :: Maybe (Value Text)
roleArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RoleArn" InvestigationGroup
Value Text
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
instance Property "TagKeyBoundaries" InvestigationGroup where
  type PropertyType "TagKeyBoundaries" InvestigationGroup = ValueList Prelude.Text
  set :: PropertyType "TagKeyBoundaries" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "TagKeyBoundaries" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {tagKeyBoundaries :: Maybe (ValueList Text)
tagKeyBoundaries = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TagKeyBoundaries" InvestigationGroup
ValueList Text
newValue, Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" InvestigationGroup where
  type PropertyType "Tags" InvestigationGroup = [Tag]
  set :: PropertyType "Tags" InvestigationGroup
-> InvestigationGroup -> InvestigationGroup
set PropertyType "Tags" InvestigationGroup
newValue InvestigationGroup {Maybe [Tag]
Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: InvestigationGroup -> ()
chatbotNotificationChannels :: InvestigationGroup -> Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: InvestigationGroup -> Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: InvestigationGroup -> Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: InvestigationGroup -> Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: InvestigationGroup -> Maybe (Value Bool)
name :: InvestigationGroup -> Value Text
retentionInDays :: InvestigationGroup -> Maybe (Value Integer)
roleArn :: InvestigationGroup -> Maybe (Value Text)
tagKeyBoundaries :: InvestigationGroup -> Maybe (ValueList Text)
tags :: InvestigationGroup -> Maybe [Tag]
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
tags :: Maybe [Tag]
..}
    = InvestigationGroup {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" InvestigationGroup
newValue, Maybe [ChatbotNotificationChannelProperty]
Maybe [CrossAccountConfigurationProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe EncryptionConfigMapProperty
()
Value Text
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
haddock_workaround_ :: ()
chatbotNotificationChannels :: Maybe [ChatbotNotificationChannelProperty]
crossAccountConfigurations :: Maybe [CrossAccountConfigurationProperty]
encryptionConfig :: Maybe EncryptionConfigMapProperty
investigationGroupPolicy :: Maybe (Value Text)
isCloudTrailEventHistoryEnabled :: Maybe (Value Bool)
name :: Value Text
retentionInDays :: Maybe (Value Integer)
roleArn :: Maybe (Value Text)
tagKeyBoundaries :: Maybe (ValueList Text)
..}