Struct aws_sdk_glue::types::RenameField
source · #[non_exhaustive]pub struct RenameField {
pub name: String,
pub inputs: Vec<String>,
pub source_path: Vec<String>,
pub target_path: Vec<String>,
}Expand description
Specifies a transform that renames a single data property key.
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: StringThe name of the transform node.
inputs: Vec<String>The data inputs identified by their node names.
source_path: Vec<String>A JSON path to a variable in the data structure for the source data.
target_path: Vec<String>A JSON path to a variable in the data structure for the target data.
Implementations§
source§impl RenameField
impl RenameField
sourcepub fn source_path(&self) -> &[String]
pub fn source_path(&self) -> &[String]
A JSON path to a variable in the data structure for the source data.
sourcepub fn target_path(&self) -> &[String]
pub fn target_path(&self) -> &[String]
A JSON path to a variable in the data structure for the target data.
source§impl RenameField
impl RenameField
sourcepub fn builder() -> RenameFieldBuilder
pub fn builder() -> RenameFieldBuilder
Creates a new builder-style object to manufacture RenameField.
Trait Implementations§
source§impl Clone for RenameField
impl Clone for RenameField
source§fn clone(&self) -> RenameField
fn clone(&self) -> RenameField
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 RenameField
impl Debug for RenameField
source§impl PartialEq for RenameField
impl PartialEq for RenameField
source§fn eq(&self, other: &RenameField) -> bool
fn eq(&self, other: &RenameField) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RenameField
Auto Trait Implementations§
impl RefUnwindSafe for RenameField
impl Send for RenameField
impl Sync for RenameField
impl Unpin for RenameField
impl UnwindSafe for RenameField
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.