Module Values.ActionSource

An action defines the tasks that the extension performs during the AppConfig workflow. Each action includes an action point, as shown in the following list: PRE_CREATE_HOSTED_CONFIGURATION_VERSION PRE_START_DEPLOYMENT AT_DEPLOYMENT_TICK ON_DEPLOYMENT_START ON_DEPLOYMENT_STEP ON_DEPLOYMENT_BAKING ON_DEPLOYMENT_COMPLETE ON_DEPLOYMENT_ROLLED_BACK Each action also includes a name, a URI to an Lambda function, and an Amazon Resource Name (ARN) for an Identity and Access Management assume role. You specify the name, URI, and ARN for each action point defined in the extension.

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

    The action name.

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

    Information about 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.

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