Class: Aws::ElasticBeanstalk::Types::ValidationMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ValidationMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
An error or warning for a desired configuration option value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
A message describing the error or warning.
-
#namespace ⇒ String
The namespace to which the option belongs.
-
#option_name ⇒ String
The name of the option.
-
#severity ⇒ String
An indication of the severity of this message:.
Instance Attribute Details
#message ⇒ String
A message describing the error or warning.
4582 4583 4584 4585 4586 4587 4588 4589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4582 class ValidationMessage < Struct.new( :message, :severity, :namespace, :option_name) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace to which the option belongs.
4582 4583 4584 4585 4586 4587 4588 4589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4582 class ValidationMessage < Struct.new( :message, :severity, :namespace, :option_name) SENSITIVE = [] include Aws::Structure end |
#option_name ⇒ String
The name of the option.
4582 4583 4584 4585 4586 4587 4588 4589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4582 class ValidationMessage < Struct.new( :message, :severity, :namespace, :option_name) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
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.
4582 4583 4584 4585 4586 4587 4588 4589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4582 class ValidationMessage < Struct.new( :message, :severity, :namespace, :option_name) SENSITIVE = [] include Aws::Structure end |