Struct aws_sdk_personalize::model::feature_transformation::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FeatureTransformation
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn feature_transformation_arn(self, input: impl Into<String>) -> Self
pub fn feature_transformation_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the FeatureTransformation object.
sourcepub fn set_feature_transformation_arn(self, input: Option<String>) -> Self
pub fn set_feature_transformation_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the FeatureTransformation object.
sourcepub fn default_parameters(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn default_parameters(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
Adds a key-value pair to default_parameters
.
To override the contents of this collection use set_default_parameters
.
Provides the default parameters for feature transformation.
sourcepub fn set_default_parameters(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_default_parameters(
self,
input: Option<HashMap<String, String>>
) -> Self
Provides the default parameters for feature transformation.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The creation date and time (in Unix time) of the feature transformation.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The creation date and time (in Unix time) of the feature transformation.
sourcepub fn last_updated_date_time(self, input: DateTime) -> Self
pub fn last_updated_date_time(self, input: DateTime) -> Self
The last update date and time (in Unix time) of the feature transformation.
sourcepub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
The last update date and time (in Unix time) of the feature transformation.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
The status of the feature transformation.
A feature transformation can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the feature transformation.
A feature transformation can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
sourcepub fn build(self) -> FeatureTransformation
pub fn build(self) -> FeatureTransformation
Consumes the builder and constructs a FeatureTransformation
.