Struct aws_sdk_redshiftdata::types::builders::SqlParameterBuilder
source · #[non_exhaustive]pub struct SqlParameterBuilder { /* private fields */ }Expand description
A builder for SqlParameter.
Implementations§
source§impl SqlParameterBuilder
impl SqlParameterBuilder
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more information, see Data types in the Amazon Redshift Database Developer Guide.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more information, see Data types in the Amazon Redshift Database Developer Guide.
sourcepub fn build(self) -> SqlParameter
pub fn build(self) -> SqlParameter
Consumes the builder and constructs a SqlParameter.
Trait Implementations§
source§impl Clone for SqlParameterBuilder
impl Clone for SqlParameterBuilder
source§fn clone(&self) -> SqlParameterBuilder
fn clone(&self) -> SqlParameterBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SqlParameterBuilder
impl Debug for SqlParameterBuilder
source§impl Default for SqlParameterBuilder
impl Default for SqlParameterBuilder
source§fn default() -> SqlParameterBuilder
fn default() -> SqlParameterBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SqlParameterBuilder> for SqlParameterBuilder
impl PartialEq<SqlParameterBuilder> for SqlParameterBuilder
source§fn eq(&self, other: &SqlParameterBuilder) -> bool
fn eq(&self, other: &SqlParameterBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.