Struct aws_sdk_sagemakerfeaturestoreruntime::input::PutRecordInput [−][src]
#[non_exhaustive]pub struct PutRecordInput {
pub feature_group_name: Option<String>,
pub record: Option<Vec<FeatureValue>>,
}
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_group_name: Option<String>
The name of the feature group that you want to insert the record into.
record: Option<Vec<FeatureValue>>
List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following:
-
Use
GetRecord
to retrieve the latest record. -
Update the record returned from
GetRecord
. -
Use
PutRecord
to update feature values.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRecord, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRecord, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutRecord
>
Creates a new builder-style object to manufacture PutRecordInput
The name of the feature group that you want to insert the record into.
List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following:
-
Use
GetRecord
to retrieve the latest record. -
Update the record returned from
GetRecord
. -
Use
PutRecord
to update feature values.
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 PutRecordInput
impl Send for PutRecordInput
impl Sync for PutRecordInput
impl Unpin for PutRecordInput
impl UnwindSafe for PutRecordInput
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