#[non_exhaustive]pub struct UpdateEventDataStoreOutput {
pub event_data_store_arn: Option<String>,
pub name: Option<String>,
pub status: Option<EventDataStoreStatus>,
pub advanced_event_selectors: Option<Vec<AdvancedEventSelector>>,
pub multi_region_enabled: Option<bool>,
pub organization_enabled: Option<bool>,
pub retention_period: Option<i32>,
pub termination_protection_enabled: Option<bool>,
pub created_timestamp: Option<DateTime>,
pub updated_timestamp: Option<DateTime>,
}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.event_data_store_arn: Option<String>The ARN of the event data store.
name: Option<String>The name of the event data store.
status: Option<EventDataStoreStatus>The status of an event data store. Values can be ENABLED and PENDING_DELETION.
advanced_event_selectors: Option<Vec<AdvancedEventSelector>>The advanced event selectors that are applied to the event data store.
multi_region_enabled: Option<bool>Indicates whether the event data store includes events from all regions, or only from the region in which it was created.
organization_enabled: Option<bool>Indicates whether an event data store is collecting logged events for an organization in Organizations.
retention_period: Option<i32>The retention period, in days.
termination_protection_enabled: Option<bool>Indicates whether termination protection is enabled for the event data store.
created_timestamp: Option<DateTime>The timestamp that shows when an event data store was first created.
updated_timestamp: Option<DateTime>The timestamp that shows when the event data store was last updated. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
Implementations
sourceimpl UpdateEventDataStoreOutput
impl UpdateEventDataStoreOutput
sourcepub fn event_data_store_arn(&self) -> Option<&str>
pub fn event_data_store_arn(&self) -> Option<&str>
The ARN of the event data store.
sourcepub fn status(&self) -> Option<&EventDataStoreStatus>
pub fn status(&self) -> Option<&EventDataStoreStatus>
The status of an event data store. Values can be ENABLED and PENDING_DELETION.
sourcepub fn advanced_event_selectors(&self) -> Option<&[AdvancedEventSelector]>
pub fn advanced_event_selectors(&self) -> Option<&[AdvancedEventSelector]>
The advanced event selectors that are applied to the event data store.
sourcepub fn multi_region_enabled(&self) -> Option<bool>
pub fn multi_region_enabled(&self) -> Option<bool>
Indicates whether the event data store includes events from all regions, or only from the region in which it was created.
sourcepub fn organization_enabled(&self) -> Option<bool>
pub fn organization_enabled(&self) -> Option<bool>
Indicates whether an event data store is collecting logged events for an organization in Organizations.
sourcepub fn retention_period(&self) -> Option<i32>
pub fn retention_period(&self) -> Option<i32>
The retention period, in days.
sourcepub fn termination_protection_enabled(&self) -> Option<bool>
pub fn termination_protection_enabled(&self) -> Option<bool>
Indicates whether termination protection is enabled for the event data store.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The timestamp that shows when an event data store was first created.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The timestamp that shows when the event data store was last updated. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
sourceimpl UpdateEventDataStoreOutput
impl UpdateEventDataStoreOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateEventDataStoreOutput
Trait Implementations
sourceimpl Clone for UpdateEventDataStoreOutput
impl Clone for UpdateEventDataStoreOutput
sourcefn clone(&self) -> UpdateEventDataStoreOutput
fn clone(&self) -> UpdateEventDataStoreOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UpdateEventDataStoreOutput
impl Debug for UpdateEventDataStoreOutput
sourceimpl PartialEq<UpdateEventDataStoreOutput> for UpdateEventDataStoreOutput
impl PartialEq<UpdateEventDataStoreOutput> for UpdateEventDataStoreOutput
sourcefn eq(&self, other: &UpdateEventDataStoreOutput) -> bool
fn eq(&self, other: &UpdateEventDataStoreOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateEventDataStoreOutput) -> bool
fn ne(&self, other: &UpdateEventDataStoreOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdateEventDataStoreOutput
Auto Trait Implementations
impl RefUnwindSafe for UpdateEventDataStoreOutput
impl Send for UpdateEventDataStoreOutput
impl Sync for UpdateEventDataStoreOutput
impl Unpin for UpdateEventDataStoreOutput
impl UnwindSafe for UpdateEventDataStoreOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more