Module Values.TriggerConfigSource

Information about notification triggers for the deployment group.

Sourcetype nonrec t = {
  1. triggerName : TriggerName.t option;
    (*

    The name of the notification trigger.

    *)
  2. triggerTargetArn : TriggerTargetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.

    *)
  3. triggerEvents : TriggerEventTypeList.t option;
    (*

    The event type or types for which notifications are triggered.

    *)
}
Sourceval make : ?triggerName:??? -> ?triggerTargetArn:??? -> ?triggerEvents:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of TriggerName.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