Struct aws_sdk_config::types::DeliveryChannelStatus
source · #[non_exhaustive]pub struct DeliveryChannelStatus {
pub name: Option<String>,
pub config_snapshot_delivery_info: Option<ConfigExportDeliveryInfo>,
pub config_history_delivery_info: Option<ConfigExportDeliveryInfo>,
pub config_stream_delivery_info: Option<ConfigStreamDeliveryInfo>,
}Expand description
The status of a specified delivery channel.
Valid values: Success | Failure
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the delivery channel.
config_snapshot_delivery_info: Option<ConfigExportDeliveryInfo>A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.
config_history_delivery_info: Option<ConfigExportDeliveryInfo>A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.
config_stream_delivery_info: Option<ConfigStreamDeliveryInfo>A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.
Implementations§
source§impl DeliveryChannelStatus
impl DeliveryChannelStatus
sourcepub fn config_snapshot_delivery_info(&self) -> Option<&ConfigExportDeliveryInfo>
pub fn 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) -> Option<&ConfigExportDeliveryInfo>
pub fn 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) -> Option<&ConfigStreamDeliveryInfo>
pub fn 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.
source§impl DeliveryChannelStatus
impl DeliveryChannelStatus
sourcepub fn builder() -> DeliveryChannelStatusBuilder
pub fn builder() -> DeliveryChannelStatusBuilder
Creates a new builder-style object to manufacture DeliveryChannelStatus.
Trait Implementations§
source§impl Clone for DeliveryChannelStatus
impl Clone for DeliveryChannelStatus
source§fn clone(&self) -> DeliveryChannelStatus
fn clone(&self) -> DeliveryChannelStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeliveryChannelStatus
impl Debug for DeliveryChannelStatus
source§impl PartialEq for DeliveryChannelStatus
impl PartialEq for DeliveryChannelStatus
source§fn eq(&self, other: &DeliveryChannelStatus) -> bool
fn eq(&self, other: &DeliveryChannelStatus) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeliveryChannelStatus
Auto Trait Implementations§
impl Freeze for DeliveryChannelStatus
impl RefUnwindSafe for DeliveryChannelStatus
impl Send for DeliveryChannelStatus
impl Sync for DeliveryChannelStatus
impl Unpin for DeliveryChannelStatus
impl UnwindSafe for DeliveryChannelStatus
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