Update Delivery Configuration
cloudwatchlogs_update_delivery_configuration | R Documentation |
Use this operation to update the configuration of a delivery to change either the S3 path pattern or the format of the delivered logs¶
Description¶
Use this operation to update the configuration of a delivery to change either the S3 path pattern or the format of the delivered logs. You can't use this operation to change the source or destination of the delivery.
Usage¶
cloudwatchlogs_update_delivery_configuration(id, recordFields,
fieldDelimiter, s3DeliveryConfiguration)
Arguments¶
id |
[required] The ID of the delivery to be updated by this request. |
recordFields |
The list of record fields to be delivered to the destination, in order. If the delivery's log source has mandatory fields, they must be included in this list. |
fieldDelimiter |
The field delimiter to use between record fields when the final
output format of a delivery is in |
s3DeliveryConfiguration |
This structure contains parameters that are valid only when the delivery's delivery destination is an S3 bucket. |
Value¶
An empty list.
Request syntax¶
svc$update_delivery_configuration(
id = "string",
recordFields = list(
"string"
),
fieldDelimiter = "string",
s3DeliveryConfiguration = list(
suffixPath = "string",
enableHiveCompatiblePath = TRUE|FALSE
)
)