#[non_exhaustive]pub struct TopicRefreshDetailsBuilder { /* private fields */ }Expand description
A builder for TopicRefreshDetails.
Implementations§
source§impl TopicRefreshDetailsBuilder
impl TopicRefreshDetailsBuilder
sourcepub fn refresh_arn(self, input: impl Into<String>) -> Self
pub fn refresh_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the topic refresh.
sourcepub fn set_refresh_arn(self, input: Option<String>) -> Self
pub fn set_refresh_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the topic refresh.
sourcepub fn get_refresh_arn(&self) -> &Option<String>
pub fn get_refresh_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the topic refresh.
sourcepub fn refresh_id(self, input: impl Into<String>) -> Self
pub fn refresh_id(self, input: impl Into<String>) -> Self
The ID of the refresh, which occurs as a result of topic creation or topic update.
sourcepub fn set_refresh_id(self, input: Option<String>) -> Self
pub fn set_refresh_id(self, input: Option<String>) -> Self
The ID of the refresh, which occurs as a result of topic creation or topic update.
sourcepub fn get_refresh_id(&self) -> &Option<String>
pub fn get_refresh_id(&self) -> &Option<String>
The ID of the refresh, which occurs as a result of topic creation or topic update.
sourcepub fn refresh_status(self, input: TopicRefreshStatus) -> Self
pub fn refresh_status(self, input: TopicRefreshStatus) -> Self
The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.
sourcepub fn set_refresh_status(self, input: Option<TopicRefreshStatus>) -> Self
pub fn set_refresh_status(self, input: Option<TopicRefreshStatus>) -> Self
The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.
sourcepub fn get_refresh_status(&self) -> &Option<TopicRefreshStatus>
pub fn get_refresh_status(&self) -> &Option<TopicRefreshStatus>
The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.
sourcepub fn build(self) -> TopicRefreshDetails
pub fn build(self) -> TopicRefreshDetails
Consumes the builder and constructs a TopicRefreshDetails.
Trait Implementations§
source§impl Clone for TopicRefreshDetailsBuilder
impl Clone for TopicRefreshDetailsBuilder
source§fn clone(&self) -> TopicRefreshDetailsBuilder
fn clone(&self) -> TopicRefreshDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TopicRefreshDetailsBuilder
impl Debug for TopicRefreshDetailsBuilder
source§impl Default for TopicRefreshDetailsBuilder
impl Default for TopicRefreshDetailsBuilder
source§fn default() -> TopicRefreshDetailsBuilder
fn default() -> TopicRefreshDetailsBuilder
source§impl PartialEq for TopicRefreshDetailsBuilder
impl PartialEq for TopicRefreshDetailsBuilder
source§fn eq(&self, other: &TopicRefreshDetailsBuilder) -> bool
fn eq(&self, other: &TopicRefreshDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TopicRefreshDetailsBuilder
Auto Trait Implementations§
impl Freeze for TopicRefreshDetailsBuilder
impl RefUnwindSafe for TopicRefreshDetailsBuilder
impl Send for TopicRefreshDetailsBuilder
impl Sync for TopicRefreshDetailsBuilder
impl Unpin for TopicRefreshDetailsBuilder
impl UnwindSafe for TopicRefreshDetailsBuilder
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> 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