amazonka-kinesis-video-2.0: Amazon Kinesis Video Streams SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.KinesisVideo.Types.LocalSizeConfig

Description

 
Synopsis

Documentation

data LocalSizeConfig Source #

The configuration details that include the maximum size of the media (MaxLocalMediaSizeInMB) that you want to store for a stream on the Edge Agent, as well as the strategy that should be used (StrategyOnFullSize) when a stream's maximum size has been reached.

See: newLocalSizeConfig smart constructor.

Constructors

LocalSizeConfig' 

Fields

Instances

Instances details
FromJSON LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

ToJSON LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

Generic LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

Associated Types

type Rep LocalSizeConfig :: Type -> Type #

Read LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

Show LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

NFData LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

Methods

rnf :: LocalSizeConfig -> () #

Eq LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

Hashable LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

type Rep LocalSizeConfig Source # 
Instance details

Defined in Amazonka.KinesisVideo.Types.LocalSizeConfig

type Rep LocalSizeConfig = D1 ('MetaData "LocalSizeConfig" "Amazonka.KinesisVideo.Types.LocalSizeConfig" "amazonka-kinesis-video-2.0-5DR7d8jw2IyAvZJM3U7dwM" 'False) (C1 ('MetaCons "LocalSizeConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxLocalMediaSizeInMB") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "strategyOnFullSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StrategyOnFullSize))))

newLocalSizeConfig :: LocalSizeConfig Source #

Create a value of LocalSizeConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxLocalMediaSizeInMB:LocalSizeConfig', localSizeConfig_maxLocalMediaSizeInMB - The overall maximum size of the media that you want to store for a stream on the Edge Agent.

$sel:strategyOnFullSize:LocalSizeConfig', localSizeConfig_strategyOnFullSize - The strategy to perform when a stream’s MaxLocalMediaSizeInMB limit is reached.

localSizeConfig_maxLocalMediaSizeInMB :: Lens' LocalSizeConfig (Maybe Natural) Source #

The overall maximum size of the media that you want to store for a stream on the Edge Agent.

localSizeConfig_strategyOnFullSize :: Lens' LocalSizeConfig (Maybe StrategyOnFullSize) Source #

The strategy to perform when a stream’s MaxLocalMediaSizeInMB limit is reached.