Struct aws_sdk_appflow::types::RegistrationOutput
source · #[non_exhaustive]pub struct RegistrationOutput {
pub message: Option<String>,
pub result: Option<String>,
pub status: Option<ExecutionStatus>,
}
Expand description
Describes the status of an attempt from Amazon AppFlow to register a resource.
When you run a flow that you've configured to use a metadata catalog, Amazon AppFlow registers a metadata table and data partitions with that catalog. This operation provides the status of that registration attempt. The operation also indicates how many related resources Amazon AppFlow created or updated.
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.message: Option<String>
Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.
result: Option<String>
Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.
status: Option<ExecutionStatus>
Indicates the status of the registration attempt from Amazon AppFlow.
Implementations§
source§impl RegistrationOutput
impl RegistrationOutput
sourcepub fn message(&self) -> Option<&str>
pub fn message(&self) -> Option<&str>
Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.
sourcepub fn result(&self) -> Option<&str>
pub fn result(&self) -> Option<&str>
Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.
sourcepub fn status(&self) -> Option<&ExecutionStatus>
pub fn status(&self) -> Option<&ExecutionStatus>
Indicates the status of the registration attempt from Amazon AppFlow.
source§impl RegistrationOutput
impl RegistrationOutput
sourcepub fn builder() -> RegistrationOutputBuilder
pub fn builder() -> RegistrationOutputBuilder
Creates a new builder-style object to manufacture RegistrationOutput
.
Trait Implementations§
source§impl Clone for RegistrationOutput
impl Clone for RegistrationOutput
source§fn clone(&self) -> RegistrationOutput
fn clone(&self) -> RegistrationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RegistrationOutput
impl Debug for RegistrationOutput
source§impl PartialEq for RegistrationOutput
impl PartialEq for RegistrationOutput
source§fn eq(&self, other: &RegistrationOutput) -> bool
fn eq(&self, other: &RegistrationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RegistrationOutput
Auto Trait Implementations§
impl Freeze for RegistrationOutput
impl RefUnwindSafe for RegistrationOutput
impl Send for RegistrationOutput
impl Sync for RegistrationOutput
impl Unpin for RegistrationOutput
impl UnwindSafe for RegistrationOutput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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