#[non_exhaustive]pub struct GetLineageNodeInputBuilder { /* private fields */ }
Expand description
A builder for GetLineageNodeInput
.
Implementations§
source§impl GetLineageNodeInputBuilder
impl GetLineageNodeInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The ID of the domain in which you want to get the data lineage node.
This field is required.sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The ID of the domain in which you want to get the data lineage node.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The ID of the domain in which you want to get the data lineage node.
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The ID of the data lineage node that you want to get.
Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier
of the lineage node are supported. If sourceIdentifier
is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The ID of the data lineage node that you want to get.
Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier
of the lineage node are supported. If sourceIdentifier
is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
The ID of the data lineage node that you want to get.
Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier
of the lineage node are supported. If sourceIdentifier
is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
sourcepub fn event_timestamp(self, input: DateTime) -> Self
pub fn event_timestamp(self, input: DateTime) -> Self
The event time stamp for which you want to get the data lineage node.
sourcepub fn set_event_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_event_timestamp(self, input: Option<DateTime>) -> Self
The event time stamp for which you want to get the data lineage node.
sourcepub fn get_event_timestamp(&self) -> &Option<DateTime>
pub fn get_event_timestamp(&self) -> &Option<DateTime>
The event time stamp for which you want to get the data lineage node.
sourcepub fn build(self) -> Result<GetLineageNodeInput, BuildError>
pub fn build(self) -> Result<GetLineageNodeInput, BuildError>
Consumes the builder and constructs a GetLineageNodeInput
.
source§impl GetLineageNodeInputBuilder
impl GetLineageNodeInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetLineageNodeOutput, SdkError<GetLineageNodeError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetLineageNodeOutput, SdkError<GetLineageNodeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetLineageNodeInputBuilder
impl Clone for GetLineageNodeInputBuilder
source§fn clone(&self) -> GetLineageNodeInputBuilder
fn clone(&self) -> GetLineageNodeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetLineageNodeInputBuilder
impl Debug for GetLineageNodeInputBuilder
source§impl Default for GetLineageNodeInputBuilder
impl Default for GetLineageNodeInputBuilder
source§fn default() -> GetLineageNodeInputBuilder
fn default() -> GetLineageNodeInputBuilder
impl StructuralPartialEq for GetLineageNodeInputBuilder
Auto Trait Implementations§
impl Freeze for GetLineageNodeInputBuilder
impl RefUnwindSafe for GetLineageNodeInputBuilder
impl Send for GetLineageNodeInputBuilder
impl Sync for GetLineageNodeInputBuilder
impl Unpin for GetLineageNodeInputBuilder
impl UnwindSafe for GetLineageNodeInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more