#[non_exhaustive]pub struct DescribeArchiveOutput { /* private fields */ }
Implementations§
source§impl DescribeArchiveOutput
impl DescribeArchiveOutput
sourcepub fn archive_arn(&self) -> Option<&str>
pub fn archive_arn(&self) -> Option<&str>
The ARN of the archive.
sourcepub fn archive_name(&self) -> Option<&str>
pub fn archive_name(&self) -> Option<&str>
The name of the archive.
sourcepub fn event_source_arn(&self) -> Option<&str>
pub fn event_source_arn(&self) -> Option<&str>
The ARN of the event source associated with the archive.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the archive.
sourcepub fn event_pattern(&self) -> Option<&str>
pub fn event_pattern(&self) -> Option<&str>
The event pattern used to filter events sent to the archive.
sourcepub fn state(&self) -> Option<&ArchiveState>
pub fn state(&self) -> Option<&ArchiveState>
The state of the archive.
sourcepub fn state_reason(&self) -> Option<&str>
pub fn state_reason(&self) -> Option<&str>
The reason that the archive is in the state.
sourcepub fn retention_days(&self) -> Option<i32>
pub fn retention_days(&self) -> Option<i32>
The number of days to retain events for in the archive.
sourcepub fn size_bytes(&self) -> i64
pub fn size_bytes(&self) -> i64
The size of the archive in bytes.
sourcepub fn event_count(&self) -> i64
pub fn event_count(&self) -> i64
The number of events in the archive.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time at which the archive was created.
source§impl DescribeArchiveOutput
impl DescribeArchiveOutput
sourcepub fn builder() -> DescribeArchiveOutputBuilder
pub fn builder() -> DescribeArchiveOutputBuilder
Creates a new builder-style object to manufacture DescribeArchiveOutput
.
Trait Implementations§
source§impl Clone for DescribeArchiveOutput
impl Clone for DescribeArchiveOutput
source§fn clone(&self) -> DescribeArchiveOutput
fn clone(&self) -> DescribeArchiveOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DescribeArchiveOutput
impl Debug for DescribeArchiveOutput
source§impl PartialEq<DescribeArchiveOutput> for DescribeArchiveOutput
impl PartialEq<DescribeArchiveOutput> for DescribeArchiveOutput
source§fn eq(&self, other: &DescribeArchiveOutput) -> bool
fn eq(&self, other: &DescribeArchiveOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeArchiveOutput
impl RequestId for DescribeArchiveOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeArchiveOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeArchiveOutput
impl Send for DescribeArchiveOutput
impl Sync for DescribeArchiveOutput
impl Unpin for DescribeArchiveOutput
impl UnwindSafe for DescribeArchiveOutput
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
Mutably borrows from an owned value. Read more