Struct aws_sdk_glue::model::TransformConfigParameter
source · #[non_exhaustive]pub struct TransformConfigParameter { /* private fields */ }Expand description
Specifies the parameters in the config file of the dynamic transform.
Implementations§
source§impl TransformConfigParameter
impl TransformConfigParameter
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Specifies the name of the parameter in the config file of the dynamic transform.
sourcepub fn type(&self) -> Option<&ParamType>
pub fn type(&self) -> Option<&ParamType>
Specifies the parameter type in the config file of the dynamic transform.
sourcepub fn validation_rule(&self) -> Option<&str>
pub fn validation_rule(&self) -> Option<&str>
Specifies the validation rule in the config file of the dynamic transform.
sourcepub fn validation_message(&self) -> Option<&str>
pub fn validation_message(&self) -> Option<&str>
Specifies the validation message in the config file of the dynamic transform.
sourcepub fn value(&self) -> Option<&[String]>
pub fn value(&self) -> Option<&[String]>
Specifies the value of the parameter in the config file of the dynamic transform.
sourcepub fn list_type(&self) -> Option<&ParamType>
pub fn list_type(&self) -> Option<&ParamType>
Specifies the list type of the parameter in the config file of the dynamic transform.
sourcepub fn is_optional(&self) -> Option<bool>
pub fn is_optional(&self) -> Option<bool>
Specifies whether the parameter is optional or not in the config file of the dynamic transform.
source§impl TransformConfigParameter
impl TransformConfigParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TransformConfigParameter.
Trait Implementations§
source§impl Clone for TransformConfigParameter
impl Clone for TransformConfigParameter
source§fn clone(&self) -> TransformConfigParameter
fn clone(&self) -> TransformConfigParameter
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 TransformConfigParameter
impl Debug for TransformConfigParameter
source§impl PartialEq<TransformConfigParameter> for TransformConfigParameter
impl PartialEq<TransformConfigParameter> for TransformConfigParameter
source§fn eq(&self, other: &TransformConfigParameter) -> bool
fn eq(&self, other: &TransformConfigParameter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.