Module Values.EventBridgeRuleTemplateSummarySource

Placeholder documentation for EventBridgeRuleTemplateSummary

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    An eventbridge rule template's ARN (Amazon Resource Name)

    *)
  2. createdAt : string option;
  3. description : string option;
    (*

    A resource's optional description.

    *)
  4. eventTargetCount : int option;
    (*

    The number of targets configured to send matching events.

    *)
  5. eventType : EventBridgeRuleTemplateEventType.t option;
  6. groupId : string option;
    (*

    An eventbridge rule template group's id. AWS provided template groups have ids that start with `aws-`

    *)
  7. id : string option;
    (*

    An eventbridge rule template's id. AWS provided templates have ids that start with `aws-`

    *)
  8. modifiedAt : string option;
  9. name : string option;
    (*

    A resource's name. Names must be unique within the scope of a resource type in a specific region.

    *)
  10. tags : TagMap.t option;
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?eventTargetCount:??? -> ?eventType:??? -> ?groupId:??? -> ?id:??? -> ?modifiedAt:??? -> ?name:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Timestamp of string ]) 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