Struct aws_sdk_appflow::types::builders::RegistrationOutputBuilder
source · #[non_exhaustive]pub struct RegistrationOutputBuilder { /* private fields */ }
Expand description
A builder for RegistrationOutput
.
Implementations§
source§impl RegistrationOutputBuilder
impl RegistrationOutputBuilder
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
Explains the status of the registration attempt from Amazon AppFlow. If the attempt fails, the message explains why.
sourcepub fn result(self, input: impl Into<String>) -> Self
pub fn result(self, input: impl Into<String>) -> Self
Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.
sourcepub fn set_result(self, input: Option<String>) -> Self
pub fn set_result(self, input: Option<String>) -> Self
Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.
sourcepub fn get_result(&self) -> &Option<String>
pub fn get_result(&self) -> &Option<String>
Indicates the number of resources that Amazon AppFlow created or updated. Possible resources include metadata tables and data partitions.
sourcepub fn status(self, input: ExecutionStatus) -> Self
pub fn status(self, input: ExecutionStatus) -> Self
Indicates the status of the registration attempt from Amazon AppFlow.
sourcepub fn set_status(self, input: Option<ExecutionStatus>) -> Self
pub fn set_status(self, input: Option<ExecutionStatus>) -> Self
Indicates the status of the registration attempt from Amazon AppFlow.
sourcepub fn get_status(&self) -> &Option<ExecutionStatus>
pub fn get_status(&self) -> &Option<ExecutionStatus>
Indicates the status of the registration attempt from Amazon AppFlow.
sourcepub fn build(self) -> RegistrationOutput
pub fn build(self) -> RegistrationOutput
Consumes the builder and constructs a RegistrationOutput
.
Trait Implementations§
source§impl Clone for RegistrationOutputBuilder
impl Clone for RegistrationOutputBuilder
source§fn clone(&self) -> RegistrationOutputBuilder
fn clone(&self) -> RegistrationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RegistrationOutputBuilder
impl Debug for RegistrationOutputBuilder
source§impl Default for RegistrationOutputBuilder
impl Default for RegistrationOutputBuilder
source§fn default() -> RegistrationOutputBuilder
fn default() -> RegistrationOutputBuilder
source§impl PartialEq for RegistrationOutputBuilder
impl PartialEq for RegistrationOutputBuilder
source§fn eq(&self, other: &RegistrationOutputBuilder) -> bool
fn eq(&self, other: &RegistrationOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RegistrationOutputBuilder
Auto Trait Implementations§
impl Freeze for RegistrationOutputBuilder
impl RefUnwindSafe for RegistrationOutputBuilder
impl Send for RegistrationOutputBuilder
impl Sync for RegistrationOutputBuilder
impl Unpin for RegistrationOutputBuilder
impl UnwindSafe for RegistrationOutputBuilder
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