module Stratosphere.EC2.VerifiedAccessEndpoint.RdsOptionsProperty (
RdsOptionsProperty(..), mkRdsOptionsProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data RdsOptionsProperty
=
RdsOptionsProperty {RdsOptionsProperty -> ()
haddock_workaround_ :: (),
RdsOptionsProperty -> Maybe (Value Integer)
port :: (Prelude.Maybe (Value Prelude.Integer)),
RdsOptionsProperty -> Maybe (Value Text)
protocol :: (Prelude.Maybe (Value Prelude.Text)),
RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: (Prelude.Maybe (Value Prelude.Text)),
RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: (Prelude.Maybe (Value Prelude.Text)),
RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: (Prelude.Maybe (Value Prelude.Text)),
RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: (Prelude.Maybe (Value Prelude.Text)),
RdsOptionsProperty -> Maybe (ValueList Text)
subnetIds :: (Prelude.Maybe (ValueList Prelude.Text))}
deriving stock (RdsOptionsProperty -> RdsOptionsProperty -> Bool
(RdsOptionsProperty -> RdsOptionsProperty -> Bool)
-> (RdsOptionsProperty -> RdsOptionsProperty -> Bool)
-> Eq RdsOptionsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RdsOptionsProperty -> RdsOptionsProperty -> Bool
== :: RdsOptionsProperty -> RdsOptionsProperty -> Bool
$c/= :: RdsOptionsProperty -> RdsOptionsProperty -> Bool
/= :: RdsOptionsProperty -> RdsOptionsProperty -> Bool
Prelude.Eq, Int -> RdsOptionsProperty -> ShowS
[RdsOptionsProperty] -> ShowS
RdsOptionsProperty -> String
(Int -> RdsOptionsProperty -> ShowS)
-> (RdsOptionsProperty -> String)
-> ([RdsOptionsProperty] -> ShowS)
-> Show RdsOptionsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RdsOptionsProperty -> ShowS
showsPrec :: Int -> RdsOptionsProperty -> ShowS
$cshow :: RdsOptionsProperty -> String
show :: RdsOptionsProperty -> String
$cshowList :: [RdsOptionsProperty] -> ShowS
showList :: [RdsOptionsProperty] -> ShowS
Prelude.Show)
mkRdsOptionsProperty :: RdsOptionsProperty
mkRdsOptionsProperty :: RdsOptionsProperty
mkRdsOptionsProperty
= RdsOptionsProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), port :: Maybe (Value Integer)
port = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
protocol :: Maybe (Value Text)
protocol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, rdsDbClusterArn :: Maybe (Value Text)
rdsDbClusterArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbInstanceArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
rdsDbProxyArn :: Maybe (Value Text)
rdsDbProxyArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, rdsEndpoint :: Maybe (Value Text)
rdsEndpoint = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
subnetIds :: Maybe (ValueList Text)
subnetIds = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties RdsOptionsProperty where
toResourceProperties :: RdsOptionsProperty -> ResourceProperties
toResourceProperties RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::EC2::VerifiedAccessEndpoint.RdsOptions",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"Port" (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)
port,
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
"Protocol" (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)
protocol,
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
"RdsDbClusterArn" (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)
rdsDbClusterArn,
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
"RdsDbInstanceArn" (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)
rdsDbInstanceArn,
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
"RdsDbProxyArn" (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)
rdsDbProxyArn,
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
"RdsEndpoint" (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)
rdsEndpoint,
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
"SubnetIds" (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)
subnetIds])}
instance JSON.ToJSON RdsOptionsProperty where
toJSON :: RdsOptionsProperty -> Value
toJSON RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"Port" (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)
port,
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
"Protocol" (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)
protocol,
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
"RdsDbClusterArn" (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)
rdsDbClusterArn,
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
"RdsDbInstanceArn" (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)
rdsDbInstanceArn,
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
"RdsDbProxyArn" (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)
rdsDbProxyArn,
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
"RdsEndpoint" (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)
rdsEndpoint,
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
"SubnetIds" (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)
subnetIds]))
instance Property "Port" RdsOptionsProperty where
type PropertyType "Port" RdsOptionsProperty = Value Prelude.Integer
set :: PropertyType "Port" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "Port" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {port :: Maybe (Value Integer)
port = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Port" RdsOptionsProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "Protocol" RdsOptionsProperty where
type PropertyType "Protocol" RdsOptionsProperty = Value Prelude.Text
set :: PropertyType "Protocol" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "Protocol" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {protocol :: Maybe (Value Text)
protocol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Protocol" RdsOptionsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "RdsDbClusterArn" RdsOptionsProperty where
type PropertyType "RdsDbClusterArn" RdsOptionsProperty = Value Prelude.Text
set :: PropertyType "RdsDbClusterArn" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "RdsDbClusterArn" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {rdsDbClusterArn :: Maybe (Value Text)
rdsDbClusterArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RdsDbClusterArn" RdsOptionsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "RdsDbInstanceArn" RdsOptionsProperty where
type PropertyType "RdsDbInstanceArn" RdsOptionsProperty = Value Prelude.Text
set :: PropertyType "RdsDbInstanceArn" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "RdsDbInstanceArn" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {rdsDbInstanceArn :: Maybe (Value Text)
rdsDbInstanceArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RdsDbInstanceArn" RdsOptionsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "RdsDbProxyArn" RdsOptionsProperty where
type PropertyType "RdsDbProxyArn" RdsOptionsProperty = Value Prelude.Text
set :: PropertyType "RdsDbProxyArn" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "RdsDbProxyArn" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {rdsDbProxyArn :: Maybe (Value Text)
rdsDbProxyArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RdsDbProxyArn" RdsOptionsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "RdsEndpoint" RdsOptionsProperty where
type PropertyType "RdsEndpoint" RdsOptionsProperty = Value Prelude.Text
set :: PropertyType "RdsEndpoint" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "RdsEndpoint" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {rdsEndpoint :: Maybe (Value Text)
rdsEndpoint = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RdsEndpoint" RdsOptionsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
instance Property "SubnetIds" RdsOptionsProperty where
type PropertyType "SubnetIds" RdsOptionsProperty = ValueList Prelude.Text
set :: PropertyType "SubnetIds" RdsOptionsProperty
-> RdsOptionsProperty -> RdsOptionsProperty
set PropertyType "SubnetIds" RdsOptionsProperty
newValue RdsOptionsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RdsOptionsProperty -> ()
port :: RdsOptionsProperty -> Maybe (Value Integer)
protocol :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbClusterArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbInstanceArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsDbProxyArn :: RdsOptionsProperty -> Maybe (Value Text)
rdsEndpoint :: RdsOptionsProperty -> Maybe (Value Text)
subnetIds :: RdsOptionsProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
subnetIds :: Maybe (ValueList Text)
..}
= RdsOptionsProperty {subnetIds :: Maybe (ValueList Text)
subnetIds = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SubnetIds" RdsOptionsProperty
ValueList Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
haddock_workaround_ :: ()
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
rdsDbClusterArn :: Maybe (Value Text)
rdsDbInstanceArn :: Maybe (Value Text)
rdsDbProxyArn :: Maybe (Value Text)
rdsEndpoint :: Maybe (Value Text)
..}