// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteRecord`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`feature_group_name(impl ::std::convert::Into<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::feature_group_name) / [`set_feature_group_name(Option<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::set_feature_group_name): <p>The name or Amazon Resource Name (ARN) of the feature group to delete the record from. </p>
/// - [`record_identifier_value_as_string(impl ::std::convert::Into<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::record_identifier_value_as_string) / [`set_record_identifier_value_as_string(Option<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::set_record_identifier_value_as_string): <p>The value for the <code>RecordIdentifier</code> that uniquely identifies the record, in string format. </p>
/// - [`event_time(impl ::std::convert::Into<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::event_time) / [`set_event_time(Option<String>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::set_event_time): <p>Timestamp indicating when the deletion event occurred. <code>EventTime</code> can be used to query data at a certain point in time.</p>
/// - [`target_stores(Vec<TargetStore>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::target_stores) / [`set_target_stores(Option<Vec<TargetStore>>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::set_target_stores): <p>A list of stores from which you're deleting the record. By default, Feature Store deletes the record from all of the stores that you're using for the <code>FeatureGroup</code>.</p>
/// - [`deletion_mode(DeletionMode)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::deletion_mode) / [`set_deletion_mode(Option<DeletionMode>)`](crate::operation::delete_record::builders::DeleteRecordFluentBuilder::set_deletion_mode): <p>The name of the deletion mode for deleting the record. By default, the deletion mode is set to <code>SoftDelete</code>.</p>
/// - On success, responds with [`DeleteRecordOutput`](crate::operation::delete_record::DeleteRecordOutput)
/// - On failure, responds with [`SdkError<DeleteRecordError>`](crate::operation::delete_record::DeleteRecordError)
pub fn delete_record(&self) -> crate::operation::delete_record::builders::DeleteRecordFluentBuilder {
crate::operation::delete_record::builders::DeleteRecordFluentBuilder::new(self.handle.clone())
}
}