Module Values.EventDataStoreSource

A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account. To select events for an event data store, use advanced event selectors.

Sourcetype nonrec t = {
  1. eventDataStoreArn : EventDataStoreArn.t option;
    (*

    The ARN of the event data store.

    *)
  2. name : EventDataStoreName.t option;
    (*

    The name of the event data store.

    *)
  3. terminationProtectionEnabled : TerminationProtectionEnabled.t option;
    (*

    Indicates whether the event data store is protected from termination.

    *)
  4. status : EventDataStoreStatus.t option;
    (*

    The status of an event data store.

    *)
  5. advancedEventSelectors : AdvancedEventSelectors.t option;
    (*

    The advanced event selectors that were used to select events for the data store.

    *)
  6. multiRegionEnabled : Boolean.t option;
    (*

    Indicates whether the event data store includes events from all Regions, or only from the Region in which it was created.

    *)
  7. organizationEnabled : Boolean.t option;
    (*

    Indicates that an event data store is collecting logged events for an organization.

    *)
  8. retentionPeriod : RetentionPeriod.t option;
    (*

    The retention period, in days.

    *)
  9. createdTimestamp : Date.t option;
    (*

    The timestamp of the event data store's creation.

    *)
  10. updatedTimestamp : Date.t option;
    (*

    The timestamp showing when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.

    *)
}
Sourceval make : ?eventDataStoreArn:??? -> ?name:??? -> ?terminationProtectionEnabled:??? -> ?status:??? -> ?advancedEventSelectors:??? -> ?multiRegionEnabled:??? -> ?organizationEnabled:??? -> ?retentionPeriod:??? -> ?createdTimestamp:??? -> ?updatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TerminationProtectionEnabled.t | `Enum of string | `Integer of RetentionPeriod.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of OperatorValue.t ] list | `String of SelectorField.t ]) list ] list | `String of SelectorName.t ]) list ] list | `String of EventDataStoreArn.t | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t