module Stratosphere.CloudFront.AnycastIpList.AnycastIpListProperty (
AnycastIpListProperty(..), mkAnycastIpListProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data AnycastIpListProperty
=
AnycastIpListProperty {AnycastIpListProperty -> ()
haddock_workaround_ :: (),
AnycastIpListProperty -> ValueList Text
anycastIps :: (ValueList Prelude.Text),
AnycastIpListProperty -> Value Text
arn :: (Value Prelude.Text),
AnycastIpListProperty -> Value Text
id :: (Value Prelude.Text),
AnycastIpListProperty -> Maybe (Value Text)
ipAddressType :: (Prelude.Maybe (Value Prelude.Text)),
AnycastIpListProperty -> Value Integer
ipCount :: (Value Prelude.Integer),
AnycastIpListProperty -> Value Text
lastModifiedTime :: (Value Prelude.Text),
AnycastIpListProperty -> Value Text
name :: (Value Prelude.Text),
AnycastIpListProperty -> Value Text
status :: (Value Prelude.Text)}
deriving stock (AnycastIpListProperty -> AnycastIpListProperty -> Bool
(AnycastIpListProperty -> AnycastIpListProperty -> Bool)
-> (AnycastIpListProperty -> AnycastIpListProperty -> Bool)
-> Eq AnycastIpListProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: AnycastIpListProperty -> AnycastIpListProperty -> Bool
== :: AnycastIpListProperty -> AnycastIpListProperty -> Bool
$c/= :: AnycastIpListProperty -> AnycastIpListProperty -> Bool
/= :: AnycastIpListProperty -> AnycastIpListProperty -> Bool
Prelude.Eq, Int -> AnycastIpListProperty -> ShowS
[AnycastIpListProperty] -> ShowS
AnycastIpListProperty -> String
(Int -> AnycastIpListProperty -> ShowS)
-> (AnycastIpListProperty -> String)
-> ([AnycastIpListProperty] -> ShowS)
-> Show AnycastIpListProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> AnycastIpListProperty -> ShowS
showsPrec :: Int -> AnycastIpListProperty -> ShowS
$cshow :: AnycastIpListProperty -> String
show :: AnycastIpListProperty -> String
$cshowList :: [AnycastIpListProperty] -> ShowS
showList :: [AnycastIpListProperty] -> ShowS
Prelude.Show)
mkAnycastIpListProperty ::
ValueList Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Integer
-> Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> AnycastIpListProperty
mkAnycastIpListProperty :: ValueList Text
-> Value Text
-> Value Text
-> Value Integer
-> Value Text
-> Value Text
-> Value Text
-> AnycastIpListProperty
mkAnycastIpListProperty
ValueList Text
anycastIps
Value Text
arn
Value Text
id
Value Integer
ipCount
Value Text
lastModifiedTime
Value Text
name
Value Text
status
= AnycastIpListProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), anycastIps :: ValueList Text
anycastIps = ValueList Text
anycastIps, arn :: Value Text
arn = Value Text
arn,
id :: Value Text
id = Value Text
id, ipCount :: Value Integer
ipCount = Value Integer
ipCount, lastModifiedTime :: Value Text
lastModifiedTime = Value Text
lastModifiedTime,
name :: Value Text
name = Value Text
name, status :: Value Text
status = Value Text
status, ipAddressType :: Maybe (Value Text)
ipAddressType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties AnycastIpListProperty where
toResourceProperties :: AnycastIpListProperty -> ResourceProperties
toResourceProperties AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::CloudFront::AnycastIpList.AnycastIpList",
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
"AnycastIps" 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..= ValueList Text
anycastIps, Key
"Arn" 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
arn,
Key
"Id" 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
id, Key
"IpCount" Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Integer
ipCount,
Key
"LastModifiedTime" 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
lastModifiedTime, Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name,
Key
"Status" 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
status]
([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
"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]))}
instance JSON.ToJSON AnycastIpListProperty where
toJSON :: AnycastIpListProperty -> Value
toJSON AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value 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
"AnycastIps" 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..= ValueList Text
anycastIps, Key
"Arn" 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
arn,
Key
"Id" 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
id, Key
"IpCount" Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Integer
ipCount,
Key
"LastModifiedTime" 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
lastModifiedTime, Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name,
Key
"Status" 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
status]
([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
"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])))
instance Property "AnycastIps" AnycastIpListProperty where
type PropertyType "AnycastIps" AnycastIpListProperty = ValueList Prelude.Text
set :: PropertyType "AnycastIps" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "AnycastIps" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {anycastIps :: ValueList Text
anycastIps = PropertyType "AnycastIps" AnycastIpListProperty
ValueList Text
newValue, Maybe (Value Text)
()
Value Integer
Value Text
haddock_workaround_ :: ()
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
instance Property "Arn" AnycastIpListProperty where
type PropertyType "Arn" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "Arn" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "Arn" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {arn :: Value Text
arn = PropertyType "Arn" AnycastIpListProperty
Value Text
newValue, Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
instance Property "Id" AnycastIpListProperty where
type PropertyType "Id" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "Id" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "Id" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {id :: Value Text
id = PropertyType "Id" AnycastIpListProperty
Value Text
newValue, Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
instance Property "IpAddressType" AnycastIpListProperty where
type PropertyType "IpAddressType" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "IpAddressType" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "IpAddressType" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {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" AnycastIpListProperty
Value Text
newValue, ()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
instance Property "IpCount" AnycastIpListProperty where
type PropertyType "IpCount" AnycastIpListProperty = Value Prelude.Integer
set :: PropertyType "IpCount" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "IpCount" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {ipCount :: Value Integer
ipCount = PropertyType "IpCount" AnycastIpListProperty
Value Integer
newValue, Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
instance Property "LastModifiedTime" AnycastIpListProperty where
type PropertyType "LastModifiedTime" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "LastModifiedTime" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "LastModifiedTime" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {lastModifiedTime :: Value Text
lastModifiedTime = PropertyType "LastModifiedTime" AnycastIpListProperty
Value Text
newValue, Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
name :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
name :: Value Text
status :: Value Text
..}
instance Property "Name" AnycastIpListProperty where
type PropertyType "Name" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "Name" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "Name" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {name :: Value Text
name = PropertyType "Name" AnycastIpListProperty
Value Text
newValue, Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
status :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
status :: Value Text
..}
instance Property "Status" AnycastIpListProperty where
type PropertyType "Status" AnycastIpListProperty = Value Prelude.Text
set :: PropertyType "Status" AnycastIpListProperty
-> AnycastIpListProperty -> AnycastIpListProperty
set PropertyType "Status" AnycastIpListProperty
newValue AnycastIpListProperty {Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: AnycastIpListProperty -> ()
anycastIps :: AnycastIpListProperty -> ValueList Text
arn :: AnycastIpListProperty -> Value Text
id :: AnycastIpListProperty -> Value Text
ipAddressType :: AnycastIpListProperty -> Maybe (Value Text)
ipCount :: AnycastIpListProperty -> Value Integer
lastModifiedTime :: AnycastIpListProperty -> Value Text
name :: AnycastIpListProperty -> Value Text
status :: AnycastIpListProperty -> Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
status :: Value Text
..}
= AnycastIpListProperty {status :: Value Text
status = PropertyType "Status" AnycastIpListProperty
Value Text
newValue, Maybe (Value Text)
()
ValueList Text
Value Integer
Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
haddock_workaround_ :: ()
anycastIps :: ValueList Text
arn :: Value Text
id :: Value Text
ipAddressType :: Maybe (Value Text)
ipCount :: Value Integer
lastModifiedTime :: Value Text
name :: Value Text
..}