Struct aws_sdk_athena::input::update_named_query_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateNamedQueryInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn named_query_id(self, input: impl Into<String>) -> Self
pub fn named_query_id(self, input: impl Into<String>) -> Self
The unique identifier (UUID) of the query.
sourcepub fn set_named_query_id(self, input: Option<String>) -> Self
pub fn set_named_query_id(self, input: Option<String>) -> Self
The unique identifier (UUID) of the query.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The query description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The query description.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
The contents of the query with all query statements.
sourcepub fn set_query_string(self, input: Option<String>) -> Self
pub fn set_query_string(self, input: Option<String>) -> Self
The contents of the query with all query statements.
sourcepub fn build(self) -> Result<UpdateNamedQueryInput, BuildError>
pub fn build(self) -> Result<UpdateNamedQueryInput, BuildError>
Consumes the builder and constructs a UpdateNamedQueryInput
.