Module Values.CloudWatchLoggingOptionDescriptionSource

Describes the Amazon CloudWatch logging option.

Sourcetype nonrec t = {
  1. cloudWatchLoggingOptionId : Id.t option;
    (*

    The ID of the CloudWatch logging option description.

    *)
  2. logStreamARN : LogStreamARN.t option;
    (*

    The Amazon Resource Name (ARN) of the CloudWatch log to receive application messages.

    *)
  3. roleARN : RoleARN.t option;
    (*

    The IAM ARN of the role to use to send application messages. Provided for backward compatibility. Applications created with the current API version have an application-level service execution role rather than a resource-level role.

    *)
}
Sourceval make : ?cloudWatchLoggingOptionId:??? -> ?logStreamARN:??? -> ?roleARN:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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