Module Values.ActionInvocationSource

An extension that was invoked as part of a deployment event.

Sourcetype nonrec t = {
  1. extensionIdentifier : Identifier.t option;
    (*

    The name, the ID, or the Amazon Resource Name (ARN) of the extension.

    *)
  2. actionName : Name.t option;
    (*

    The name of the action.

    *)
  3. uri : Uri_.t option;
    (*

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    *)
  4. roleArn : Arn.t option;
    (*

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    *)
  5. errorMessage : String_.t option;
    (*

    The error message when an extension invocation fails.

    *)
  6. errorCode : String_.t option;
    (*

    The error code when an extension invocation fails.

    *)
  7. invocationId : Id.t option;
    (*

    A system-generated ID for this invocation.

    *)
}
Sourceval make : ?extensionIdentifier:??? -> ?actionName:??? -> ?uri:??? -> ?roleArn:??? -> ?errorMessage:??? -> ?errorCode:??? -> ?invocationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identifier.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