#[non_exhaustive]pub struct CreateArchiveInput {
pub archive_name: Option<String>,
pub event_source_arn: Option<String>,
pub description: Option<String>,
pub event_pattern: Option<String>,
pub retention_days: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.archive_name: Option<String>The name for the archive to create.
event_source_arn: Option<String>The ARN of the event bus that sends events to the archive.
description: Option<String>A description for the archive.
event_pattern: Option<String>An event pattern to use to filter events sent to the archive.
retention_days: Option<i32>The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely
Implementations§
source§impl CreateArchiveInput
impl CreateArchiveInput
sourcepub fn archive_name(&self) -> Option<&str>
pub fn archive_name(&self) -> Option<&str>
The name for the archive to create.
sourcepub fn event_source_arn(&self) -> Option<&str>
pub fn event_source_arn(&self) -> Option<&str>
The ARN of the event bus that sends events to the archive.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the archive.
sourcepub fn event_pattern(&self) -> Option<&str>
pub fn event_pattern(&self) -> Option<&str>
An event pattern to use to filter events sent to the archive.
sourcepub fn retention_days(&self) -> Option<i32>
pub fn retention_days(&self) -> Option<i32>
The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely
source§impl CreateArchiveInput
impl CreateArchiveInput
sourcepub fn builder() -> CreateArchiveInputBuilder
pub fn builder() -> CreateArchiveInputBuilder
Creates a new builder-style object to manufacture CreateArchiveInput.
Trait Implementations§
source§impl Clone for CreateArchiveInput
impl Clone for CreateArchiveInput
source§fn clone(&self) -> CreateArchiveInput
fn clone(&self) -> CreateArchiveInput
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 CreateArchiveInput
impl Debug for CreateArchiveInput
source§impl PartialEq for CreateArchiveInput
impl PartialEq for CreateArchiveInput
source§fn eq(&self, other: &CreateArchiveInput) -> bool
fn eq(&self, other: &CreateArchiveInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateArchiveInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateArchiveInput
impl Send for CreateArchiveInput
impl Sync for CreateArchiveInput
impl Unpin for CreateArchiveInput
impl UnwindSafe for CreateArchiveInput
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
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>
Creates a shared type from an unshared type.