module Stratosphere.ApiGatewayV2.DomainName.DomainNameConfigurationProperty (
DomainNameConfigurationProperty(..),
mkDomainNameConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data DomainNameConfigurationProperty
=
DomainNameConfigurationProperty {DomainNameConfigurationProperty -> ()
haddock_workaround_ :: (),
DomainNameConfigurationProperty -> Maybe (Value Text)
certificateArn :: (Prelude.Maybe (Value Prelude.Text)),
DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: (Prelude.Maybe (Value Prelude.Text)),
DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: (Prelude.Maybe (Value Prelude.Text)),
DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: (Prelude.Maybe (Value Prelude.Text)),
DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: (Prelude.Maybe (Value Prelude.Text)),
DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool
(DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool)
-> (DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool)
-> Eq DomainNameConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool
== :: DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool
$c/= :: DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool
/= :: DomainNameConfigurationProperty
-> DomainNameConfigurationProperty -> Bool
Prelude.Eq, Int -> DomainNameConfigurationProperty -> ShowS
[DomainNameConfigurationProperty] -> ShowS
DomainNameConfigurationProperty -> String
(Int -> DomainNameConfigurationProperty -> ShowS)
-> (DomainNameConfigurationProperty -> String)
-> ([DomainNameConfigurationProperty] -> ShowS)
-> Show DomainNameConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DomainNameConfigurationProperty -> ShowS
showsPrec :: Int -> DomainNameConfigurationProperty -> ShowS
$cshow :: DomainNameConfigurationProperty -> String
show :: DomainNameConfigurationProperty -> String
$cshowList :: [DomainNameConfigurationProperty] -> ShowS
showList :: [DomainNameConfigurationProperty] -> ShowS
Prelude.Show)
mkDomainNameConfigurationProperty ::
DomainNameConfigurationProperty
mkDomainNameConfigurationProperty :: DomainNameConfigurationProperty
mkDomainNameConfigurationProperty
= DomainNameConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), certificateArn :: Maybe (Value Text)
certificateArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
certificateName :: Maybe (Value Text)
certificateName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, endpointType :: Maybe (Value Text)
endpointType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
ipAddressType :: Maybe (Value Text)
ipAddressType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
ownershipVerificationCertificateArn :: Maybe (Value Text)
ownershipVerificationCertificateArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
securityPolicy :: Maybe (Value Text)
securityPolicy = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DomainNameConfigurationProperty where
toResourceProperties :: DomainNameConfigurationProperty -> ResourceProperties
toResourceProperties DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::ApiGatewayV2::DomainName.DomainNameConfiguration",
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
"CertificateArn" (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)
certificateArn,
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
"CertificateName" (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)
certificateName,
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
"EndpointType" (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)
endpointType,
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
"IpAddressType" (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)
ipAddressType,
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
"OwnershipVerificationCertificateArn"
(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)
ownershipVerificationCertificateArn,
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
"SecurityPolicy" (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)
securityPolicy])}
instance JSON.ToJSON DomainNameConfigurationProperty where
toJSON :: DomainNameConfigurationProperty -> Value
toJSON DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: 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
"CertificateArn" (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)
certificateArn,
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
"CertificateName" (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)
certificateName,
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
"EndpointType" (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)
endpointType,
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
"IpAddressType" (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)
ipAddressType,
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
"OwnershipVerificationCertificateArn"
(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)
ownershipVerificationCertificateArn,
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
"SecurityPolicy" (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)
securityPolicy]))
instance Property "CertificateArn" DomainNameConfigurationProperty where
type PropertyType "CertificateArn" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType "CertificateArn" DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType "CertificateArn" DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{certificateArn :: Maybe (Value Text)
certificateArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CertificateArn" DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
instance Property "CertificateName" DomainNameConfigurationProperty where
type PropertyType "CertificateName" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType "CertificateName" DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType "CertificateName" DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{certificateName :: Maybe (Value Text)
certificateName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CertificateName" DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
instance Property "EndpointType" DomainNameConfigurationProperty where
type PropertyType "EndpointType" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType "EndpointType" DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType "EndpointType" DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{endpointType :: Maybe (Value Text)
endpointType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EndpointType" DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
instance Property "IpAddressType" DomainNameConfigurationProperty where
type PropertyType "IpAddressType" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType "IpAddressType" DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType "IpAddressType" DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{ipAddressType :: Maybe (Value Text)
ipAddressType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IpAddressType" DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
instance Property "OwnershipVerificationCertificateArn" DomainNameConfigurationProperty where
type PropertyType "OwnershipVerificationCertificateArn" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType
"OwnershipVerificationCertificateArn"
DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType
"OwnershipVerificationCertificateArn"
DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{ownershipVerificationCertificateArn :: Maybe (Value Text)
ownershipVerificationCertificateArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"OwnershipVerificationCertificateArn"
DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
instance Property "SecurityPolicy" DomainNameConfigurationProperty where
type PropertyType "SecurityPolicy" DomainNameConfigurationProperty = Value Prelude.Text
set :: PropertyType "SecurityPolicy" DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
-> DomainNameConfigurationProperty
set PropertyType "SecurityPolicy" DomainNameConfigurationProperty
newValue DomainNameConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: DomainNameConfigurationProperty -> ()
certificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
certificateName :: DomainNameConfigurationProperty -> Maybe (Value Text)
endpointType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ipAddressType :: DomainNameConfigurationProperty -> Maybe (Value Text)
ownershipVerificationCertificateArn :: DomainNameConfigurationProperty -> Maybe (Value Text)
securityPolicy :: DomainNameConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
securityPolicy :: Maybe (Value Text)
..}
= DomainNameConfigurationProperty
{securityPolicy :: Maybe (Value Text)
securityPolicy = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SecurityPolicy" DomainNameConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
haddock_workaround_ :: ()
certificateArn :: Maybe (Value Text)
certificateName :: Maybe (Value Text)
endpointType :: Maybe (Value Text)
ipAddressType :: Maybe (Value Text)
ownershipVerificationCertificateArn :: Maybe (Value Text)
..}