Struct aws_sdk_glue::types::TransformConfigParameter
source · #[non_exhaustive]pub struct TransformConfigParameter {
pub name: Option<String>,
pub type: Option<ParamType>,
pub validation_rule: Option<String>,
pub validation_message: Option<String>,
pub value: Option<Vec<String>>,
pub list_type: Option<ParamType>,
pub is_optional: Option<bool>,
}Expand description
Specifies the parameters in the config file of 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 parameter in the config file of the dynamic transform.
type: Option<ParamType>Specifies the parameter type in the config file of the dynamic transform.
validation_rule: Option<String>Specifies the validation rule in the config file of the dynamic transform.
validation_message: Option<String>Specifies the validation message in the config file of the dynamic transform.
value: Option<Vec<String>>Specifies the value of the parameter in the config file of the dynamic transform.
list_type: Option<ParamType>Specifies the list type of the parameter in the config file of the dynamic transform.
is_optional: Option<bool>Specifies whether the parameter is optional or not 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() -> TransformConfigParameterBuilder
pub fn builder() -> TransformConfigParameterBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self and other values to be equal, and is used
by ==.