Update Channel
cloudtrail_update_channel | R Documentation |
Updates a channel specified by a required channel ARN or UUID¶
Description¶
Updates a channel specified by a required channel ARN or UUID.
Usage¶
cloudtrail_update_channel(Channel, Destinations, Name)
Arguments¶
Channel |
[required] The ARN or ID (the ARN suffix) of the channel that you want to update. |
Destinations |
The ARNs of event data stores that you want to log events arriving through the channel. |
Name |
Changes the name of the channel. |
Value¶
A list with the following syntax:
list(
ChannelArn = "string",
Name = "string",
Source = "string",
Destinations = list(
list(
Type = "EVENT_DATA_STORE"|"AWS_SERVICE",
Location = "string"
)
)
)
Request syntax¶
svc$update_channel(
Channel = "string",
Destinations = list(
list(
Type = "EVENT_DATA_STORE"|"AWS_SERVICE",
Location = "string"
)
),
Name = "string"
)