Struct aws_sdk_glue::types::DynamicTransform
source · #[non_exhaustive]pub struct DynamicTransform {
pub name: Option<String>,
pub transform_name: Option<String>,
pub inputs: Option<Vec<String>>,
pub parameters: Option<Vec<TransformConfigParameter>>,
pub function_name: Option<String>,
pub path: Option<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: Option<String>Specifies the name of the dynamic transform.
transform_name: Option<String>Specifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
inputs: Option<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: Option<String>Specifies the name of the function of the dynamic transform.
path: Option<String>Specifies 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) -> Option<&str>
pub fn transform_name(&self) -> Option<&str>
Specifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
sourcepub fn inputs(&self) -> Option<&[String]>
pub fn inputs(&self) -> Option<&[String]>
Specifies the inputs for the dynamic transform that are required.
sourcepub fn parameters(&self) -> Option<&[TransformConfigParameter]>
pub fn parameters(&self) -> Option<&[TransformConfigParameter]>
Specifies the parameters of the dynamic transform.
sourcepub fn function_name(&self) -> Option<&str>
pub fn function_name(&self) -> Option<&str>
Specifies the name of the function of the dynamic transform.
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&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) -> Option<&[GlueSchema]>
pub fn output_schemas(&self) -> Option<&[GlueSchema]>
Specifies the data schema for the dynamic transform.
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<DynamicTransform> for DynamicTransform
impl PartialEq<DynamicTransform> for DynamicTransform
source§fn eq(&self, other: &DynamicTransform) -> bool
fn eq(&self, other: &DynamicTransform) -> bool
self and other values to be equal, and is used
by ==.