module Stratosphere.CleanRooms.ConfiguredTableAssociation (
module Exports, ConfiguredTableAssociation(..),
mkConfiguredTableAssociation
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.CleanRooms.ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data ConfiguredTableAssociation
=
ConfiguredTableAssociation {ConfiguredTableAssociation -> ()
haddock_workaround_ :: (),
ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableAssociationAnalysisRules :: (Prelude.Maybe [ConfiguredTableAssociationAnalysisRuleProperty]),
ConfiguredTableAssociation -> Value Text
configuredTableIdentifier :: (Value Prelude.Text),
ConfiguredTableAssociation -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
ConfiguredTableAssociation -> Value Text
membershipIdentifier :: (Value Prelude.Text),
ConfiguredTableAssociation -> Value Text
name :: (Value Prelude.Text),
ConfiguredTableAssociation -> Value Text
roleArn :: (Value Prelude.Text),
ConfiguredTableAssociation -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool
(ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool)
-> (ConfiguredTableAssociation
-> ConfiguredTableAssociation -> Bool)
-> Eq ConfiguredTableAssociation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool
== :: ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool
$c/= :: ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool
/= :: ConfiguredTableAssociation -> ConfiguredTableAssociation -> Bool
Prelude.Eq, Int -> ConfiguredTableAssociation -> ShowS
[ConfiguredTableAssociation] -> ShowS
ConfiguredTableAssociation -> String
(Int -> ConfiguredTableAssociation -> ShowS)
-> (ConfiguredTableAssociation -> String)
-> ([ConfiguredTableAssociation] -> ShowS)
-> Show ConfiguredTableAssociation
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ConfiguredTableAssociation -> ShowS
showsPrec :: Int -> ConfiguredTableAssociation -> ShowS
$cshow :: ConfiguredTableAssociation -> String
show :: ConfiguredTableAssociation -> String
$cshowList :: [ConfiguredTableAssociation] -> ShowS
showList :: [ConfiguredTableAssociation] -> ShowS
Prelude.Show)
mkConfiguredTableAssociation ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> ConfiguredTableAssociation
mkConfiguredTableAssociation :: Value Text
-> Value Text
-> Value Text
-> Value Text
-> ConfiguredTableAssociation
mkConfiguredTableAssociation
Value Text
configuredTableIdentifier
Value Text
membershipIdentifier
Value Text
name
Value Text
roleArn
= ConfiguredTableAssociation
{haddock_workaround_ :: ()
haddock_workaround_ = (),
configuredTableIdentifier :: Value Text
configuredTableIdentifier = Value Text
configuredTableIdentifier,
membershipIdentifier :: Value Text
membershipIdentifier = Value Text
membershipIdentifier, name :: Value Text
name = Value Text
name,
roleArn :: Value Text
roleArn = Value Text
roleArn,
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableAssociationAnalysisRules = Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
forall a. Maybe a
Prelude.Nothing,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ConfiguredTableAssociation where
toResourceProperties :: ConfiguredTableAssociation -> ResourceProperties
toResourceProperties ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::CleanRooms::ConfiguredTableAssociation",
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
"ConfiguredTableIdentifier" 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
configuredTableIdentifier,
Key
"MembershipIdentifier" 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
membershipIdentifier,
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, Key
"RoleArn" 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
roleArn]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key
-> [ConfiguredTableAssociationAnalysisRuleProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConfiguredTableAssociationAnalysisRules"
([ConfiguredTableAssociationAnalysisRuleProperty] -> (Key, Value))
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableAssociationAnalysisRules,
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
"Description" (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)
description,
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 ConfiguredTableAssociation where
toJSON :: ConfiguredTableAssociation -> Value
toJSON ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value 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
"ConfiguredTableIdentifier" 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
configuredTableIdentifier,
Key
"MembershipIdentifier" 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
membershipIdentifier,
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, Key
"RoleArn" 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
roleArn]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key
-> [ConfiguredTableAssociationAnalysisRuleProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConfiguredTableAssociationAnalysisRules"
([ConfiguredTableAssociationAnalysisRuleProperty] -> (Key, Value))
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableAssociationAnalysisRules,
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
"Description" (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)
description,
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 "ConfiguredTableAssociationAnalysisRules" ConfiguredTableAssociation where
type PropertyType "ConfiguredTableAssociationAnalysisRules" ConfiguredTableAssociation = [ConfiguredTableAssociationAnalysisRuleProperty]
set :: PropertyType
"ConfiguredTableAssociationAnalysisRules"
ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType
"ConfiguredTableAssociationAnalysisRules"
ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation
{configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableAssociationAnalysisRules = [ConfiguredTableAssociationAnalysisRuleProperty]
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ConfiguredTableAssociationAnalysisRuleProperty]
PropertyType
"ConfiguredTableAssociationAnalysisRules"
ConfiguredTableAssociation
newValue,
Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "ConfiguredTableIdentifier" ConfiguredTableAssociation where
type PropertyType "ConfiguredTableIdentifier" ConfiguredTableAssociation = Value Prelude.Text
set :: PropertyType "ConfiguredTableIdentifier" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "ConfiguredTableIdentifier" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation
{configuredTableIdentifier :: Value Text
configuredTableIdentifier = PropertyType "ConfiguredTableIdentifier" ConfiguredTableAssociation
Value Text
newValue, Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Description" ConfiguredTableAssociation where
type PropertyType "Description" ConfiguredTableAssociation = Value Prelude.Text
set :: PropertyType "Description" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "Description" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation
{description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" ConfiguredTableAssociation
Value Text
newValue, Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "MembershipIdentifier" ConfiguredTableAssociation where
type PropertyType "MembershipIdentifier" ConfiguredTableAssociation = Value Prelude.Text
set :: PropertyType "MembershipIdentifier" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "MembershipIdentifier" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation {membershipIdentifier :: Value Text
membershipIdentifier = PropertyType "MembershipIdentifier" ConfiguredTableAssociation
Value Text
newValue, Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Name" ConfiguredTableAssociation where
type PropertyType "Name" ConfiguredTableAssociation = Value Prelude.Text
set :: PropertyType "Name" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "Name" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation {name :: Value Text
name = PropertyType "Name" ConfiguredTableAssociation
Value Text
newValue, Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "RoleArn" ConfiguredTableAssociation where
type PropertyType "RoleArn" ConfiguredTableAssociation = Value Prelude.Text
set :: PropertyType "RoleArn" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "RoleArn" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation {roleArn :: Value Text
roleArn = PropertyType "RoleArn" ConfiguredTableAssociation
Value Text
newValue, Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Tags" ConfiguredTableAssociation where
type PropertyType "Tags" ConfiguredTableAssociation = [Tag]
set :: PropertyType "Tags" ConfiguredTableAssociation
-> ConfiguredTableAssociation -> ConfiguredTableAssociation
set PropertyType "Tags" ConfiguredTableAssociation
newValue ConfiguredTableAssociation {Maybe [Tag]
Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ConfiguredTableAssociation -> ()
configuredTableAssociationAnalysisRules :: ConfiguredTableAssociation
-> Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: ConfiguredTableAssociation -> Value Text
description :: ConfiguredTableAssociation -> Maybe (Value Text)
membershipIdentifier :: ConfiguredTableAssociation -> Value Text
name :: ConfiguredTableAssociation -> Value Text
roleArn :: ConfiguredTableAssociation -> Value Text
tags :: ConfiguredTableAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
tags :: Maybe [Tag]
..}
= ConfiguredTableAssociation {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" ConfiguredTableAssociation
newValue, Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
haddock_workaround_ :: ()
configuredTableAssociationAnalysisRules :: Maybe [ConfiguredTableAssociationAnalysisRuleProperty]
configuredTableIdentifier :: Value Text
description :: Maybe (Value Text)
membershipIdentifier :: Value Text
name :: Value Text
roleArn :: Value Text
..}