Values.ExecuteActionRequestSourceExecutes an action on a target resource.
type nonrec t = {targetResource : TargetResource.t;The resource the action will be taken on.
*)actionDefinitionId : ID.t;The ID of the action definition.
*)actionPayload : ActionPayload.t;The JSON payload of the action.
*)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.
*)resolveTo : ResolveTo.t option;The detailed resource this action resolves to.
*)}val make :
?clientToken:??? ->
?resolveTo:??? ->
targetResource:TargetResource.t ->
actionDefinitionId:ID.t ->
actionPayload:ActionPayload.t ->
unit ->
t