#[non_exhaustive]pub struct CreateEventDataStoreOutput {
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 tags_list: Option<Vec<Tag>>,
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 event data store creation.
advanced_event_selectors: Option<Vec<AdvancedEventSelector>>
The advanced event selectors that were used to select the events for the data store.
multi_region_enabled: Option<bool>
Indicates whether the event data store collects 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 of an event data store, in days.
termination_protection_enabled: Option<bool>
Indicates whether termination protection is enabled for the event data store.
A list of tags.
created_timestamp: Option<DateTime>
The timestamp that shows when the event data store was created.
updated_timestamp: Option<DateTime>
The timestamp that shows when an event data store was updated, if applicable. UpdatedTimestamp
is always either the same or newer than the time shown in CreatedTimestamp
.
Implementations
The ARN of the event data store.
The status of event data store creation.
The advanced event selectors that were used to select the events for the data store.
Indicates whether the event data store collects events from all regions, or only from the region in which it was created.
Indicates whether an event data store is collecting logged events for an organization in Organizations.
The retention period of an event data store, in days.
Indicates whether termination protection is enabled for the event data store.
A list of tags.
The timestamp that shows when the event data store was created.
The timestamp that shows when an event data store was updated, if applicable. UpdatedTimestamp
is always either the same or newer than the time shown in CreatedTimestamp
.
Creates a new builder-style object to manufacture CreateEventDataStoreOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateEventDataStoreOutput
impl Send for CreateEventDataStoreOutput
impl Sync for CreateEventDataStoreOutput
impl Unpin for CreateEventDataStoreOutput
impl UnwindSafe for CreateEventDataStoreOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more