#[non_exhaustive]pub struct ReplicationStatusType {
pub region: Option<String>,
pub kms_key_id: Option<String>,
pub status: Option<StatusType>,
pub status_message: Option<String>,
pub last_accessed_date: Option<DateTime>,
}
Expand description
A replication object consisting of a RegionReplicationStatus
object and includes a Region, KMSKeyId, status, and status message.
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.region: Option<String>
The Region where replication occurs.
kms_key_id: Option<String>
Can be an ARN
, Key ID
, or Alias
.
status: Option<StatusType>
The status can be InProgress
, Failed
, or InSync
.
status_message: Option<String>
Status message such as "Secret with this name already exists in this region".
last_accessed_date: Option<DateTime>
The date that the secret was last accessed in the Region. This field is omitted if the secret has never been retrieved in the Region.
Implementations§
Source§impl ReplicationStatusType
impl ReplicationStatusType
Sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
Can be an ARN
, Key ID
, or Alias
.
Sourcepub fn status(&self) -> Option<&StatusType>
pub fn status(&self) -> Option<&StatusType>
The status can be InProgress
, Failed
, or InSync
.
Sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
Status message such as "Secret with this name already exists in this region".
Sourcepub fn last_accessed_date(&self) -> Option<&DateTime>
pub fn last_accessed_date(&self) -> Option<&DateTime>
The date that the secret was last accessed in the Region. This field is omitted if the secret has never been retrieved in the Region.
Source§impl ReplicationStatusType
impl ReplicationStatusType
Sourcepub fn builder() -> ReplicationStatusTypeBuilder
pub fn builder() -> ReplicationStatusTypeBuilder
Creates a new builder-style object to manufacture ReplicationStatusType
.
Trait Implementations§
Source§impl Clone for ReplicationStatusType
impl Clone for ReplicationStatusType
Source§fn clone(&self) -> ReplicationStatusType
fn clone(&self) -> ReplicationStatusType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ReplicationStatusType
impl Debug for ReplicationStatusType
Source§impl PartialEq for ReplicationStatusType
impl PartialEq for ReplicationStatusType
impl StructuralPartialEq for ReplicationStatusType
Auto Trait Implementations§
impl Freeze for ReplicationStatusType
impl RefUnwindSafe for ReplicationStatusType
impl Send for ReplicationStatusType
impl Sync for ReplicationStatusType
impl Unpin for ReplicationStatusType
impl UnwindSafe for ReplicationStatusType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)