Struct aws_sdk_sagemaker::model::FeatureDefinition [−][src]
#[non_exhaustive]pub struct FeatureDefinition {
pub feature_name: Option<String>,
pub feature_type: Option<FeatureType>,
}
Expand description
A list of features. You must include FeatureName
and
FeatureType
. Valid feature FeatureType
s are
Integral
, Fractional
and String
.
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.feature_name: Option<String>
The name of a feature. The type must be a string. FeatureName
cannot be any
of the following: is_deleted
, write_time
,
api_invocation_time
.
feature_type: Option<FeatureType>
The value type of a feature. Valid values are Integral, Fractional, or String.
Implementations
The name of a feature. The type must be a string. FeatureName
cannot be any
of the following: is_deleted
, write_time
,
api_invocation_time
.
The value type of a feature. Valid values are Integral, Fractional, or String.
Creates a new builder-style object to manufacture FeatureDefinition
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FeatureDefinition
impl Send for FeatureDefinition
impl Sync for FeatureDefinition
impl Unpin for FeatureDefinition
impl UnwindSafe for FeatureDefinition
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more