Skip to main content

aws_sdk_datazone/client/
delete_lineage_event.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteLineageEvent`](crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the domain.</p><br>
7    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the lineage event.</p><br>
8    /// - On success, responds with [`DeleteLineageEventOutput`](crate::operation::delete_lineage_event::DeleteLineageEventOutput) with field(s):
9    ///   - [`id(Option<String>)`](crate::operation::delete_lineage_event::DeleteLineageEventOutput::id): <p>The ID of the lineage event.</p>
10    ///   - [`domain_id(Option<String>)`](crate::operation::delete_lineage_event::DeleteLineageEventOutput::domain_id): <p>The ID of the domain.</p>
11    ///   - [`processing_status(Option<LineageEventProcessingStatus>)`](crate::operation::delete_lineage_event::DeleteLineageEventOutput::processing_status): <p>The progressing status of the lineage event.</p>
12    /// - On failure, responds with [`SdkError<DeleteLineageEventError>`](crate::operation::delete_lineage_event::DeleteLineageEventError)
13    pub fn delete_lineage_event(&self) -> crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder {
14        crate::operation::delete_lineage_event::builders::DeleteLineageEventFluentBuilder::new(self.handle.clone())
15    }
16}