Struct aws_sdk_config::types::ConfigExportDeliveryInfo
source · #[non_exhaustive]pub struct ConfigExportDeliveryInfo {
pub last_status: Option<DeliveryStatus>,
pub last_error_code: Option<String>,
pub last_error_message: Option<String>,
pub last_attempt_time: Option<DateTime>,
pub last_successful_time: Option<DateTime>,
pub next_delivery_time: Option<DateTime>,
}Expand description
Provides status of the delivery of the snapshot or the configuration history to the specified Amazon S3 bucket. Also provides the status of notifications about the Amazon S3 delivery to the specified Amazon SNS topic.
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.last_status: Option<DeliveryStatus>Status of the last attempted delivery.
last_error_code: Option<String>The error code from the last attempted delivery.
last_error_message: Option<String>The error message from the last attempted delivery.
last_attempt_time: Option<DateTime>The time of the last attempted delivery.
last_successful_time: Option<DateTime>The time of the last successful delivery.
next_delivery_time: Option<DateTime>The time that the next delivery occurs.
Implementations§
source§impl ConfigExportDeliveryInfo
impl ConfigExportDeliveryInfo
sourcepub fn last_status(&self) -> Option<&DeliveryStatus>
pub fn last_status(&self) -> Option<&DeliveryStatus>
Status of the last attempted delivery.
sourcepub fn last_error_code(&self) -> Option<&str>
pub fn last_error_code(&self) -> Option<&str>
The error code from the last attempted delivery.
sourcepub fn last_error_message(&self) -> Option<&str>
pub fn last_error_message(&self) -> Option<&str>
The error message from the last attempted delivery.
sourcepub fn last_attempt_time(&self) -> Option<&DateTime>
pub fn last_attempt_time(&self) -> Option<&DateTime>
The time of the last attempted delivery.
sourcepub fn last_successful_time(&self) -> Option<&DateTime>
pub fn last_successful_time(&self) -> Option<&DateTime>
The time of the last successful delivery.
sourcepub fn next_delivery_time(&self) -> Option<&DateTime>
pub fn next_delivery_time(&self) -> Option<&DateTime>
The time that the next delivery occurs.
source§impl ConfigExportDeliveryInfo
impl ConfigExportDeliveryInfo
sourcepub fn builder() -> ConfigExportDeliveryInfoBuilder
pub fn builder() -> ConfigExportDeliveryInfoBuilder
Creates a new builder-style object to manufacture ConfigExportDeliveryInfo.
Trait Implementations§
source§impl Clone for ConfigExportDeliveryInfo
impl Clone for ConfigExportDeliveryInfo
source§fn clone(&self) -> ConfigExportDeliveryInfo
fn clone(&self) -> ConfigExportDeliveryInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ConfigExportDeliveryInfo
impl Debug for ConfigExportDeliveryInfo
source§impl PartialEq for ConfigExportDeliveryInfo
impl PartialEq for ConfigExportDeliveryInfo
source§fn eq(&self, other: &ConfigExportDeliveryInfo) -> bool
fn eq(&self, other: &ConfigExportDeliveryInfo) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConfigExportDeliveryInfo
Auto Trait Implementations§
impl Freeze for ConfigExportDeliveryInfo
impl RefUnwindSafe for ConfigExportDeliveryInfo
impl Send for ConfigExportDeliveryInfo
impl Sync for ConfigExportDeliveryInfo
impl Unpin for ConfigExportDeliveryInfo
impl UnwindSafe for ConfigExportDeliveryInfo
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