Struct aws_sdk_glue::types::DynamicTransform
source · #[non_exhaustive]pub struct DynamicTransform {
pub name: String,
pub transform_name: String,
pub inputs: Vec<String>,
pub parameters: Option<Vec<TransformConfigParameter>>,
pub function_name: String,
pub path: String,
pub version: Option<String>,
pub output_schemas: Option<Vec<GlueSchema>>,
}Expand description
Specifies the set of parameters needed to perform the dynamic transform.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringSpecifies the name of the dynamic transform.
transform_name: StringSpecifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
inputs: Vec<String>Specifies the inputs for the dynamic transform that are required.
parameters: Option<Vec<TransformConfigParameter>>Specifies the parameters of the dynamic transform.
function_name: StringSpecifies the name of the function of the dynamic transform.
path: StringSpecifies the path of the dynamic transform source and config files.
version: Option<String>This field is not used and will be deprecated in future release.
output_schemas: Option<Vec<GlueSchema>>Specifies the data schema for the dynamic transform.
Implementations§
source§impl DynamicTransform
impl DynamicTransform
sourcepub fn transform_name(&self) -> &str
pub fn transform_name(&self) -> &str
Specifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
sourcepub fn inputs(&self) -> &[String]
pub fn inputs(&self) -> &[String]
Specifies the inputs for the dynamic transform that are required.
sourcepub fn parameters(&self) -> &[TransformConfigParameter]
pub fn parameters(&self) -> &[TransformConfigParameter]
Specifies the parameters of the dynamic transform.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none().
sourcepub fn function_name(&self) -> &str
pub fn function_name(&self) -> &str
Specifies the name of the function of the dynamic transform.
sourcepub fn path(&self) -> &str
pub fn path(&self) -> &str
Specifies the path of the dynamic transform source and config files.
sourcepub fn version(&self) -> Option<&str>
pub fn version(&self) -> Option<&str>
This field is not used and will be deprecated in future release.
sourcepub fn output_schemas(&self) -> &[GlueSchema]
pub fn output_schemas(&self) -> &[GlueSchema]
Specifies the data schema for the dynamic transform.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .output_schemas.is_none().
source§impl DynamicTransform
impl DynamicTransform
sourcepub fn builder() -> DynamicTransformBuilder
pub fn builder() -> DynamicTransformBuilder
Creates a new builder-style object to manufacture DynamicTransform.
Trait Implementations§
source§impl Clone for DynamicTransform
impl Clone for DynamicTransform
source§fn clone(&self) -> DynamicTransform
fn clone(&self) -> DynamicTransform
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DynamicTransform
impl Debug for DynamicTransform
source§impl PartialEq for DynamicTransform
impl PartialEq for DynamicTransform
impl StructuralPartialEq for DynamicTransform
Auto Trait Implementations§
impl Freeze for DynamicTransform
impl RefUnwindSafe for DynamicTransform
impl Send for DynamicTransform
impl Sync for DynamicTransform
impl Unpin for DynamicTransform
impl UnwindSafe for DynamicTransform
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more