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 ==.