Module Values.CloudWatchLogsDestinationSource

An object that contains information about an event destination that sends data to Amazon CloudWatch Logs.

Sourcetype nonrec t = {
  1. iamRoleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of an Amazon Identity and Access Management (IAM) role that is able to write event data to an Amazon CloudWatch destination.

    *)
  2. logGroupArn : String_.t option;
    (*

    The name of the Amazon CloudWatch Log Group that you want to record events in.

    *)
}
Sourceval make : ?iamRoleArn:??? -> ?logGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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