Struct aws_sdk_finspace::types::KxDataviewConfiguration
source · #[non_exhaustive]pub struct KxDataviewConfiguration {
pub dataview_name: Option<String>,
pub dataview_version_id: Option<String>,
pub changeset_id: Option<String>,
pub segment_configurations: Option<Vec<KxDataviewSegmentConfiguration>>,
}
Expand description
The structure that stores the configuration details of a dataview.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dataview_name: Option<String>
The unique identifier of the dataview.
dataview_version_id: Option<String>
The version of the dataview corresponding to a given changeset.
changeset_id: Option<String>
A unique identifier for the changeset.
segment_configurations: Option<Vec<KxDataviewSegmentConfiguration>>
The db path and volume configuration for the segmented database.
Implementations§
source§impl KxDataviewConfiguration
impl KxDataviewConfiguration
sourcepub fn dataview_name(&self) -> Option<&str>
pub fn dataview_name(&self) -> Option<&str>
The unique identifier of the dataview.
sourcepub fn dataview_version_id(&self) -> Option<&str>
pub fn dataview_version_id(&self) -> Option<&str>
The version of the dataview corresponding to a given changeset.
sourcepub fn changeset_id(&self) -> Option<&str>
pub fn changeset_id(&self) -> Option<&str>
A unique identifier for the changeset.
sourcepub fn segment_configurations(&self) -> &[KxDataviewSegmentConfiguration]
pub fn segment_configurations(&self) -> &[KxDataviewSegmentConfiguration]
The db path and volume configuration for the segmented database.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .segment_configurations.is_none()
.
source§impl KxDataviewConfiguration
impl KxDataviewConfiguration
sourcepub fn builder() -> KxDataviewConfigurationBuilder
pub fn builder() -> KxDataviewConfigurationBuilder
Creates a new builder-style object to manufacture KxDataviewConfiguration
.
Trait Implementations§
source§impl Clone for KxDataviewConfiguration
impl Clone for KxDataviewConfiguration
source§fn clone(&self) -> KxDataviewConfiguration
fn clone(&self) -> KxDataviewConfiguration
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 KxDataviewConfiguration
impl Debug for KxDataviewConfiguration
source§impl PartialEq for KxDataviewConfiguration
impl PartialEq for KxDataviewConfiguration
source§fn eq(&self, other: &KxDataviewConfiguration) -> bool
fn eq(&self, other: &KxDataviewConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for KxDataviewConfiguration
Auto Trait Implementations§
impl Freeze for KxDataviewConfiguration
impl RefUnwindSafe for KxDataviewConfiguration
impl Send for KxDataviewConfiguration
impl Sync for KxDataviewConfiguration
impl Unpin for KxDataviewConfiguration
impl UnwindSafe for KxDataviewConfiguration
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.