libZSservicesZSamazonka-elastictranscoderZSamazonka-elastictranscoder
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.ElasticTranscoder.Types.Warning

Description

 
Synopsis

Documentation

data Warning Source #

Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.

Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.

See: newWarning smart constructor.

Constructors

Warning' 

Fields

  • code :: Maybe Text

    The code of the cross-regional warning.

  • message :: Maybe Text

    The message explaining what resources are in a different region from the pipeline.

    AWS KMS keys must be in the same region as the pipeline.

Instances

Instances details
Eq Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Methods

(==) :: Warning -> Warning -> Bool #

(/=) :: Warning -> Warning -> Bool #

Read Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Show Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Generic Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Associated Types

type Rep Warning :: Type -> Type #

Methods

from :: Warning -> Rep Warning x #

to :: Rep Warning x -> Warning #

NFData Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Methods

rnf :: Warning -> () #

Hashable Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

Methods

hashWithSalt :: Int -> Warning -> Int #

hash :: Warning -> Int #

FromJSON Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

type Rep Warning Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.Types.Warning

type Rep Warning = D1 ('MetaData "Warning" "Amazonka.ElasticTranscoder.Types.Warning" "libZSservicesZSamazonka-elastictranscoderZSamazonka-elastictranscoder" 'False) (C1 ('MetaCons "Warning'" 'PrefixI 'True) (S1 ('MetaSel ('Just "code") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newWarning :: Warning Source #

Create a value of Warning 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:code:Warning', warning_code - The code of the cross-regional warning.

$sel:message:Warning', warning_message - The message explaining what resources are in a different region from the pipeline.

AWS KMS keys must be in the same region as the pipeline.

warning_code :: Lens' Warning (Maybe Text) Source #

The code of the cross-regional warning.

warning_message :: Lens' Warning (Maybe Text) Source #

The message explaining what resources are in a different region from the pipeline.

AWS KMS keys must be in the same region as the pipeline.