Module Values.PutLaunchActionRequestSource

Puts a resource launch action.

Sourcetype nonrec t = {
  1. resourceId : LaunchActionResourceId.t;
  2. actionCode : SsmDocumentName.t;
    (*

    Launch action code.

    *)
  3. order : LaunchActionOrder.t;
  4. actionId : LaunchActionId.t;
  5. optional : Boolean.t;
    (*

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

    *)
  6. active : Boolean.t;
    (*

    Whether the launch action is active.

    *)
  7. name : LaunchActionName.t;
  8. actionVersion : LaunchActionVersion.t;
  9. category : LaunchActionCategory.t;
  10. parameters : LaunchActionParameters.t option;
  11. description : LaunchActionDescription.t;
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> resourceId:LaunchActionResourceId.t -> actionCode:SsmDocumentName.t -> order:LaunchActionOrder.t -> actionId:LaunchActionId.t -> optional:Boolean.t -> active:Boolean.t -> name:LaunchActionName.t -> actionVersion:LaunchActionVersion.t -> category:LaunchActionCategory.t -> description:LaunchActionDescription.t -> 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 LaunchActionResourceId.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