Module Values.ExecuteActionRequestSource

Executes an action on a target resource.

Sourcetype nonrec t = {
  1. targetResource : TargetResource.t;
    (*

    The resource the action will be taken on.

    *)
  2. actionDefinitionId : ID.t;
    (*

    The ID of the action definition.

    *)
  3. actionPayload : ActionPayload.t;
    (*

    The JSON payload of the action.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
  5. resolveTo : ResolveTo.t option;
    (*

    The detailed resource this action resolves to.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?resolveTo:??? -> targetResource:TargetResource.t -> actionDefinitionId:ID.t -> actionPayload:ActionPayload.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.t | `Structure of (string * [> `String of ID.t ]) list ]) 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