Publish Connection Function
| cloudfront_publish_connection_function | R Documentation |
Publishes a connection function¶
Description¶
Publishes a connection function.
Usage¶
cloudfront_publish_connection_function(Id, IfMatch)
Arguments¶
Id |
[required] The connection function ID. |
IfMatch |
[required] The current version ( |
Value¶
A list with the following syntax:
list(
ConnectionFunctionSummary = list(
Name = "string",
Id = "string",
ConnectionFunctionConfig = list(
Comment = "string",
Runtime = "cloudfront-js-1.0"|"cloudfront-js-2.0",
KeyValueStoreAssociations = list(
Quantity = 123,
Items = list(
list(
KeyValueStoreARN = "string"
)
)
)
),
ConnectionFunctionArn = "string",
Status = "string",
Stage = "DEVELOPMENT"|"LIVE",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$publish_connection_function(
Id = "string",
IfMatch = "string"
)