#[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
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.
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.

tags_list: Option<Vec<Tag>>

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 name 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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