Struct aws_sdk_entityresolution::types::OutputAttribute
source · #[non_exhaustive]pub struct OutputAttribute {
pub name: String,
pub hashed: Option<bool>,
}
Expand description
A list of OutputAttribute
objects, each of which have the fields Name
and Hashed
. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
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.name: String
A name of a column to be written to the output. This must be an InputField
name in the schema mapping.
hashed: Option<bool>
Enables the ability to hash the column values in the output.
Implementations§
source§impl OutputAttribute
impl OutputAttribute
sourcepub fn builder() -> OutputAttributeBuilder
pub fn builder() -> OutputAttributeBuilder
Creates a new builder-style object to manufacture OutputAttribute
.
Trait Implementations§
source§impl Clone for OutputAttribute
impl Clone for OutputAttribute
source§fn clone(&self) -> OutputAttribute
fn clone(&self) -> OutputAttribute
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 OutputAttribute
impl Debug for OutputAttribute
source§impl PartialEq for OutputAttribute
impl PartialEq for OutputAttribute
source§fn eq(&self, other: &OutputAttribute) -> bool
fn eq(&self, other: &OutputAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OutputAttribute
Auto Trait Implementations§
impl RefUnwindSafe for OutputAttribute
impl Send for OutputAttribute
impl Sync for OutputAttribute
impl Unpin for OutputAttribute
impl UnwindSafe for OutputAttribute
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.