Module Values.SsmAutomationSource

Details about the Systems Manager automation document that will be used as a runbook during an incident.

Sourcetype nonrec t = {
  1. documentName : SsmAutomationDocumentNameString.t;
    (*

    The automation document's name.

    *)
  2. documentVersion : SsmAutomationDocumentVersionString.t option;
    (*

    The automation document's version to use when running.

    *)
  3. dynamicParameters : DynamicSsmParameters.t option;
    (*

    The key-value pair to resolve dynamic parameter values when processing a Systems Manager Automation runbook.

    *)
  4. parameters : SsmParameters.t option;
    (*

    The key-value pair parameters to use when running the automation document.

    *)
  5. roleArn : RoleArn.t;
    (*

    The Amazon Resource Name (ARN) of the role that the automation document will assume when running commands.

    *)
  6. targetAccount : SsmTargetAccount.t option;
    (*

    The account that the automation document will be run in. This can be in either the management account or an application account.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentVersion:??? -> ?dynamicParameters:??? -> ?parameters:??? -> ?targetAccount:??? -> documentName:SsmAutomationDocumentNameString.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of DynamicSsmParametersKeyString.t ] * [> `List of [> `String of SsmParameterValuesMemberString.t ] list | `Structure of (string * [> `Enum of string ]) list ]) list | `String of SsmAutomationDocumentNameString.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