module Stratosphere.Glue.Connection.ConnectionInputProperty (
module Exports, ConnectionInputProperty(..),
mkConnectionInputProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Glue.Connection.AuthenticationConfigurationInputProperty as Exports
import {-# SOURCE #-} Stratosphere.Glue.Connection.PhysicalConnectionRequirementsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ConnectionInputProperty
=
ConnectionInputProperty {ConnectionInputProperty -> ()
haddock_workaround_ :: (),
ConnectionInputProperty -> Maybe Object
athenaProperties :: (Prelude.Maybe JSON.Object),
ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
authenticationConfiguration :: (Prelude.Maybe AuthenticationConfigurationInputProperty),
ConnectionInputProperty -> Maybe Object
connectionProperties :: (Prelude.Maybe JSON.Object),
ConnectionInputProperty -> Value Text
connectionType :: (Value Prelude.Text),
ConnectionInputProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
ConnectionInputProperty -> Maybe (ValueList Text)
matchCriteria :: (Prelude.Maybe (ValueList Prelude.Text)),
ConnectionInputProperty -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
physicalConnectionRequirements :: (Prelude.Maybe PhysicalConnectionRequirementsProperty),
ConnectionInputProperty -> Maybe Object
pythonProperties :: (Prelude.Maybe JSON.Object),
ConnectionInputProperty -> Maybe Object
sparkProperties :: (Prelude.Maybe JSON.Object),
ConnectionInputProperty -> Maybe (Value Bool)
validateCredentials :: (Prelude.Maybe (Value Prelude.Bool)),
ConnectionInputProperty -> Maybe (ValueList Text)
validateForComputeEnvironments :: (Prelude.Maybe (ValueList Prelude.Text))}
deriving stock (ConnectionInputProperty -> ConnectionInputProperty -> Bool
(ConnectionInputProperty -> ConnectionInputProperty -> Bool)
-> (ConnectionInputProperty -> ConnectionInputProperty -> Bool)
-> Eq ConnectionInputProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ConnectionInputProperty -> ConnectionInputProperty -> Bool
== :: ConnectionInputProperty -> ConnectionInputProperty -> Bool
$c/= :: ConnectionInputProperty -> ConnectionInputProperty -> Bool
/= :: ConnectionInputProperty -> ConnectionInputProperty -> Bool
Prelude.Eq, Int -> ConnectionInputProperty -> ShowS
[ConnectionInputProperty] -> ShowS
ConnectionInputProperty -> String
(Int -> ConnectionInputProperty -> ShowS)
-> (ConnectionInputProperty -> String)
-> ([ConnectionInputProperty] -> ShowS)
-> Show ConnectionInputProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ConnectionInputProperty -> ShowS
showsPrec :: Int -> ConnectionInputProperty -> ShowS
$cshow :: ConnectionInputProperty -> String
show :: ConnectionInputProperty -> String
$cshowList :: [ConnectionInputProperty] -> ShowS
showList :: [ConnectionInputProperty] -> ShowS
Prelude.Show)
mkConnectionInputProperty ::
Value Prelude.Text -> ConnectionInputProperty
mkConnectionInputProperty :: Value Text -> ConnectionInputProperty
mkConnectionInputProperty Value Text
connectionType
= ConnectionInputProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), connectionType :: Value Text
connectionType = Value Text
connectionType,
athenaProperties :: Maybe Object
athenaProperties = Maybe Object
forall a. Maybe a
Prelude.Nothing,
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
authenticationConfiguration = Maybe AuthenticationConfigurationInputProperty
forall a. Maybe a
Prelude.Nothing,
connectionProperties :: Maybe Object
connectionProperties = Maybe Object
forall a. Maybe a
Prelude.Nothing,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, matchCriteria :: Maybe (ValueList Text)
matchCriteria = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
physicalConnectionRequirements = Maybe PhysicalConnectionRequirementsProperty
forall a. Maybe a
Prelude.Nothing,
pythonProperties :: Maybe Object
pythonProperties = Maybe Object
forall a. Maybe a
Prelude.Nothing,
sparkProperties :: Maybe Object
sparkProperties = Maybe Object
forall a. Maybe a
Prelude.Nothing,
validateCredentials :: Maybe (Value Bool)
validateCredentials = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
validateForComputeEnvironments :: Maybe (ValueList Text)
validateForComputeEnvironments = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ConnectionInputProperty where
toResourceProperties :: ConnectionInputProperty -> ResourceProperties
toResourceProperties ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Glue::Connection.ConnectionInput",
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
"ConnectionType" 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
connectionType]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AthenaProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
athenaProperties,
Key -> AuthenticationConfigurationInputProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationConfiguration"
(AuthenticationConfigurationInputProperty -> (Key, Value))
-> Maybe AuthenticationConfigurationInputProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticationConfigurationInputProperty
authenticationConfiguration,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConnectionProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
connectionProperties,
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
"Description" (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)
description,
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
"MatchCriteria" (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)
matchCriteria,
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
"Name" (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)
name,
Key -> PhysicalConnectionRequirementsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PhysicalConnectionRequirements"
(PhysicalConnectionRequirementsProperty -> (Key, Value))
-> Maybe PhysicalConnectionRequirementsProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PhysicalConnectionRequirementsProperty
physicalConnectionRequirements,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PythonProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
pythonProperties,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SparkProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
sparkProperties,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValidateCredentials" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
validateCredentials,
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
"ValidateForComputeEnvironments"
(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)
validateForComputeEnvironments]))}
instance JSON.ToJSON ConnectionInputProperty where
toJSON :: ConnectionInputProperty -> Value
toJSON ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList 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
"ConnectionType" 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
connectionType]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AthenaProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
athenaProperties,
Key -> AuthenticationConfigurationInputProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationConfiguration"
(AuthenticationConfigurationInputProperty -> (Key, Value))
-> Maybe AuthenticationConfigurationInputProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticationConfigurationInputProperty
authenticationConfiguration,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConnectionProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
connectionProperties,
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
"Description" (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)
description,
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
"MatchCriteria" (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)
matchCriteria,
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
"Name" (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)
name,
Key -> PhysicalConnectionRequirementsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PhysicalConnectionRequirements"
(PhysicalConnectionRequirementsProperty -> (Key, Value))
-> Maybe PhysicalConnectionRequirementsProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PhysicalConnectionRequirementsProperty
physicalConnectionRequirements,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PythonProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
pythonProperties,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SparkProperties" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
sparkProperties,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ValidateCredentials" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
validateCredentials,
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
"ValidateForComputeEnvironments"
(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)
validateForComputeEnvironments])))
instance Property "AthenaProperties" ConnectionInputProperty where
type PropertyType "AthenaProperties" ConnectionInputProperty = JSON.Object
set :: PropertyType "AthenaProperties" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "AthenaProperties" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{athenaProperties :: Maybe Object
athenaProperties = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "AthenaProperties" ConnectionInputProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "AuthenticationConfiguration" ConnectionInputProperty where
type PropertyType "AuthenticationConfiguration" ConnectionInputProperty = AuthenticationConfigurationInputProperty
set :: PropertyType "AuthenticationConfiguration" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "AuthenticationConfiguration" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
authenticationConfiguration = AuthenticationConfigurationInputProperty
-> Maybe AuthenticationConfigurationInputProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuthenticationConfiguration" ConnectionInputProperty
AuthenticationConfigurationInputProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "ConnectionProperties" ConnectionInputProperty where
type PropertyType "ConnectionProperties" ConnectionInputProperty = JSON.Object
set :: PropertyType "ConnectionProperties" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "ConnectionProperties" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{connectionProperties :: Maybe Object
connectionProperties = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "ConnectionProperties" ConnectionInputProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "ConnectionType" ConnectionInputProperty where
type PropertyType "ConnectionType" ConnectionInputProperty = Value Prelude.Text
set :: PropertyType "ConnectionType" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "ConnectionType" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty {connectionType :: Value Text
connectionType = PropertyType "ConnectionType" ConnectionInputProperty
Value Text
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "Description" ConnectionInputProperty where
type PropertyType "Description" ConnectionInputProperty = Value Prelude.Text
set :: PropertyType "Description" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "Description" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" ConnectionInputProperty
Value Text
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "MatchCriteria" ConnectionInputProperty where
type PropertyType "MatchCriteria" ConnectionInputProperty = ValueList Prelude.Text
set :: PropertyType "MatchCriteria" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "MatchCriteria" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{matchCriteria :: Maybe (ValueList Text)
matchCriteria = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MatchCriteria" ConnectionInputProperty
ValueList Text
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "Name" ConnectionInputProperty where
type PropertyType "Name" ConnectionInputProperty = Value Prelude.Text
set :: PropertyType "Name" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "Name" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" ConnectionInputProperty
Value Text
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "PhysicalConnectionRequirements" ConnectionInputProperty where
type PropertyType "PhysicalConnectionRequirements" ConnectionInputProperty = PhysicalConnectionRequirementsProperty
set :: PropertyType
"PhysicalConnectionRequirements" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType
"PhysicalConnectionRequirements" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
physicalConnectionRequirements = PhysicalConnectionRequirementsProperty
-> Maybe PhysicalConnectionRequirementsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"PhysicalConnectionRequirements" ConnectionInputProperty
PhysicalConnectionRequirementsProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "PythonProperties" ConnectionInputProperty where
type PropertyType "PythonProperties" ConnectionInputProperty = JSON.Object
set :: PropertyType "PythonProperties" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "PythonProperties" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{pythonProperties :: Maybe Object
pythonProperties = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "PythonProperties" ConnectionInputProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "SparkProperties" ConnectionInputProperty where
type PropertyType "SparkProperties" ConnectionInputProperty = JSON.Object
set :: PropertyType "SparkProperties" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "SparkProperties" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{sparkProperties :: Maybe Object
sparkProperties = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "SparkProperties" ConnectionInputProperty
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "ValidateCredentials" ConnectionInputProperty where
type PropertyType "ValidateCredentials" ConnectionInputProperty = Value Prelude.Bool
set :: PropertyType "ValidateCredentials" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType "ValidateCredentials" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{validateCredentials :: Maybe (Value Bool)
validateCredentials = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ValidateCredentials" ConnectionInputProperty
Value Bool
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateForComputeEnvironments :: Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
instance Property "ValidateForComputeEnvironments" ConnectionInputProperty where
type PropertyType "ValidateForComputeEnvironments" ConnectionInputProperty = ValueList Prelude.Text
set :: PropertyType
"ValidateForComputeEnvironments" ConnectionInputProperty
-> ConnectionInputProperty -> ConnectionInputProperty
set PropertyType
"ValidateForComputeEnvironments" ConnectionInputProperty
newValue ConnectionInputProperty {Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ConnectionInputProperty -> ()
athenaProperties :: ConnectionInputProperty -> Maybe Object
authenticationConfiguration :: ConnectionInputProperty
-> Maybe AuthenticationConfigurationInputProperty
connectionProperties :: ConnectionInputProperty -> Maybe Object
connectionType :: ConnectionInputProperty -> Value Text
description :: ConnectionInputProperty -> Maybe (Value Text)
matchCriteria :: ConnectionInputProperty -> Maybe (ValueList Text)
name :: ConnectionInputProperty -> Maybe (Value Text)
physicalConnectionRequirements :: ConnectionInputProperty
-> Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: ConnectionInputProperty -> Maybe Object
sparkProperties :: ConnectionInputProperty -> Maybe Object
validateCredentials :: ConnectionInputProperty -> Maybe (Value Bool)
validateForComputeEnvironments :: ConnectionInputProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
validateForComputeEnvironments :: Maybe (ValueList Text)
..}
= ConnectionInputProperty
{validateForComputeEnvironments :: Maybe (ValueList Text)
validateForComputeEnvironments = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ValidateForComputeEnvironments" ConnectionInputProperty
ValueList Text
newValue, Maybe Object
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe AuthenticationConfigurationInputProperty
Maybe PhysicalConnectionRequirementsProperty
()
Value Text
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
haddock_workaround_ :: ()
athenaProperties :: Maybe Object
authenticationConfiguration :: Maybe AuthenticationConfigurationInputProperty
connectionProperties :: Maybe Object
connectionType :: Value Text
description :: Maybe (Value Text)
matchCriteria :: Maybe (ValueList Text)
name :: Maybe (Value Text)
physicalConnectionRequirements :: Maybe PhysicalConnectionRequirementsProperty
pythonProperties :: Maybe Object
sparkProperties :: Maybe Object
validateCredentials :: Maybe (Value Bool)
..}