Struct aws_sdk_glue::model::DropNullFields
source · #[non_exhaustive]pub struct DropNullFields { /* private fields */ }Expand description
Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.
Implementations§
source§impl DropNullFields
impl DropNullFields
sourcepub fn null_check_box_list(&self) -> Option<&NullCheckBoxList>
pub fn null_check_box_list(&self) -> Option<&NullCheckBoxList>
A structure that represents whether certain values are recognized as null values for removal.
sourcepub fn null_text_list(&self) -> Option<&[NullValueField]>
pub fn null_text_list(&self) -> Option<&[NullValueField]>
A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.
The DropNullFields transform removes custom null values only if both the value of the null placeholder and the datatype match the data.
source§impl DropNullFields
impl DropNullFields
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DropNullFields.
Trait Implementations§
source§impl Clone for DropNullFields
impl Clone for DropNullFields
source§fn clone(&self) -> DropNullFields
fn clone(&self) -> DropNullFields
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DropNullFields
impl Debug for DropNullFields
source§impl PartialEq<DropNullFields> for DropNullFields
impl PartialEq<DropNullFields> for DropNullFields
source§fn eq(&self, other: &DropNullFields) -> bool
fn eq(&self, other: &DropNullFields) -> bool
self and other values to be equal, and is used
by ==.