Module Values.EventDestinationSource

An object that defines an event destination.

Sourcetype nonrec t = {
  1. cloudWatchLogsDestination : CloudWatchLogsDestination.t option;
  2. enabled : Boolean.t option;
    (*

    Indicates whether or not the event destination is enabled. If the event destination is enabled, then Amazon Pinpoint sends response data to the specified event destination.

    *)
  3. kinesisFirehoseDestination : KinesisFirehoseDestination.t option;
  4. matchingEventTypes : EventTypes.t option;
  5. name : String_.t option;
    (*

    A name that identifies the event destination configuration.

    *)
  6. snsDestination : SnsDestination.t option;
}
Sourceval make : ?cloudWatchLogsDestination:??? -> ?enabled:??? -> ?kinesisFirehoseDestination:??? -> ?matchingEventTypes:??? -> ?name:??? -> ?snsDestination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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