Module Values.LaunchActionSource

Launch action.

Sourcetype nonrec t = {
  1. actionId : LaunchActionId.t option;
  2. actionCode : SsmDocumentName.t option;
    (*

    Launch action code.

    *)
  3. type_ : LaunchActionType.t option;
    (*

    Launch action type.

    *)
  4. name : LaunchActionName.t option;
  5. active : Boolean.t option;
    (*

    Whether the launch action is active.

    *)
  6. order : LaunchActionOrder.t option;
  7. actionVersion : LaunchActionVersion.t option;
  8. optional : Boolean.t option;
    (*

    Whether the launch will not be marked as failed if this action fails.

    *)
  9. parameters : LaunchActionParameters.t option;
  10. description : LaunchActionDescription.t option;
  11. category : LaunchActionCategory.t option;
}
Sourceval make : ?actionId:??? -> ?actionCode:??? -> ?type_:??? -> ?name:??? -> ?active:??? -> ?order:??? -> ?actionVersion:??? -> ?optional:??? -> ?parameters:??? -> ?description:??? -> ?category:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of LaunchActionOrder.t | `Map of ([> `String of LaunchActionParameterName.t ] * [> `Structure of (string * [> `Enum of string | `String of LaunchActionParameterValue.t ]) list ]) list | `String of LaunchActionId.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