pub struct CloudWatchLogsConfigBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> CloudWatchLogsConfigBuilder<S>
impl<S: State> CloudWatchLogsConfigBuilder<S>
Sourcepub fn build(self) -> CloudWatchLogsConfigwhere
S: IsComplete,
pub fn build(self) -> CloudWatchLogsConfigwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn status(self, value: String) -> CloudWatchLogsConfigBuilder<SetStatus<S>>where
S::Status: IsUnset,
pub fn status(self, value: String) -> CloudWatchLogsConfigBuilder<SetStatus<S>>where
S::Status: IsUnset,
Required.
Sourcepub fn group_name(
self,
value: String,
) -> CloudWatchLogsConfigBuilder<SetGroupName<S>>where
S::GroupName: IsUnset,
pub fn group_name(
self,
value: String,
) -> CloudWatchLogsConfigBuilder<SetGroupName<S>>where
S::GroupName: IsUnset,
Sourcepub fn maybe_group_name(
self,
value: Option<String>,
) -> CloudWatchLogsConfigBuilder<SetGroupName<S>>where
S::GroupName: IsUnset,
pub fn maybe_group_name(
self,
value: Option<String>,
) -> CloudWatchLogsConfigBuilder<SetGroupName<S>>where
S::GroupName: IsUnset,
Sourcepub fn stream_name(
self,
value: String,
) -> CloudWatchLogsConfigBuilder<SetStreamName<S>>where
S::StreamName: IsUnset,
pub fn stream_name(
self,
value: String,
) -> CloudWatchLogsConfigBuilder<SetStreamName<S>>where
S::StreamName: IsUnset,
Sourcepub fn maybe_stream_name(
self,
value: Option<String>,
) -> CloudWatchLogsConfigBuilder<SetStreamName<S>>where
S::StreamName: IsUnset,
pub fn maybe_stream_name(
self,
value: Option<String>,
) -> CloudWatchLogsConfigBuilder<SetStreamName<S>>where
S::StreamName: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for CloudWatchLogsConfigBuilder<S>
impl<S> RefUnwindSafe for CloudWatchLogsConfigBuilder<S>
impl<S> Send for CloudWatchLogsConfigBuilder<S>
impl<S> Sync for CloudWatchLogsConfigBuilder<S>
impl<S> Unpin for CloudWatchLogsConfigBuilder<S>
impl<S> UnsafeUnpin for CloudWatchLogsConfigBuilder<S>
impl<S> UnwindSafe for CloudWatchLogsConfigBuilder<S>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.