#[non_exhaustive]pub struct ViewRepresentationInputBuilder { /* private fields */ }Expand description
A builder for ViewRepresentationInput.
Implementations§
source§impl ViewRepresentationInputBuilder
impl ViewRepresentationInputBuilder
sourcepub fn dialect(self, input: ViewDialect) -> Self
pub fn dialect(self, input: ViewDialect) -> Self
A parameter that specifies the engine type of a specific representation.
sourcepub fn set_dialect(self, input: Option<ViewDialect>) -> Self
pub fn set_dialect(self, input: Option<ViewDialect>) -> Self
A parameter that specifies the engine type of a specific representation.
sourcepub fn get_dialect(&self) -> &Option<ViewDialect>
pub fn get_dialect(&self) -> &Option<ViewDialect>
A parameter that specifies the engine type of a specific representation.
sourcepub fn dialect_version(self, input: impl Into<String>) -> Self
pub fn dialect_version(self, input: impl Into<String>) -> Self
A parameter that specifies the version of the engine of a specific representation.
sourcepub fn set_dialect_version(self, input: Option<String>) -> Self
pub fn set_dialect_version(self, input: Option<String>) -> Self
A parameter that specifies the version of the engine of a specific representation.
sourcepub fn get_dialect_version(&self) -> &Option<String>
pub fn get_dialect_version(&self) -> &Option<String>
A parameter that specifies the version of the engine of a specific representation.
sourcepub fn view_original_text(self, input: impl Into<String>) -> Self
pub fn view_original_text(self, input: impl Into<String>) -> Self
A string that represents the original SQL query that describes the view.
sourcepub fn set_view_original_text(self, input: Option<String>) -> Self
pub fn set_view_original_text(self, input: Option<String>) -> Self
A string that represents the original SQL query that describes the view.
sourcepub fn get_view_original_text(&self) -> &Option<String>
pub fn get_view_original_text(&self) -> &Option<String>
A string that represents the original SQL query that describes the view.
sourcepub fn validation_connection(self, input: impl Into<String>) -> Self
pub fn validation_connection(self, input: impl Into<String>) -> Self
The name of the connection to be used to validate the specific representation of the view.
sourcepub fn set_validation_connection(self, input: Option<String>) -> Self
pub fn set_validation_connection(self, input: Option<String>) -> Self
The name of the connection to be used to validate the specific representation of the view.
sourcepub fn get_validation_connection(&self) -> &Option<String>
pub fn get_validation_connection(&self) -> &Option<String>
The name of the connection to be used to validate the specific representation of the view.
sourcepub fn view_expanded_text(self, input: impl Into<String>) -> Self
pub fn view_expanded_text(self, input: impl Into<String>) -> Self
A string that represents the SQL query that describes the view with expanded resource ARNs
sourcepub fn set_view_expanded_text(self, input: Option<String>) -> Self
pub fn set_view_expanded_text(self, input: Option<String>) -> Self
A string that represents the SQL query that describes the view with expanded resource ARNs
sourcepub fn get_view_expanded_text(&self) -> &Option<String>
pub fn get_view_expanded_text(&self) -> &Option<String>
A string that represents the SQL query that describes the view with expanded resource ARNs
sourcepub fn build(self) -> ViewRepresentationInput
pub fn build(self) -> ViewRepresentationInput
Consumes the builder and constructs a ViewRepresentationInput.
Trait Implementations§
source§impl Clone for ViewRepresentationInputBuilder
impl Clone for ViewRepresentationInputBuilder
source§fn clone(&self) -> ViewRepresentationInputBuilder
fn clone(&self) -> ViewRepresentationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ViewRepresentationInputBuilder
impl Default for ViewRepresentationInputBuilder
source§fn default() -> ViewRepresentationInputBuilder
fn default() -> ViewRepresentationInputBuilder
source§impl PartialEq for ViewRepresentationInputBuilder
impl PartialEq for ViewRepresentationInputBuilder
source§fn eq(&self, other: &ViewRepresentationInputBuilder) -> bool
fn eq(&self, other: &ViewRepresentationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ViewRepresentationInputBuilder
Auto Trait Implementations§
impl Freeze for ViewRepresentationInputBuilder
impl RefUnwindSafe for ViewRepresentationInputBuilder
impl Send for ViewRepresentationInputBuilder
impl Sync for ViewRepresentationInputBuilder
impl Unpin for ViewRepresentationInputBuilder
impl UnwindSafe for ViewRepresentationInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more