module Stratosphere.MediaPackageV2.OriginEndpoint (
        module Exports, OriginEndpoint(..), mkOriginEndpoint
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.DashManifestConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.ForceEndpointErrorConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.HlsManifestConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.LowLatencyHlsManifestConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.MssManifestConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.MediaPackageV2.OriginEndpoint.SegmentProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data OriginEndpoint
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html>
    OriginEndpoint {OriginEndpoint -> ()
haddock_workaround_ :: (),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-channelgroupname>
                    OriginEndpoint -> Value Text
channelGroupName :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-channelname>
                    OriginEndpoint -> Value Text
channelName :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-containertype>
                    OriginEndpoint -> Value Text
containerType :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-dashmanifests>
                    OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
dashManifests :: (Prelude.Maybe [DashManifestConfigurationProperty]),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-description>
                    OriginEndpoint -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-forceendpointerrorconfiguration>
                    OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
forceEndpointErrorConfiguration :: (Prelude.Maybe ForceEndpointErrorConfigurationProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-hlsmanifests>
                    OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
hlsManifests :: (Prelude.Maybe [HlsManifestConfigurationProperty]),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifests>
                    OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
lowLatencyHlsManifests :: (Prelude.Maybe [LowLatencyHlsManifestConfigurationProperty]),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-mssmanifests>
                    OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
mssManifests :: (Prelude.Maybe [MssManifestConfigurationProperty]),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-originendpointname>
                    OriginEndpoint -> Value Text
originEndpointName :: (Value Prelude.Text),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-segment>
                    OriginEndpoint -> Maybe SegmentProperty
segment :: (Prelude.Maybe SegmentProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-startoverwindowseconds>
                    OriginEndpoint -> Maybe (Value Integer)
startoverWindowSeconds :: (Prelude.Maybe (Value Prelude.Integer)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-tags>
                    OriginEndpoint -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (OriginEndpoint -> OriginEndpoint -> Bool
(OriginEndpoint -> OriginEndpoint -> Bool)
-> (OriginEndpoint -> OriginEndpoint -> Bool) -> Eq OriginEndpoint
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: OriginEndpoint -> OriginEndpoint -> Bool
== :: OriginEndpoint -> OriginEndpoint -> Bool
$c/= :: OriginEndpoint -> OriginEndpoint -> Bool
/= :: OriginEndpoint -> OriginEndpoint -> Bool
Prelude.Eq, Int -> OriginEndpoint -> ShowS
[OriginEndpoint] -> ShowS
OriginEndpoint -> String
(Int -> OriginEndpoint -> ShowS)
-> (OriginEndpoint -> String)
-> ([OriginEndpoint] -> ShowS)
-> Show OriginEndpoint
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> OriginEndpoint -> ShowS
showsPrec :: Int -> OriginEndpoint -> ShowS
$cshow :: OriginEndpoint -> String
show :: OriginEndpoint -> String
$cshowList :: [OriginEndpoint] -> ShowS
showList :: [OriginEndpoint] -> ShowS
Prelude.Show)
mkOriginEndpoint ::
  Value Prelude.Text
  -> Value Prelude.Text
     -> Value Prelude.Text -> Value Prelude.Text -> OriginEndpoint
mkOriginEndpoint :: Value Text
-> Value Text -> Value Text -> Value Text -> OriginEndpoint
mkOriginEndpoint
  Value Text
channelGroupName
  Value Text
channelName
  Value Text
containerType
  Value Text
originEndpointName
  = OriginEndpoint
      {haddock_workaround_ :: ()
haddock_workaround_ = (), channelGroupName :: Value Text
channelGroupName = Value Text
channelGroupName,
       channelName :: Value Text
channelName = Value Text
channelName, containerType :: Value Text
containerType = Value Text
containerType,
       originEndpointName :: Value Text
originEndpointName = Value Text
originEndpointName,
       dashManifests :: Maybe [DashManifestConfigurationProperty]
dashManifests = Maybe [DashManifestConfigurationProperty]
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
forceEndpointErrorConfiguration = Maybe ForceEndpointErrorConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       hlsManifests :: Maybe [HlsManifestConfigurationProperty]
hlsManifests = Maybe [HlsManifestConfigurationProperty]
forall a. Maybe a
Prelude.Nothing,
       lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
lowLatencyHlsManifests = Maybe [LowLatencyHlsManifestConfigurationProperty]
forall a. Maybe a
Prelude.Nothing,
       mssManifests :: Maybe [MssManifestConfigurationProperty]
mssManifests = Maybe [MssManifestConfigurationProperty]
forall a. Maybe a
Prelude.Nothing, segment :: Maybe SegmentProperty
segment = Maybe SegmentProperty
forall a. Maybe a
Prelude.Nothing,
       startoverWindowSeconds :: Maybe (Value Integer)
startoverWindowSeconds = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties OriginEndpoint where
  toResourceProperties :: OriginEndpoint -> ResourceProperties
toResourceProperties OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::MediaPackageV2::OriginEndpoint",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"ChannelGroupName" 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
channelGroupName,
                            Key
"ChannelName" 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
channelName,
                            Key
"ContainerType" 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
containerType,
                            Key
"OriginEndpointName" 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
originEndpointName]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> [DashManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DashManifests" ([DashManifestConfigurationProperty] -> (Key, Value))
-> Maybe [DashManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DashManifestConfigurationProperty]
dashManifests,
                               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 -> ForceEndpointErrorConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ForceEndpointErrorConfiguration"
                                 (ForceEndpointErrorConfigurationProperty -> (Key, Value))
-> Maybe ForceEndpointErrorConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ForceEndpointErrorConfigurationProperty
forceEndpointErrorConfiguration,
                               Key -> [HlsManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HlsManifests" ([HlsManifestConfigurationProperty] -> (Key, Value))
-> Maybe [HlsManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [HlsManifestConfigurationProperty]
hlsManifests,
                               Key -> [LowLatencyHlsManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LowLatencyHlsManifests"
                                 ([LowLatencyHlsManifestConfigurationProperty] -> (Key, Value))
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [LowLatencyHlsManifestConfigurationProperty]
lowLatencyHlsManifests,
                               Key -> [MssManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MssManifests" ([MssManifestConfigurationProperty] -> (Key, Value))
-> Maybe [MssManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MssManifestConfigurationProperty]
mssManifests,
                               Key -> SegmentProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Segment" (SegmentProperty -> (Key, Value))
-> Maybe SegmentProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SegmentProperty
segment,
                               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..=) Key
"StartoverWindowSeconds"
                                 (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
startoverWindowSeconds,
                               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON OriginEndpoint where
  toJSON :: OriginEndpoint -> Value
toJSON OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"ChannelGroupName" 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
channelGroupName,
               Key
"ChannelName" 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
channelName,
               Key
"ContainerType" 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
containerType,
               Key
"OriginEndpointName" 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
originEndpointName]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [DashManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DashManifests" ([DashManifestConfigurationProperty] -> (Key, Value))
-> Maybe [DashManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DashManifestConfigurationProperty]
dashManifests,
                  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 -> ForceEndpointErrorConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ForceEndpointErrorConfiguration"
                    (ForceEndpointErrorConfigurationProperty -> (Key, Value))
-> Maybe ForceEndpointErrorConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ForceEndpointErrorConfigurationProperty
forceEndpointErrorConfiguration,
                  Key -> [HlsManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HlsManifests" ([HlsManifestConfigurationProperty] -> (Key, Value))
-> Maybe [HlsManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [HlsManifestConfigurationProperty]
hlsManifests,
                  Key -> [LowLatencyHlsManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LowLatencyHlsManifests"
                    ([LowLatencyHlsManifestConfigurationProperty] -> (Key, Value))
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [LowLatencyHlsManifestConfigurationProperty]
lowLatencyHlsManifests,
                  Key -> [MssManifestConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MssManifests" ([MssManifestConfigurationProperty] -> (Key, Value))
-> Maybe [MssManifestConfigurationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MssManifestConfigurationProperty]
mssManifests,
                  Key -> SegmentProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Segment" (SegmentProperty -> (Key, Value))
-> Maybe SegmentProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SegmentProperty
segment,
                  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..=) Key
"StartoverWindowSeconds"
                    (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
startoverWindowSeconds,
                  Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "ChannelGroupName" OriginEndpoint where
  type PropertyType "ChannelGroupName" OriginEndpoint = Value Prelude.Text
  set :: PropertyType "ChannelGroupName" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "ChannelGroupName" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {channelGroupName :: Value Text
channelGroupName = PropertyType "ChannelGroupName" OriginEndpoint
Value Text
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "ChannelName" OriginEndpoint where
  type PropertyType "ChannelName" OriginEndpoint = Value Prelude.Text
  set :: PropertyType "ChannelName" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "ChannelName" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {channelName :: Value Text
channelName = PropertyType "ChannelName" OriginEndpoint
Value Text
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "ContainerType" OriginEndpoint where
  type PropertyType "ContainerType" OriginEndpoint = Value Prelude.Text
  set :: PropertyType "ContainerType" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "ContainerType" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {containerType :: Value Text
containerType = PropertyType "ContainerType" OriginEndpoint
Value Text
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "DashManifests" OriginEndpoint where
  type PropertyType "DashManifests" OriginEndpoint = [DashManifestConfigurationProperty]
  set :: PropertyType "DashManifests" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "DashManifests" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {dashManifests :: Maybe [DashManifestConfigurationProperty]
dashManifests = [DashManifestConfigurationProperty]
-> Maybe [DashManifestConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DashManifestConfigurationProperty]
PropertyType "DashManifests" OriginEndpoint
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "Description" OriginEndpoint where
  type PropertyType "Description" OriginEndpoint = Value Prelude.Text
  set :: PropertyType "Description" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "Description" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {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" OriginEndpoint
Value Text
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "ForceEndpointErrorConfiguration" OriginEndpoint where
  type PropertyType "ForceEndpointErrorConfiguration" OriginEndpoint = ForceEndpointErrorConfigurationProperty
  set :: PropertyType "ForceEndpointErrorConfiguration" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "ForceEndpointErrorConfiguration" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint
        {forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
forceEndpointErrorConfiguration = ForceEndpointErrorConfigurationProperty
-> Maybe ForceEndpointErrorConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ForceEndpointErrorConfiguration" OriginEndpoint
ForceEndpointErrorConfigurationProperty
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "HlsManifests" OriginEndpoint where
  type PropertyType "HlsManifests" OriginEndpoint = [HlsManifestConfigurationProperty]
  set :: PropertyType "HlsManifests" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "HlsManifests" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {hlsManifests :: Maybe [HlsManifestConfigurationProperty]
hlsManifests = [HlsManifestConfigurationProperty]
-> Maybe [HlsManifestConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [HlsManifestConfigurationProperty]
PropertyType "HlsManifests" OriginEndpoint
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "LowLatencyHlsManifests" OriginEndpoint where
  type PropertyType "LowLatencyHlsManifests" OriginEndpoint = [LowLatencyHlsManifestConfigurationProperty]
  set :: PropertyType "LowLatencyHlsManifests" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "LowLatencyHlsManifests" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint
        {lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
lowLatencyHlsManifests = [LowLatencyHlsManifestConfigurationProperty]
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [LowLatencyHlsManifestConfigurationProperty]
PropertyType "LowLatencyHlsManifests" OriginEndpoint
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "MssManifests" OriginEndpoint where
  type PropertyType "MssManifests" OriginEndpoint = [MssManifestConfigurationProperty]
  set :: PropertyType "MssManifests" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "MssManifests" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {mssManifests :: Maybe [MssManifestConfigurationProperty]
mssManifests = [MssManifestConfigurationProperty]
-> Maybe [MssManifestConfigurationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [MssManifestConfigurationProperty]
PropertyType "MssManifests" OriginEndpoint
newValue, Maybe [Tag]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "OriginEndpointName" OriginEndpoint where
  type PropertyType "OriginEndpointName" OriginEndpoint = Value Prelude.Text
  set :: PropertyType "OriginEndpointName" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "OriginEndpointName" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {originEndpointName :: Value Text
originEndpointName = PropertyType "OriginEndpointName" OriginEndpoint
Value Text
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "Segment" OriginEndpoint where
  type PropertyType "Segment" OriginEndpoint = SegmentProperty
  set :: PropertyType "Segment" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "Segment" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {segment :: Maybe SegmentProperty
segment = SegmentProperty -> Maybe SegmentProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Segment" OriginEndpoint
SegmentProperty
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "StartoverWindowSeconds" OriginEndpoint where
  type PropertyType "StartoverWindowSeconds" OriginEndpoint = Value Prelude.Integer
  set :: PropertyType "StartoverWindowSeconds" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "StartoverWindowSeconds" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint
        {startoverWindowSeconds :: Maybe (Value Integer)
startoverWindowSeconds = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StartoverWindowSeconds" OriginEndpoint
Value Integer
newValue, Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
tags :: Maybe [Tag]
..}
instance Property "Tags" OriginEndpoint where
  type PropertyType "Tags" OriginEndpoint = [Tag]
  set :: PropertyType "Tags" OriginEndpoint
-> OriginEndpoint -> OriginEndpoint
set PropertyType "Tags" OriginEndpoint
newValue OriginEndpoint {Maybe [Tag]
Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: OriginEndpoint -> ()
channelGroupName :: OriginEndpoint -> Value Text
channelName :: OriginEndpoint -> Value Text
containerType :: OriginEndpoint -> Value Text
dashManifests :: OriginEndpoint -> Maybe [DashManifestConfigurationProperty]
description :: OriginEndpoint -> Maybe (Value Text)
forceEndpointErrorConfiguration :: OriginEndpoint -> Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: OriginEndpoint -> Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: OriginEndpoint
-> Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: OriginEndpoint -> Maybe [MssManifestConfigurationProperty]
originEndpointName :: OriginEndpoint -> Value Text
segment :: OriginEndpoint -> Maybe SegmentProperty
startoverWindowSeconds :: OriginEndpoint -> Maybe (Value Integer)
tags :: OriginEndpoint -> Maybe [Tag]
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
    = OriginEndpoint {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" OriginEndpoint
newValue, Maybe [MssManifestConfigurationProperty]
Maybe [DashManifestConfigurationProperty]
Maybe [LowLatencyHlsManifestConfigurationProperty]
Maybe [HlsManifestConfigurationProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe ForceEndpointErrorConfigurationProperty
Maybe SegmentProperty
()
Value Text
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
haddock_workaround_ :: ()
channelGroupName :: Value Text
channelName :: Value Text
containerType :: Value Text
dashManifests :: Maybe [DashManifestConfigurationProperty]
description :: Maybe (Value Text)
forceEndpointErrorConfiguration :: Maybe ForceEndpointErrorConfigurationProperty
hlsManifests :: Maybe [HlsManifestConfigurationProperty]
lowLatencyHlsManifests :: Maybe [LowLatencyHlsManifestConfigurationProperty]
mssManifests :: Maybe [MssManifestConfigurationProperty]
originEndpointName :: Value Text
segment :: Maybe SegmentProperty
startoverWindowSeconds :: Maybe (Value Integer)
..}