pub struct Builder { /* private fields */ }
Expand description
A builder for UnprocessedQueryExecutionId
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn query_execution_id(self, input: impl Into<String>) -> Self
pub fn query_execution_id(self, input: impl Into<String>) -> Self
The unique identifier of the query execution.
sourcepub fn set_query_execution_id(self, input: Option<String>) -> Self
pub fn set_query_execution_id(self, input: Option<String>) -> Self
The unique identifier of the query execution.
sourcepub fn error_code(self, input: impl Into<String>) -> Self
pub fn error_code(self, input: impl Into<String>) -> Self
The error code returned when the query execution failed to process, if applicable.
sourcepub fn set_error_code(self, input: Option<String>) -> Self
pub fn set_error_code(self, input: Option<String>) -> Self
The error code returned when the query execution failed to process, if applicable.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
The error message returned when the query execution failed to process, if applicable.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
The error message returned when the query execution failed to process, if applicable.
sourcepub fn build(self) -> UnprocessedQueryExecutionId
pub fn build(self) -> UnprocessedQueryExecutionId
Consumes the builder and constructs a UnprocessedQueryExecutionId
.