Module Values.DestinationsSource

Describes a destination.

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

    The Amazon Resource Name of the resource.

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

    The name of the resource.

    *)
  3. expressionType : ExpressionType.t option;
    (*

    The type of value in Expression.

    *)
  4. expression : Expression.t option;
    (*

    The rule name or topic rule to send messages to.

    *)
  5. description : Description.t option;
    (*

    The description of the resource.

    *)
  6. roleArn : RoleArn.t option;
    (*

    The ARN of the IAM Role that authorizes the destination.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?expressionType:??? -> ?expression:??? -> ?description:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DestinationArn.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