libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk
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.ElasticBeanstalk.Types.ValidationMessage

Description

 
Synopsis

Documentation

data ValidationMessage Source #

An error or warning for a desired configuration option value.

See: newValidationMessage smart constructor.

Constructors

ValidationMessage' 

Fields

Instances

Instances details
Eq ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

Read ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

Show ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

Generic ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

Associated Types

type Rep ValidationMessage :: Type -> Type #

NFData ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

Methods

rnf :: ValidationMessage -> () #

Hashable ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

FromXML ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

type Rep ValidationMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ValidationMessage

type Rep ValidationMessage = D1 ('MetaData "ValidationMessage" "Amazonka.ElasticBeanstalk.Types.ValidationMessage" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "ValidationMessage'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "optionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "severity") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ValidationSeverity))) :*: (S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newValidationMessage :: ValidationMessage Source #

Create a value of ValidationMessage 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:optionName:ValidationMessage', validationMessage_optionName - The name of the option.

$sel:severity:ValidationMessage', validationMessage_severity - An indication of the severity of this message:

  • error: This message indicates that this is not a valid setting for an option.
  • warning: This message is providing information you should take into account.

$sel:namespace:ValidationMessage', validationMessage_namespace - The namespace to which the option belongs.

$sel:message:ValidationMessage', validationMessage_message - A message describing the error or warning.

validationMessage_severity :: Lens' ValidationMessage (Maybe ValidationSeverity) Source #

An indication of the severity of this message:

  • error: This message indicates that this is not a valid setting for an option.
  • warning: This message is providing information you should take into account.

validationMessage_namespace :: Lens' ValidationMessage (Maybe Text) Source #

The namespace to which the option belongs.

validationMessage_message :: Lens' ValidationMessage (Maybe Text) Source #

A message describing the error or warning.