Module Values.ExecuteCommandLogConfigurationSource

The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.

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

    The name of the CloudWatch log group to send logs to. The CloudWatch log group must already be created.

    *)
  2. cloudWatchEncryptionEnabled : Boolean.t option;
    (*

    Determines whether to use encryption on the CloudWatch logs. If not specified, encryption will be off.

    *)
  3. s3BucketName : String_.t option;
    (*

    The name of the S3 bucket to send logs to. The S3 bucket must already be created.

    *)
  4. s3EncryptionEnabled : Boolean.t option;
    (*

    Determines whether to use encryption on the S3 logs. If not specified, encryption is not used.

    *)
  5. s3KeyPrefix : String_.t option;
    (*

    An optional folder in the S3 bucket to place logs in.

    *)
}
Sourceval make : ?cloudWatchLogGroupName:??? -> ?cloudWatchEncryptionEnabled:??? -> ?s3BucketName:??? -> ?s3EncryptionEnabled:??? -> ?s3KeyPrefix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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