Module Values_0.CloudWatchOutputConfigSource

Configuration options for sending command output to Amazon CloudWatch Logs.

Sourcetype nonrec t = {
  1. cloudWatchLogGroupName : CloudWatchLogGroupName.t option;
    (*

    The name of the CloudWatch Logs log group where you want to send command output. If you don't specify a group name, Amazon Web Services Systems Manager automatically creates a log group for you. The log group uses the following naming format: aws/ssm/SystemsManagerDocumentName

    *)
  2. cloudWatchOutputEnabled : CloudWatchOutputEnabled.t option;
    (*

    Enables Systems Manager to send command output to CloudWatch Logs.

    *)
}
Sourceval make : ?cloudWatchLogGroupName:??? -> ?cloudWatchOutputEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of CloudWatchOutputEnabled.t | `String of CloudWatchLogGroupName.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