Struct aws_sdk_sagemaker::model::feature_metadata::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FeatureMetadata
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn feature_group_arn(self, input: impl Into<String>) -> Self
pub fn feature_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Number (ARN) of the feature group.
sourcepub fn set_feature_group_arn(self, input: Option<String>) -> Self
pub fn set_feature_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Number (ARN) of the feature group.
sourcepub fn feature_group_name(self, input: impl Into<String>) -> Self
pub fn feature_group_name(self, input: impl Into<String>) -> Self
The name of the feature group containing the feature.
sourcepub fn set_feature_group_name(self, input: Option<String>) -> Self
pub fn set_feature_group_name(self, input: Option<String>) -> Self
The name of the feature group containing the feature.
sourcepub fn feature_name(self, input: impl Into<String>) -> Self
pub fn feature_name(self, input: impl Into<String>) -> Self
The name of feature.
sourcepub fn set_feature_name(self, input: Option<String>) -> Self
pub fn set_feature_name(self, input: Option<String>) -> Self
The name of feature.
sourcepub fn feature_type(self, input: FeatureType) -> Self
pub fn feature_type(self, input: FeatureType) -> Self
The data type of the feature.
sourcepub fn set_feature_type(self, input: Option<FeatureType>) -> Self
pub fn set_feature_type(self, input: Option<FeatureType>) -> Self
The data type of the feature.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
A timestamp indicating when the feature was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
A timestamp indicating when the feature was created.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
A timestamp indicating when the feature was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
A timestamp indicating when the feature was last modified.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
An optional description that you specify to better describe the feature.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
An optional description that you specify to better describe the feature.
sourcepub fn parameters(self, input: FeatureParameter) -> Self
pub fn parameters(self, input: FeatureParameter) -> Self
Appends an item to parameters
.
To override the contents of this collection use set_parameters
.
Optional key-value pairs that you specify to better describe the feature.
sourcepub fn set_parameters(self, input: Option<Vec<FeatureParameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<FeatureParameter>>) -> Self
Optional key-value pairs that you specify to better describe the feature.
sourcepub fn build(self) -> FeatureMetadata
pub fn build(self) -> FeatureMetadata
Consumes the builder and constructs a FeatureMetadata
.