Struct aws_sdk_glue::types::TransformConfigParameter
source · #[non_exhaustive]pub struct TransformConfigParameter {
pub name: String,
pub type: 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: StringSpecifies the name of the parameter in the config file of the dynamic transform.
type: ParamTypeSpecifies 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) -> &str
pub fn name(&self) -> &str
Specifies the name of the parameter in the config file of the dynamic transform.
sourcepub fn type(&self) -> &ParamType
pub fn type(&self) -> &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) -> &[String]
pub fn value(&self) -> &[String]
Specifies the value of the parameter in the config file 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 .value.is_none().
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 for TransformConfigParameter
impl PartialEq 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 ==.