Values.S3LogDestinationParametersSourceThe Amazon S3 logging configuration settings for the pipe.
type nonrec t = {bucketName : S3LogDestinationParametersBucketNameString.t;Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
*)bucketOwner : S3LogDestinationParametersBucketOwnerString.t;Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
*)outputFormat : S3OutputFormat.t option;How EventBridge should format the log records. EventBridge currently only supports json formatting.
*)prefix : S3LogDestinationParametersPrefixString.t option;Specifies any prefix text with which to begin Amazon S3 log object names. You can use prefixes to organize the data that you store in Amazon S3 buckets. A prefix is a string of characters at the beginning of the object key name. A prefix can be any length, subject to the maximum length of the object key name (1,024 bytes). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.
*)}val make :
?outputFormat:??? ->
?prefix:??? ->
bucketName:S3LogDestinationParametersBucketNameString.t ->
bucketOwner:S3LogDestinationParametersBucketOwnerString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of S3LogDestinationParametersBucketNameString.t ])
list ]