module Stratosphere.FSx.StorageVirtualMachine.SelfManagedActiveDirectoryConfigurationProperty (
SelfManagedActiveDirectoryConfigurationProperty(..),
mkSelfManagedActiveDirectoryConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SelfManagedActiveDirectoryConfigurationProperty
=
SelfManagedActiveDirectoryConfigurationProperty {SelfManagedActiveDirectoryConfigurationProperty -> ()
haddock_workaround_ :: (),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
dnsIps :: (Prelude.Maybe (ValueList Prelude.Text)),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
domainName :: (Prelude.Maybe (Value Prelude.Text)),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: (Prelude.Maybe (Value Prelude.Text)),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: (Prelude.Maybe (Value Prelude.Text)),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: (Prelude.Maybe (Value Prelude.Text)),
SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool
(SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool)
-> (SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool)
-> Eq SelfManagedActiveDirectoryConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool
== :: SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool
$c/= :: SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool
/= :: SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty -> Bool
Prelude.Eq, Int -> SelfManagedActiveDirectoryConfigurationProperty -> ShowS
[SelfManagedActiveDirectoryConfigurationProperty] -> ShowS
SelfManagedActiveDirectoryConfigurationProperty -> String
(Int -> SelfManagedActiveDirectoryConfigurationProperty -> ShowS)
-> (SelfManagedActiveDirectoryConfigurationProperty -> String)
-> ([SelfManagedActiveDirectoryConfigurationProperty] -> ShowS)
-> Show SelfManagedActiveDirectoryConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SelfManagedActiveDirectoryConfigurationProperty -> ShowS
showsPrec :: Int -> SelfManagedActiveDirectoryConfigurationProperty -> ShowS
$cshow :: SelfManagedActiveDirectoryConfigurationProperty -> String
show :: SelfManagedActiveDirectoryConfigurationProperty -> String
$cshowList :: [SelfManagedActiveDirectoryConfigurationProperty] -> ShowS
showList :: [SelfManagedActiveDirectoryConfigurationProperty] -> ShowS
Prelude.Show)
mkSelfManagedActiveDirectoryConfigurationProperty ::
SelfManagedActiveDirectoryConfigurationProperty
mkSelfManagedActiveDirectoryConfigurationProperty :: SelfManagedActiveDirectoryConfigurationProperty
mkSelfManagedActiveDirectoryConfigurationProperty
= SelfManagedActiveDirectoryConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), dnsIps :: Maybe (ValueList Text)
dnsIps = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
domainName :: Maybe (Value Text)
domainName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fileSystemAdministratorsGroup :: Maybe (Value Text)
fileSystemAdministratorsGroup = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
organizationalUnitDistinguishedName :: Maybe (Value Text)
organizationalUnitDistinguishedName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
password :: Maybe (Value Text)
password = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, userName :: Maybe (Value Text)
userName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SelfManagedActiveDirectoryConfigurationProperty where
toResourceProperties :: SelfManagedActiveDirectoryConfigurationProperty
-> ResourceProperties
toResourceProperties
SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::FSx::StorageVirtualMachine.SelfManagedActiveDirectoryConfiguration",
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 -> 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
"DnsIps" (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)
dnsIps,
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
"DomainName" (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)
domainName,
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
"FileSystemAdministratorsGroup"
(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)
fileSystemAdministratorsGroup,
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
"OrganizationalUnitDistinguishedName"
(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)
organizationalUnitDistinguishedName,
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
"UserName" (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)
userName])}
instance JSON.ToJSON SelfManagedActiveDirectoryConfigurationProperty where
toJSON :: SelfManagedActiveDirectoryConfigurationProperty -> Value
toJSON SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value 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 -> 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
"DnsIps" (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)
dnsIps,
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
"DomainName" (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)
domainName,
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
"FileSystemAdministratorsGroup"
(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)
fileSystemAdministratorsGroup,
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
"OrganizationalUnitDistinguishedName"
(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)
organizationalUnitDistinguishedName,
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
"UserName" (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)
userName]))
instance Property "DnsIps" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "DnsIps" SelfManagedActiveDirectoryConfigurationProperty = ValueList Prelude.Text
set :: PropertyType
"DnsIps" SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"DnsIps" SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{dnsIps :: Maybe (ValueList Text)
dnsIps = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"DnsIps" SelfManagedActiveDirectoryConfigurationProperty
ValueList Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
haddock_workaround_ :: ()
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
instance Property "DomainName" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "DomainName" SelfManagedActiveDirectoryConfigurationProperty = Value Prelude.Text
set :: PropertyType
"DomainName" SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"DomainName" SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{domainName :: Maybe (Value Text)
domainName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"DomainName" SelfManagedActiveDirectoryConfigurationProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
instance Property "FileSystemAdministratorsGroup" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "FileSystemAdministratorsGroup" SelfManagedActiveDirectoryConfigurationProperty = Value Prelude.Text
set :: PropertyType
"FileSystemAdministratorsGroup"
SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"FileSystemAdministratorsGroup"
SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{fileSystemAdministratorsGroup :: Maybe (Value Text)
fileSystemAdministratorsGroup = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"FileSystemAdministratorsGroup"
SelfManagedActiveDirectoryConfigurationProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
instance Property "OrganizationalUnitDistinguishedName" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "OrganizationalUnitDistinguishedName" SelfManagedActiveDirectoryConfigurationProperty = Value Prelude.Text
set :: PropertyType
"OrganizationalUnitDistinguishedName"
SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"OrganizationalUnitDistinguishedName"
SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{organizationalUnitDistinguishedName :: Maybe (Value Text)
organizationalUnitDistinguishedName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"OrganizationalUnitDistinguishedName"
SelfManagedActiveDirectoryConfigurationProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
instance Property "Password" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "Password" SelfManagedActiveDirectoryConfigurationProperty = Value Prelude.Text
set :: PropertyType
"Password" SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"Password" SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{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" SelfManagedActiveDirectoryConfigurationProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
userName :: Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
instance Property "UserName" SelfManagedActiveDirectoryConfigurationProperty where
type PropertyType "UserName" SelfManagedActiveDirectoryConfigurationProperty = Value Prelude.Text
set :: PropertyType
"UserName" SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
-> SelfManagedActiveDirectoryConfigurationProperty
set PropertyType
"UserName" SelfManagedActiveDirectoryConfigurationProperty
newValue SelfManagedActiveDirectoryConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SelfManagedActiveDirectoryConfigurationProperty -> ()
dnsIps :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (ValueList Text)
domainName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
fileSystemAdministratorsGroup :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
organizationalUnitDistinguishedName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
password :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
userName :: SelfManagedActiveDirectoryConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
userName :: Maybe (Value Text)
..}
= SelfManagedActiveDirectoryConfigurationProperty
{userName :: Maybe (Value Text)
userName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"UserName" SelfManagedActiveDirectoryConfigurationProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
haddock_workaround_ :: ()
dnsIps :: Maybe (ValueList Text)
domainName :: Maybe (Value Text)
fileSystemAdministratorsGroup :: Maybe (Value Text)
organizationalUnitDistinguishedName :: Maybe (Value Text)
password :: Maybe (Value Text)
..}