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
source§fn eq(&self, other: &DynamicTransform) -> bool
fn eq(&self, other: &DynamicTransform) -> bool
self and other values to be equal, and is used
by ==.