module Stratosphere.DataSync.LocationFSxWindows (
LocationFSxWindows(..), mkLocationFSxWindows
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data LocationFSxWindows
=
LocationFSxWindows {LocationFSxWindows -> ()
haddock_workaround_ :: (),
LocationFSxWindows -> Maybe (Value Text)
domain :: (Prelude.Maybe (Value Prelude.Text)),
LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: (Prelude.Maybe (Value Prelude.Text)),
LocationFSxWindows -> Maybe (Value Text)
password :: (Prelude.Maybe (Value Prelude.Text)),
LocationFSxWindows -> ValueList Text
securityGroupArns :: (ValueList Prelude.Text),
LocationFSxWindows -> Maybe (Value Text)
subdirectory :: (Prelude.Maybe (Value Prelude.Text)),
LocationFSxWindows -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
LocationFSxWindows -> Value Text
user :: (Value Prelude.Text)}
deriving stock (LocationFSxWindows -> LocationFSxWindows -> Bool
(LocationFSxWindows -> LocationFSxWindows -> Bool)
-> (LocationFSxWindows -> LocationFSxWindows -> Bool)
-> Eq LocationFSxWindows
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: LocationFSxWindows -> LocationFSxWindows -> Bool
== :: LocationFSxWindows -> LocationFSxWindows -> Bool
$c/= :: LocationFSxWindows -> LocationFSxWindows -> Bool
/= :: LocationFSxWindows -> LocationFSxWindows -> Bool
Prelude.Eq, Int -> LocationFSxWindows -> ShowS
[LocationFSxWindows] -> ShowS
LocationFSxWindows -> String
(Int -> LocationFSxWindows -> ShowS)
-> (LocationFSxWindows -> String)
-> ([LocationFSxWindows] -> ShowS)
-> Show LocationFSxWindows
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> LocationFSxWindows -> ShowS
showsPrec :: Int -> LocationFSxWindows -> ShowS
$cshow :: LocationFSxWindows -> String
show :: LocationFSxWindows -> String
$cshowList :: [LocationFSxWindows] -> ShowS
showList :: [LocationFSxWindows] -> ShowS
Prelude.Show)
mkLocationFSxWindows ::
ValueList Prelude.Text -> Value Prelude.Text -> LocationFSxWindows
mkLocationFSxWindows :: ValueList Text -> Value Text -> LocationFSxWindows
mkLocationFSxWindows ValueList Text
securityGroupArns Value Text
user
= LocationFSxWindows
{haddock_workaround_ :: ()
haddock_workaround_ = (), securityGroupArns :: ValueList Text
securityGroupArns = ValueList Text
securityGroupArns,
user :: Value Text
user = Value Text
user, domain :: Maybe (Value Text)
domain = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fsxFilesystemArn :: Maybe (Value Text)
fsxFilesystemArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, password :: Maybe (Value Text)
password = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
subdirectory :: Maybe (Value Text)
subdirectory = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties LocationFSxWindows where
toResourceProperties :: LocationFSxWindows -> ResourceProperties
toResourceProperties LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::DataSync::LocationFSxWindows",
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
"SecurityGroupArns" 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..= ValueList Text
securityGroupArns,
Key
"User" 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
user]
([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
"Domain" (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)
domain,
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
"FsxFilesystemArn" (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)
fsxFilesystemArn,
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
"Password" (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)
password,
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
"Subdirectory" (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)
subdirectory,
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 LocationFSxWindows where
toJSON :: LocationFSxWindows -> Value
toJSON LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= [(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
"SecurityGroupArns" 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..= ValueList Text
securityGroupArns,
Key
"User" 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
user]
([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
"Domain" (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)
domain,
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
"FsxFilesystemArn" (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)
fsxFilesystemArn,
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
"Password" (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)
password,
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
"Subdirectory" (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)
subdirectory,
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 "Domain" LocationFSxWindows where
type PropertyType "Domain" LocationFSxWindows = Value Prelude.Text
set :: PropertyType "Domain" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "Domain" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {domain :: Maybe (Value Text)
domain = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Domain" LocationFSxWindows
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
haddock_workaround_ :: ()
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
instance Property "FsxFilesystemArn" LocationFSxWindows where
type PropertyType "FsxFilesystemArn" LocationFSxWindows = Value Prelude.Text
set :: PropertyType "FsxFilesystemArn" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "FsxFilesystemArn" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {fsxFilesystemArn :: Maybe (Value Text)
fsxFilesystemArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FsxFilesystemArn" LocationFSxWindows
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
instance Property "Password" LocationFSxWindows where
type PropertyType "Password" LocationFSxWindows = Value Prelude.Text
set :: PropertyType "Password" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "Password" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {password :: Maybe (Value Text)
password = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Password" LocationFSxWindows
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
instance Property "SecurityGroupArns" LocationFSxWindows where
type PropertyType "SecurityGroupArns" LocationFSxWindows = ValueList Prelude.Text
set :: PropertyType "SecurityGroupArns" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "SecurityGroupArns" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {securityGroupArns :: ValueList Text
securityGroupArns = PropertyType "SecurityGroupArns" LocationFSxWindows
ValueList Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
instance Property "Subdirectory" LocationFSxWindows where
type PropertyType "Subdirectory" LocationFSxWindows = Value Prelude.Text
set :: PropertyType "Subdirectory" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "Subdirectory" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {subdirectory :: Maybe (Value Text)
subdirectory = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subdirectory" LocationFSxWindows
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
tags :: Maybe [Tag]
user :: Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
tags :: Maybe [Tag]
user :: Value Text
..}
instance Property "Tags" LocationFSxWindows where
type PropertyType "Tags" LocationFSxWindows = [Tag]
set :: PropertyType "Tags" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "Tags" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {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" LocationFSxWindows
newValue, Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
user :: Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
user :: Value Text
..}
instance Property "User" LocationFSxWindows where
type PropertyType "User" LocationFSxWindows = Value Prelude.Text
set :: PropertyType "User" LocationFSxWindows
-> LocationFSxWindows -> LocationFSxWindows
set PropertyType "User" LocationFSxWindows
newValue LocationFSxWindows {Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: LocationFSxWindows -> ()
domain :: LocationFSxWindows -> Maybe (Value Text)
fsxFilesystemArn :: LocationFSxWindows -> Maybe (Value Text)
password :: LocationFSxWindows -> Maybe (Value Text)
securityGroupArns :: LocationFSxWindows -> ValueList Text
subdirectory :: LocationFSxWindows -> Maybe (Value Text)
tags :: LocationFSxWindows -> Maybe [Tag]
user :: LocationFSxWindows -> Value Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
user :: Value Text
..}
= LocationFSxWindows {user :: Value Text
user = PropertyType "User" LocationFSxWindows
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
domain :: Maybe (Value Text)
fsxFilesystemArn :: Maybe (Value Text)
password :: Maybe (Value Text)
securityGroupArns :: ValueList Text
subdirectory :: Maybe (Value Text)
tags :: Maybe [Tag]
..}