Struct aws_sdk_databrew::types::builders::ViewFrameBuilder
source · #[non_exhaustive]pub struct ViewFrameBuilder { /* private fields */ }
Expand description
A builder for ViewFrame
.
Implementations§
source§impl ViewFrameBuilder
impl ViewFrameBuilder
sourcepub fn start_column_index(self, input: i32) -> Self
pub fn start_column_index(self, input: i32) -> Self
The starting index for the range of columns to return in the view frame.
This field is required.sourcepub fn set_start_column_index(self, input: Option<i32>) -> Self
pub fn set_start_column_index(self, input: Option<i32>) -> Self
The starting index for the range of columns to return in the view frame.
sourcepub fn get_start_column_index(&self) -> &Option<i32>
pub fn get_start_column_index(&self) -> &Option<i32>
The starting index for the range of columns to return in the view frame.
sourcepub fn column_range(self, input: i32) -> Self
pub fn column_range(self, input: i32) -> Self
The number of columns to include in the view frame, beginning with the StartColumnIndex
value and ignoring any columns in the HiddenColumns
list.
sourcepub fn set_column_range(self, input: Option<i32>) -> Self
pub fn set_column_range(self, input: Option<i32>) -> Self
The number of columns to include in the view frame, beginning with the StartColumnIndex
value and ignoring any columns in the HiddenColumns
list.
sourcepub fn get_column_range(&self) -> &Option<i32>
pub fn get_column_range(&self) -> &Option<i32>
The number of columns to include in the view frame, beginning with the StartColumnIndex
value and ignoring any columns in the HiddenColumns
list.
Appends an item to hidden_columns
.
To override the contents of this collection use set_hidden_columns
.
A list of columns to hide in the view frame.
A list of columns to hide in the view frame.
A list of columns to hide in the view frame.
sourcepub fn start_row_index(self, input: i32) -> Self
pub fn start_row_index(self, input: i32) -> Self
The starting index for the range of rows to return in the view frame.
sourcepub fn set_start_row_index(self, input: Option<i32>) -> Self
pub fn set_start_row_index(self, input: Option<i32>) -> Self
The starting index for the range of rows to return in the view frame.
sourcepub fn get_start_row_index(&self) -> &Option<i32>
pub fn get_start_row_index(&self) -> &Option<i32>
The starting index for the range of rows to return in the view frame.
sourcepub fn row_range(self, input: i32) -> Self
pub fn row_range(self, input: i32) -> Self
The number of rows to include in the view frame, beginning with the StartRowIndex
value.
sourcepub fn set_row_range(self, input: Option<i32>) -> Self
pub fn set_row_range(self, input: Option<i32>) -> Self
The number of rows to include in the view frame, beginning with the StartRowIndex
value.
sourcepub fn get_row_range(&self) -> &Option<i32>
pub fn get_row_range(&self) -> &Option<i32>
The number of rows to include in the view frame, beginning with the StartRowIndex
value.
sourcepub fn analytics(self, input: AnalyticsMode) -> Self
pub fn analytics(self, input: AnalyticsMode) -> Self
Controls if analytics computation is enabled or disabled. Enabled by default.
sourcepub fn set_analytics(self, input: Option<AnalyticsMode>) -> Self
pub fn set_analytics(self, input: Option<AnalyticsMode>) -> Self
Controls if analytics computation is enabled or disabled. Enabled by default.
sourcepub fn get_analytics(&self) -> &Option<AnalyticsMode>
pub fn get_analytics(&self) -> &Option<AnalyticsMode>
Controls if analytics computation is enabled or disabled. Enabled by default.
Trait Implementations§
source§impl Clone for ViewFrameBuilder
impl Clone for ViewFrameBuilder
source§fn clone(&self) -> ViewFrameBuilder
fn clone(&self) -> ViewFrameBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ViewFrameBuilder
impl Debug for ViewFrameBuilder
source§impl Default for ViewFrameBuilder
impl Default for ViewFrameBuilder
source§fn default() -> ViewFrameBuilder
fn default() -> ViewFrameBuilder
source§impl PartialEq for ViewFrameBuilder
impl PartialEq for ViewFrameBuilder
source§fn eq(&self, other: &ViewFrameBuilder) -> bool
fn eq(&self, other: &ViewFrameBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.