Module Values.UpdateDestinationRequestSource

Updates properties of a destination.

Sourcetype nonrec t = {
  1. name : DestinationName.t;
    (*

    The new name of the resource.

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

    The type of value in Expression.

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

    The new rule name or topic rule to send messages to.

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

    A new description of the resource.

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

    The ARN of the IAM Role that authorizes the destination.

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