module Stratosphere.Transfer.Connector.As2ConfigProperty (
        As2ConfigProperty(..), mkAs2ConfigProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data As2ConfigProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html>
    As2ConfigProperty {As2ConfigProperty -> ()
haddock_workaround_ :: (),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-basicauthsecretid>
                       As2ConfigProperty -> Maybe (Value Text)
basicAuthSecretId :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-compression>
                       As2ConfigProperty -> Maybe (Value Text)
compression :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-encryptionalgorithm>
                       As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-localprofileid>
                       As2ConfigProperty -> Maybe (Value Text)
localProfileId :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-mdnresponse>
                       As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-mdnsigningalgorithm>
                       As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-messagesubject>
                       As2ConfigProperty -> Maybe (Value Text)
messageSubject :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-partnerprofileid>
                       As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-preservecontenttype>
                       As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: (Prelude.Maybe (Value Prelude.Text)),
                       -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html#cfn-transfer-connector-as2config-signingalgorithm>
                       As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (As2ConfigProperty -> As2ConfigProperty -> Bool
(As2ConfigProperty -> As2ConfigProperty -> Bool)
-> (As2ConfigProperty -> As2ConfigProperty -> Bool)
-> Eq As2ConfigProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: As2ConfigProperty -> As2ConfigProperty -> Bool
== :: As2ConfigProperty -> As2ConfigProperty -> Bool
$c/= :: As2ConfigProperty -> As2ConfigProperty -> Bool
/= :: As2ConfigProperty -> As2ConfigProperty -> Bool
Prelude.Eq, Int -> As2ConfigProperty -> ShowS
[As2ConfigProperty] -> ShowS
As2ConfigProperty -> String
(Int -> As2ConfigProperty -> ShowS)
-> (As2ConfigProperty -> String)
-> ([As2ConfigProperty] -> ShowS)
-> Show As2ConfigProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> As2ConfigProperty -> ShowS
showsPrec :: Int -> As2ConfigProperty -> ShowS
$cshow :: As2ConfigProperty -> String
show :: As2ConfigProperty -> String
$cshowList :: [As2ConfigProperty] -> ShowS
showList :: [As2ConfigProperty] -> ShowS
Prelude.Show)
mkAs2ConfigProperty :: As2ConfigProperty
mkAs2ConfigProperty :: As2ConfigProperty
mkAs2ConfigProperty
  = As2ConfigProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), basicAuthSecretId :: Maybe (Value Text)
basicAuthSecretId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       compression :: Maybe (Value Text)
compression = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       encryptionAlgorithm :: Maybe (Value Text)
encryptionAlgorithm = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       localProfileId :: Maybe (Value Text)
localProfileId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, mdnResponse :: Maybe (Value Text)
mdnResponse = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       mdnSigningAlgorithm :: Maybe (Value Text)
mdnSigningAlgorithm = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       messageSubject :: Maybe (Value Text)
messageSubject = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       partnerProfileId :: Maybe (Value Text)
partnerProfileId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       preserveContentType :: Maybe (Value Text)
preserveContentType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       signingAlgorithm :: Maybe (Value Text)
signingAlgorithm = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties As2ConfigProperty where
  toResourceProperties :: As2ConfigProperty -> ResourceProperties
toResourceProperties As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Transfer::Connector.As2Config",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                           [Key -> Value 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
"BasicAuthSecretId" (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)
basicAuthSecretId,
                            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
"Compression" (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)
compression,
                            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
"EncryptionAlgorithm" (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)
encryptionAlgorithm,
                            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
"LocalProfileId" (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)
localProfileId,
                            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
"MdnResponse" (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)
mdnResponse,
                            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
"MdnSigningAlgorithm" (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)
mdnSigningAlgorithm,
                            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
"MessageSubject" (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)
messageSubject,
                            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
"PartnerProfileId" (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)
partnerProfileId,
                            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
"PreserveContentType" (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)
preserveContentType,
                            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
"SigningAlgorithm" (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)
signingAlgorithm])}
instance JSON.ToJSON As2ConfigProperty where
  toJSON :: As2ConfigProperty -> Value
toJSON As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: 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 -> 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
"BasicAuthSecretId" (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)
basicAuthSecretId,
               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
"Compression" (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)
compression,
               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
"EncryptionAlgorithm" (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)
encryptionAlgorithm,
               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
"LocalProfileId" (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)
localProfileId,
               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
"MdnResponse" (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)
mdnResponse,
               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
