Module Values.LoggingConfigurationSource

Consists of the logging role and the log group name.

Sourcetype nonrec t = {
  1. loggingRole : Role.t option;
    (*

    The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events. When set, you can view user activity in your CloudWatch logs.

    *)
  2. logGroupName : LogGroupName.t option;
    (*

    The name of the CloudWatch logging group for the Transfer Family server to which this workflow belongs.

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