Module Values.LogsLocationSource

Information about build logs in CloudWatch Logs.

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

    The name of the CloudWatch Logs group for the build logs.

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

    The name of the CloudWatch Logs stream for the build logs.

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

    The ARN of the CloudWatch Logs stream for a build execution. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName}. The CloudWatch Logs stream is created during the PROVISIONING phase of a build and the ARN will not be valid until it is created. For more information, see Resources Defined by CloudWatch Logs.

    *)
  4. s3LogsArn : String_.t option;
    (*

    The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName}. For more information, see Resources Defined by Amazon S3.

    *)
  5. cloudWatchLogs : CloudWatchLogsConfig.t option;
    (*

    Information about CloudWatch Logs for a build project.

    *)
  6. s3Logs : S3LogsConfig.t option;
    (*

    Information about S3 logs for a build project.

    *)
}
Sourceval make : ?groupName:??? -> ?streamName:??? -> ?deepLink:??? -> ?s3DeepLink:??? -> ?cloudWatchLogsArn:??? -> ?s3LogsArn:??? -> ?cloudWatchLogs:??? -> ?s3Logs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of String_.t ]) list ]) 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