#[non_exhaustive]pub struct DeliveryChannelStatusBuilder { /* private fields */ }Expand description
A builder for DeliveryChannelStatus.
Implementations§
source§impl DeliveryChannelStatusBuilder
impl DeliveryChannelStatusBuilder
sourcepub fn config_snapshot_delivery_info(
self,
input: ConfigExportDeliveryInfo,
) -> Self
pub fn config_snapshot_delivery_info( self, input: ConfigExportDeliveryInfo, ) -> Self
A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.
sourcepub fn set_config_snapshot_delivery_info(
self,
input: Option<ConfigExportDeliveryInfo>,
) -> Self
pub fn set_config_snapshot_delivery_info( self, input: Option<ConfigExportDeliveryInfo>, ) -> Self
A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.
sourcepub fn get_config_snapshot_delivery_info(
&self,
) -> &Option<ConfigExportDeliveryInfo>
pub fn get_config_snapshot_delivery_info( &self, ) -> &Option<ConfigExportDeliveryInfo>
A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.
sourcepub fn config_history_delivery_info(
self,
input: ConfigExportDeliveryInfo,
) -> Self
pub fn config_history_delivery_info( self, input: ConfigExportDeliveryInfo, ) -> Self
A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.
sourcepub fn set_config_history_delivery_info(
self,
input: Option<ConfigExportDeliveryInfo>,
) -> Self
pub fn set_config_history_delivery_info( self, input: Option<ConfigExportDeliveryInfo>, ) -> Self
A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.
sourcepub fn get_config_history_delivery_info(
&self,
) -> &Option<ConfigExportDeliveryInfo>
pub fn get_config_history_delivery_info( &self, ) -> &Option<ConfigExportDeliveryInfo>
A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.
sourcepub fn config_stream_delivery_info(
self,
input: ConfigStreamDeliveryInfo,
) -> Self
pub fn config_stream_delivery_info( self, input: ConfigStreamDeliveryInfo, ) -> Self
A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.
sourcepub fn set_config_stream_delivery_info(
self,
input: Option<ConfigStreamDeliveryInfo>,
) -> Self
pub fn set_config_stream_delivery_info( self, input: Option<ConfigStreamDeliveryInfo>, ) -> Self
A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.
sourcepub fn get_config_stream_delivery_info(
&self,
) -> &Option<ConfigStreamDeliveryInfo>
pub fn get_config_stream_delivery_info( &self, ) -> &Option<ConfigStreamDeliveryInfo>
A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.
sourcepub fn build(self) -> DeliveryChannelStatus
pub fn build(self) -> DeliveryChannelStatus
Consumes the builder and constructs a DeliveryChannelStatus.
Trait Implementations§
source§impl Clone for DeliveryChannelStatusBuilder
impl Clone for DeliveryChannelStatusBuilder
source§fn clone(&self) -> DeliveryChannelStatusBuilder
fn clone(&self) -> DeliveryChannelStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeliveryChannelStatusBuilder
impl Debug for DeliveryChannelStatusBuilder
source§impl Default for DeliveryChannelStatusBuilder
impl Default for DeliveryChannelStatusBuilder
source§fn default() -> DeliveryChannelStatusBuilder
fn default() -> DeliveryChannelStatusBuilder
source§impl PartialEq for DeliveryChannelStatusBuilder
impl PartialEq for DeliveryChannelStatusBuilder
source§fn eq(&self, other: &DeliveryChannelStatusBuilder) -> bool
fn eq(&self, other: &DeliveryChannelStatusBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeliveryChannelStatusBuilder
Auto Trait Implementations§
impl Freeze for DeliveryChannelStatusBuilder
impl RefUnwindSafe for DeliveryChannelStatusBuilder
impl Send for DeliveryChannelStatusBuilder
impl Sync for DeliveryChannelStatusBuilder
impl Unpin for DeliveryChannelStatusBuilder
impl UnwindSafe for DeliveryChannelStatusBuilder
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