aws_sdk_datazone/client/
get_lineage_event.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetLineageEvent`](crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the domain.</p><br>
    ///   - [`identifier(impl Into<String>)`](crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the lineage event.</p><br>
    /// - On success, responds with [`GetLineageEventOutput`](crate::operation::get_lineage_event::GetLineageEventOutput) with field(s):
    ///   - [`domain_id(Option<String>)`](crate::operation::get_lineage_event::GetLineageEventOutput::domain_id): <p>The ID of the domain.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_lineage_event::GetLineageEventOutput::id): <p>The ID of the lineage event.</p>
    ///   - [`event(Option<Blob>)`](crate::operation::get_lineage_event::GetLineageEventOutput::event): <p>The lineage event details.</p>
    ///   - [`created_by(Option<String>)`](crate::operation::get_lineage_event::GetLineageEventOutput::created_by): <p>The user who created the lineage event.</p>
    ///   - [`processing_status(Option<LineageEventProcessingStatus>)`](crate::operation::get_lineage_event::GetLineageEventOutput::processing_status): <p>The progressing status of the lineage event.</p>
    ///   - [`event_time(Option<DateTime>)`](crate::operation::get_lineage_event::GetLineageEventOutput::event_time): <p>The time of the lineage event.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_lineage_event::GetLineageEventOutput::created_at): <p>The timestamp of when the lineage event was created.</p>
    /// - On failure, responds with [`SdkError<GetLineageEventError>`](crate::operation::get_lineage_event::GetLineageEventError)
    pub fn get_lineage_event(&self) -> crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder {
        crate::operation::get_lineage_event::builders::GetLineageEventFluentBuilder::new(self.handle.clone())
    }
}