Struct aws_sdk_elasticbeanstalk::model::validation_message::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ValidationMessage
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
A message describing the error or warning.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
A message describing the error or warning.
sourcepub fn severity(self, input: ValidationSeverity) -> Self
pub fn severity(self, input: ValidationSeverity) -> Self
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.
sourcepub fn set_severity(self, input: Option<ValidationSeverity>) -> Self
pub fn set_severity(self, input: Option<ValidationSeverity>) -> Self
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.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace to which the option belongs.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace to which the option belongs.
sourcepub fn option_name(self, input: impl Into<String>) -> Self
pub fn option_name(self, input: impl Into<String>) -> Self
The name of the option.
sourcepub fn set_option_name(self, input: Option<String>) -> Self
pub fn set_option_name(self, input: Option<String>) -> Self
The name of the option.
sourcepub fn build(self) -> ValidationMessage
pub fn build(self) -> ValidationMessage
Consumes the builder and constructs a ValidationMessage
.