#[non_exhaustive]pub struct TopicRefreshScheduleSummaryBuilder { /* private fields */ }Expand description
A builder for TopicRefreshScheduleSummary.
Implementations§
source§impl TopicRefreshScheduleSummaryBuilder
impl TopicRefreshScheduleSummaryBuilder
sourcepub fn dataset_id(self, input: impl Into<String>) -> Self
pub fn dataset_id(self, input: impl Into<String>) -> Self
The ID of the dataset.
sourcepub fn set_dataset_id(self, input: Option<String>) -> Self
pub fn set_dataset_id(self, input: Option<String>) -> Self
The ID of the dataset.
sourcepub fn get_dataset_id(&self) -> &Option<String>
pub fn get_dataset_id(&self) -> &Option<String>
The ID of the dataset.
sourcepub fn dataset_arn(self, input: impl Into<String>) -> Self
pub fn dataset_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the dataset.
sourcepub fn set_dataset_arn(self, input: Option<String>) -> Self
pub fn set_dataset_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the dataset.
sourcepub fn get_dataset_arn(&self) -> &Option<String>
pub fn get_dataset_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the dataset.
sourcepub fn dataset_name(self, input: impl Into<String>) -> Self
pub fn dataset_name(self, input: impl Into<String>) -> Self
The name of the dataset.
sourcepub fn set_dataset_name(self, input: Option<String>) -> Self
pub fn set_dataset_name(self, input: Option<String>) -> Self
The name of the dataset.
sourcepub fn get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
The name of the dataset.
sourcepub fn refresh_schedule(self, input: TopicRefreshSchedule) -> Self
pub fn refresh_schedule(self, input: TopicRefreshSchedule) -> Self
The definition of a refresh schedule.
sourcepub fn set_refresh_schedule(self, input: Option<TopicRefreshSchedule>) -> Self
pub fn set_refresh_schedule(self, input: Option<TopicRefreshSchedule>) -> Self
The definition of a refresh schedule.
sourcepub fn get_refresh_schedule(&self) -> &Option<TopicRefreshSchedule>
pub fn get_refresh_schedule(&self) -> &Option<TopicRefreshSchedule>
The definition of a refresh schedule.
sourcepub fn build(self) -> TopicRefreshScheduleSummary
pub fn build(self) -> TopicRefreshScheduleSummary
Consumes the builder and constructs a TopicRefreshScheduleSummary.
Trait Implementations§
source§impl Clone for TopicRefreshScheduleSummaryBuilder
impl Clone for TopicRefreshScheduleSummaryBuilder
source§fn clone(&self) -> TopicRefreshScheduleSummaryBuilder
fn clone(&self) -> TopicRefreshScheduleSummaryBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for TopicRefreshScheduleSummaryBuilder
impl Default for TopicRefreshScheduleSummaryBuilder
source§fn default() -> TopicRefreshScheduleSummaryBuilder
fn default() -> TopicRefreshScheduleSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TopicRefreshScheduleSummaryBuilder
impl PartialEq for TopicRefreshScheduleSummaryBuilder
source§fn eq(&self, other: &TopicRefreshScheduleSummaryBuilder) -> bool
fn eq(&self, other: &TopicRefreshScheduleSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TopicRefreshScheduleSummaryBuilder
Auto Trait Implementations§
impl Freeze for TopicRefreshScheduleSummaryBuilder
impl RefUnwindSafe for TopicRefreshScheduleSummaryBuilder
impl Send for TopicRefreshScheduleSummaryBuilder
impl Sync for TopicRefreshScheduleSummaryBuilder
impl Unpin for TopicRefreshScheduleSummaryBuilder
impl UnwindSafe for TopicRefreshScheduleSummaryBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.