"MdnSigningAlgorithm" (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)
mdnSigningAlgorithm,
               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
"MessageSubject" (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)
messageSubject,
               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
"PartnerProfileId" (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)
partnerProfileId,
               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
"PreserveContentType" (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)
preserveContentType,
               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
"SigningAlgorithm" (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)
signingAlgorithm]))
instance Property "BasicAuthSecretId" As2ConfigProperty where
  type PropertyType "BasicAuthSecretId" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "BasicAuthSecretId" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "BasicAuthSecretId" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {basicAuthSecretId :: Maybe (Value Text)
basicAuthSecretId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "BasicAuthSecretId" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "Compression" As2ConfigProperty where
  type PropertyType "Compression" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "Compression" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "Compression" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {compression :: Maybe (Value Text)
compression = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Compression" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "EncryptionAlgorithm" As2ConfigProperty where
  type PropertyType "EncryptionAlgorithm" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "EncryptionAlgorithm" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "EncryptionAlgorithm" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty
        {encryptionAlgorithm :: Maybe (Value Text)
encryptionAlgorithm = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EncryptionAlgorithm" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "LocalProfileId" As2ConfigProperty where
  type PropertyType "LocalProfileId" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "LocalProfileId" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "LocalProfileId" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {localProfileId :: Maybe (Value Text)
localProfileId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LocalProfileId" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "MdnResponse" As2ConfigProperty where
  type PropertyType "MdnResponse" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "MdnResponse" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "MdnResponse" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {mdnResponse :: Maybe (Value Text)
mdnResponse = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MdnResponse" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "MdnSigningAlgorithm" As2ConfigProperty where
  type PropertyType "MdnSigningAlgorithm" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "MdnSigningAlgorithm" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "MdnSigningAlgorithm" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty
        {mdnSigningAlgorithm :: Maybe (Value Text)
mdnSigningAlgorithm = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MdnSigningAlgorithm" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "MessageSubject" As2ConfigProperty where
  type PropertyType "MessageSubject" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "MessageSubject" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "MessageSubject" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {messageSubject :: Maybe (Value Text)
messageSubject = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MessageSubject" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "PartnerProfileId" As2ConfigProperty where
  type PropertyType "PartnerProfileId" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "PartnerProfileId" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "PartnerProfileId" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {partnerProfileId :: Maybe (Value Text)
partnerProfileId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PartnerProfileId" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "PreserveContentType" As2ConfigProperty where
  type PropertyType "PreserveContentType" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "PreserveContentType" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "PreserveContentType" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty
        {preserveContentType :: Maybe (Value Text)
preserveContentType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreserveContentType" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
instance Property "SigningAlgorithm" As2ConfigProperty where
  type PropertyType "SigningAlgorithm" As2ConfigProperty = Value Prelude.Text
  set :: PropertyType "SigningAlgorithm" As2ConfigProperty
-> As2ConfigProperty -> As2ConfigProperty
set PropertyType "SigningAlgorithm" As2ConfigProperty
newValue As2ConfigProperty {Maybe (Value Text)
()
haddock_workaround_ :: As2ConfigProperty -> ()
basicAuthSecretId :: As2ConfigProperty -> Maybe (Value Text)
compression :: As2ConfigProperty -> Maybe (Value Text)
encryptionAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
localProfileId :: As2ConfigProperty -> Maybe (Value Text)
mdnResponse :: As2ConfigProperty -> Maybe (Value Text)
mdnSigningAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
messageSubject :: As2ConfigProperty -> Maybe (Value Text)
partnerProfileId :: As2ConfigProperty -> Maybe (Value Text)
preserveContentType :: As2ConfigProperty -> Maybe (Value Text)
signingAlgorithm :: As2ConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
signingAlgorithm :: Maybe (Value Text)
..}
    = As2ConfigProperty {signingAlgorithm :: Maybe (Value Text)
signingAlgorithm = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SigningAlgorithm" As2ConfigProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
haddock_workaround_ :: ()
basicAuthSecretId :: Maybe (Value Text)
compression :: Maybe (Value Text)
encryptionAlgorithm :: Maybe (Value Text)
localProfileId :: Maybe (Value Text)
mdnResponse :: Maybe (Value Text)
mdnSigningAlgorithm :: Maybe (Value Text)
messageSubject :: Maybe (Value Text)
partnerProfileId :: Maybe (Value Text)
preserveContentType :: Maybe (Value Text)
..}