Module Values.TargetSummarySource

Information about the targets specified for a notification rule.

Sourcetype nonrec t = {
  1. targetAddress : TargetAddress.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Q Developer in chat applications topic or Amazon Q Developer in chat applications client.

    *)
  2. targetType : TargetType.t option;
    (*

    The type of the target (for example, SNS). Amazon Q Developer in chat applications topics are specified as SNS. Amazon Q Developer in chat applications clients are specified as AWSChatbotSlack.

    *)
  3. targetStatus : TargetStatus.t option;
    (*

    The status of the target.

    *)
}
Sourceval make : ?targetAddress:??? -> ?targetType:??? -> ?targetStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TargetAddress.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