module Stratosphere.OpenSearchService.Application (
        module Exports, Application(..), mkApplication
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.OpenSearchService.Application.AppConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.OpenSearchService.Application.DataSourceProperty as Exports
import {-# SOURCE #-} Stratosphere.OpenSearchService.Application.IamIdentityCenterOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Application
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html>
    Application {Application -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-appconfigs>
                 Application -> Maybe [AppConfigProperty]
appConfigs :: (Prelude.Maybe [AppConfigProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-datasources>
                 Application -> Maybe [DataSourceProperty]
dataSources :: (Prelude.Maybe [DataSourceProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-endpoint>
                 Application -> Maybe (Value Text)
endpoint :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-iamidentitycenteroptions>
                 Application -> Maybe IamIdentityCenterOptionsProperty
iamIdentityCenterOptions :: (Prelude.Maybe IamIdentityCenterOptionsProperty),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-name>
                 Application -> Value Text
name :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-application.html#cfn-opensearchservice-application-tags>
                 Application -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (Application -> Application -> Bool
(Application -> Application -> Bool)
-> (Application -> Application -> Bool) -> Eq Application
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Application -> Application -> Bool
== :: Application -> Application -> Bool
$c/= :: Application -> Application -> Bool
/= :: Application -> Application -> Bool
Prelude.Eq, Int -> Application -> ShowS
[Application] -> ShowS
Application -> String
(Int -> Application -> ShowS)
-> (Application -> String)
-> ([Application] -> ShowS)
-> Show Application
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Application -> ShowS
showsPrec :: Int -> Application -> ShowS
$cshow :: Application -> String
show :: Application -> String
$cshowList :: [Application] -> ShowS
showList :: [Application] -> ShowS
Prelude.Show)
mkApplication :: Value Prelude.Text -> Application
mkApplication :: Value Text -> Application
mkApplication Value Text
name
  = Application
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
       appConfigs :: Maybe [AppConfigProperty]
appConfigs = Maybe [AppConfigProperty]
forall a. Maybe a
Prelude.Nothing, dataSources :: Maybe [DataSourceProperty]
dataSources = Maybe [DataSourceProperty]
forall a. Maybe a
Prelude.Nothing,
       endpoint :: Maybe (Value Text)
endpoint = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
iamIdentityCenterOptions = Maybe IamIdentityCenterOptionsProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Application where
  toResourceProperties :: Application -> ResourceProperties
toResourceProperties Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::OpenSearchService::Application",
         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
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> [AppConfigProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AppConfigs" ([AppConfigProperty] -> (Key, Value))
-> Maybe [AppConfigProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AppConfigProperty]
appConfigs,
                               Key -> [DataSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataSources" ([DataSourceProperty] -> (Key, Value))
-> Maybe [DataSourceProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceProperty]
dataSources,
                               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
"Endpoint" (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)
endpoint,
                               Key -> IamIdentityCenterOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IamIdentityCenterOptions"
                                 (IamIdentityCenterOptionsProperty -> (Key, Value))
-> Maybe IamIdentityCenterOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IamIdentityCenterOptionsProperty
iamIdentityCenterOptions,
                               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 Application where
  toJSON :: Application -> Value
toJSON Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [AppConfigProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AppConfigs" ([AppConfigProperty] -> (Key, Value))
-> Maybe [AppConfigProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AppConfigProperty]
appConfigs,
                  Key -> [DataSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataSources" ([DataSourceProperty] -> (Key, Value))
-> Maybe [DataSourceProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceProperty]
dataSources,
                  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
"Endpoint" (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)
endpoint,
                  Key -> IamIdentityCenterOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IamIdentityCenterOptions"
                    (IamIdentityCenterOptionsProperty -> (Key, Value))
-> Maybe IamIdentityCenterOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IamIdentityCenterOptionsProperty
iamIdentityCenterOptions,
                  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 "AppConfigs" Application where
  type PropertyType "AppConfigs" Application = [AppConfigProperty]
  set :: PropertyType "AppConfigs" Application -> Application -> Application
set PropertyType "AppConfigs" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = Application {appConfigs :: Maybe [AppConfigProperty]
appConfigs = [AppConfigProperty] -> Maybe [AppConfigProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [AppConfigProperty]
PropertyType "AppConfigs" Application
newValue, Maybe [Tag]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: ()
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "DataSources" Application where
  type PropertyType "DataSources" Application = [DataSourceProperty]
  set :: PropertyType "DataSources" Application
-> Application -> Application
set PropertyType "DataSources" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = Application {dataSources :: Maybe [DataSourceProperty]
dataSources = [DataSourceProperty] -> Maybe [DataSourceProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DataSourceProperty]
PropertyType "DataSources" Application
newValue, Maybe [Tag]
Maybe [AppConfigProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Endpoint" Application where
  type PropertyType "Endpoint" Application = Value Prelude.Text
  set :: PropertyType "Endpoint" Application -> Application -> Application
set PropertyType "Endpoint" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = Application {endpoint :: Maybe (Value Text)
endpoint = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Endpoint" Application
Value Text
newValue, Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "IamIdentityCenterOptions" Application where
  type PropertyType "IamIdentityCenterOptions" Application = IamIdentityCenterOptionsProperty
  set :: PropertyType "IamIdentityCenterOptions" Application
-> Application -> Application
set PropertyType "IamIdentityCenterOptions" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = Application
        {iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
iamIdentityCenterOptions = IamIdentityCenterOptionsProperty
-> Maybe IamIdentityCenterOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IamIdentityCenterOptions" Application
IamIdentityCenterOptionsProperty
newValue, Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Name" Application where
  type PropertyType "Name" Application = Value Prelude.Text
  set :: PropertyType "Name" Application -> Application -> Application
set PropertyType "Name" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..} = Application {name :: Value Text
name = PropertyType "Name" Application
Value Text
newValue, Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
tags :: Maybe [Tag]
..}
instance Property "Tags" Application where
  type PropertyType "Tags" Application = [Tag]
  set :: PropertyType "Tags" Application -> Application -> Application
set PropertyType "Tags" Application
newValue Application {Maybe [Tag]
Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: Application -> ()
appConfigs :: Application -> Maybe [AppConfigProperty]
dataSources :: Application -> Maybe [DataSourceProperty]
endpoint :: Application -> Maybe (Value Text)
iamIdentityCenterOptions :: Application -> Maybe IamIdentityCenterOptionsProperty
name :: Application -> Value Text
tags :: Application -> Maybe [Tag]
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
tags :: Maybe [Tag]
..}
    = Application {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" Application
newValue, Maybe [AppConfigProperty]
Maybe [DataSourceProperty]
Maybe (Value Text)
Maybe IamIdentityCenterOptionsProperty
()
Value Text
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
haddock_workaround_ :: ()
appConfigs :: Maybe [AppConfigProperty]
dataSources :: Maybe [DataSourceProperty]
endpoint :: Maybe (Value Text)
iamIdentityCenterOptions :: Maybe IamIdentityCenterOptionsProperty
name :: Value Text
..}