module Stratosphere.QuickSight.DataSource.RedshiftParametersProperty (
module Exports, RedshiftParametersProperty(..),
mkRedshiftParametersProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.DataSource.IdentityCenterConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.DataSource.RedshiftIAMParametersProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data RedshiftParametersProperty
=
RedshiftParametersProperty {RedshiftParametersProperty -> ()
haddock_workaround_ :: (),
RedshiftParametersProperty -> Maybe (Value Text)
clusterId :: (Prelude.Maybe (Value Prelude.Text)),
RedshiftParametersProperty -> Value Text
database :: (Value Prelude.Text),
RedshiftParametersProperty -> Maybe (Value Text)
host :: (Prelude.Maybe (Value Prelude.Text)),
RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
iAMParameters :: (Prelude.Maybe RedshiftIAMParametersProperty),
RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
identityCenterConfiguration :: (Prelude.Maybe IdentityCenterConfigurationProperty),
RedshiftParametersProperty -> Maybe (Value Double)
port :: (Prelude.Maybe (Value Prelude.Double))}
deriving stock (RedshiftParametersProperty -> RedshiftParametersProperty -> Bool
(RedshiftParametersProperty -> RedshiftParametersProperty -> Bool)
-> (RedshiftParametersProperty
-> RedshiftParametersProperty -> Bool)
-> Eq RedshiftParametersProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RedshiftParametersProperty -> RedshiftParametersProperty -> Bool
== :: RedshiftParametersProperty -> RedshiftParametersProperty -> Bool
$c/= :: RedshiftParametersProperty -> RedshiftParametersProperty -> Bool
/= :: RedshiftParametersProperty -> RedshiftParametersProperty -> Bool
Prelude.Eq, Int -> RedshiftParametersProperty -> ShowS
[RedshiftParametersProperty] -> ShowS
RedshiftParametersProperty -> String
(Int -> RedshiftParametersProperty -> ShowS)
-> (RedshiftParametersProperty -> String)
-> ([RedshiftParametersProperty] -> ShowS)
-> Show RedshiftParametersProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RedshiftParametersProperty -> ShowS
showsPrec :: Int -> RedshiftParametersProperty -> ShowS
$cshow :: RedshiftParametersProperty -> String
show :: RedshiftParametersProperty -> String
$cshowList :: [RedshiftParametersProperty] -> ShowS
showList :: [RedshiftParametersProperty] -> ShowS
Prelude.Show)
mkRedshiftParametersProperty ::
Value Prelude.Text -> RedshiftParametersProperty
mkRedshiftParametersProperty :: Value Text -> RedshiftParametersProperty
mkRedshiftParametersProperty Value Text
database
= RedshiftParametersProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), database :: Value Text
database = Value Text
database,
clusterId :: Maybe (Value Text)
clusterId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, host :: Maybe (Value Text)
host = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
iAMParameters :: Maybe RedshiftIAMParametersProperty
iAMParameters = Maybe RedshiftIAMParametersProperty
forall a. Maybe a
Prelude.Nothing,
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
identityCenterConfiguration = Maybe IdentityCenterConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
port :: Maybe (Value Double)
port = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties RedshiftParametersProperty where
toResourceProperties :: RedshiftParametersProperty -> ResourceProperties
toResourceProperties RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::DataSource.RedshiftParameters",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
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
"Database" 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
database]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"ClusterId" (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)
clusterId,
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
"Host" (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)
host,
Key -> RedshiftIAMParametersProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IAMParameters" (RedshiftIAMParametersProperty -> (Key, Value))
-> Maybe RedshiftIAMParametersProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RedshiftIAMParametersProperty
iAMParameters,
Key -> IdentityCenterConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdentityCenterConfiguration"
(IdentityCenterConfigurationProperty -> (Key, Value))
-> Maybe IdentityCenterConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdentityCenterConfigurationProperty
identityCenterConfiguration,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Port" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
port]))}
instance JSON.ToJSON RedshiftParametersProperty where
toJSON :: RedshiftParametersProperty -> Value
toJSON RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= [(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
"Database" 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
database]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"ClusterId" (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)
clusterId,
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
"Host" (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)
host,
Key -> RedshiftIAMParametersProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IAMParameters" (RedshiftIAMParametersProperty -> (Key, Value))
-> Maybe RedshiftIAMParametersProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RedshiftIAMParametersProperty
iAMParameters,
Key -> IdentityCenterConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdentityCenterConfiguration"
(IdentityCenterConfigurationProperty -> (Key, Value))
-> Maybe IdentityCenterConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdentityCenterConfigurationProperty
identityCenterConfiguration,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Port" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
port])))
instance Property "ClusterId" RedshiftParametersProperty where
type PropertyType "ClusterId" RedshiftParametersProperty = Value Prelude.Text
set :: PropertyType "ClusterId" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType "ClusterId" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty
{clusterId :: Maybe (Value Text)
clusterId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ClusterId" RedshiftParametersProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: ()
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
haddock_workaround_ :: ()
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
instance Property "Database" RedshiftParametersProperty where
type PropertyType "Database" RedshiftParametersProperty = Value Prelude.Text
set :: PropertyType "Database" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType "Database" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty {database :: Value Text
database = PropertyType "Database" RedshiftParametersProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
instance Property "Host" RedshiftParametersProperty where
type PropertyType "Host" RedshiftParametersProperty = Value Prelude.Text
set :: PropertyType "Host" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType "Host" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty {host :: Maybe (Value Text)
host = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Host" RedshiftParametersProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
instance Property "IAMParameters" RedshiftParametersProperty where
type PropertyType "IAMParameters" RedshiftParametersProperty = RedshiftIAMParametersProperty
set :: PropertyType "IAMParameters" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType "IAMParameters" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty
{iAMParameters :: Maybe RedshiftIAMParametersProperty
iAMParameters = RedshiftIAMParametersProperty
-> Maybe RedshiftIAMParametersProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IAMParameters" RedshiftParametersProperty
RedshiftIAMParametersProperty
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
instance Property "IdentityCenterConfiguration" RedshiftParametersProperty where
type PropertyType "IdentityCenterConfiguration" RedshiftParametersProperty = IdentityCenterConfigurationProperty
set :: PropertyType
"IdentityCenterConfiguration" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType
"IdentityCenterConfiguration" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty
{identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
identityCenterConfiguration = IdentityCenterConfigurationProperty
-> Maybe IdentityCenterConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"IdentityCenterConfiguration" RedshiftParametersProperty
IdentityCenterConfigurationProperty
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
port :: Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
port :: Maybe (Value Double)
..}
instance Property "Port" RedshiftParametersProperty where
type PropertyType "Port" RedshiftParametersProperty = Value Prelude.Double
set :: PropertyType "Port" RedshiftParametersProperty
-> RedshiftParametersProperty -> RedshiftParametersProperty
set PropertyType "Port" RedshiftParametersProperty
newValue RedshiftParametersProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: RedshiftParametersProperty -> ()
clusterId :: RedshiftParametersProperty -> Maybe (Value Text)
database :: RedshiftParametersProperty -> Value Text
host :: RedshiftParametersProperty -> Maybe (Value Text)
iAMParameters :: RedshiftParametersProperty -> Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: RedshiftParametersProperty
-> Maybe IdentityCenterConfigurationProperty
port :: RedshiftParametersProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
port :: Maybe (Value Double)
..}
= RedshiftParametersProperty {port :: Maybe (Value Double)
port = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Port" RedshiftParametersProperty
Value Double
newValue, Maybe (Value Text)
Maybe IdentityCenterConfigurationProperty
Maybe RedshiftIAMParametersProperty
()
Value Text
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
haddock_workaround_ :: ()
clusterId :: Maybe (Value Text)
database :: Value Text
host :: Maybe (Value Text)
iAMParameters :: Maybe RedshiftIAMParametersProperty
identityCenterConfiguration :: Maybe IdentityCenterConfigurationProperty
..}