pub struct Builder { /* private fields */ }
Expand description
A builder for ValidationErrorsEntry
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn check_name(self, input: impl Into<String>) -> Self
pub fn check_name(self, input: impl Into<String>) -> Self
Checks the name of the policy.
sourcepub fn set_check_name(self, input: Option<String>) -> Self
pub fn set_check_name(self, input: Option<String>) -> Self
Checks the name of the policy.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
Displays error messages if validation encounters problems during validation of the resource policy.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
Displays error messages if validation encounters problems during validation of the resource policy.
sourcepub fn build(self) -> ValidationErrorsEntry
pub fn build(self) -> ValidationErrorsEntry
Consumes the builder and constructs a ValidationErrorsEntry
.