Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account.
Currently, you can specify only one delivery channel per region in your account.
configservice_describe_delivery_channel_status(DeliveryChannelNames)
A list with the following syntax:
list(
DeliveryChannelsStatus = list(
list(
name = "string",
configSnapshotDeliveryInfo = list(
lastStatus = "Success"|"Failure"|"Not_Applicable",
lastErrorCode = "string",
lastErrorMessage = "string",
lastAttemptTime = as.POSIXct(
"2015-01-01"
),
lastSuccessfulTime = as.POSIXct(
"2015-01-01"
),
nextDeliveryTime = as.POSIXct(
"2015-01-01"
)
),
configHistoryDeliveryInfo = list(
lastStatus = "Success"|"Failure"|"Not_Applicable",
lastErrorCode = "string",
lastErrorMessage = "string",
lastAttemptTime = as.POSIXct(
"2015-01-01"
),
lastSuccessfulTime = as.POSIXct(
"2015-01-01"
),
nextDeliveryTime = as.POSIXct(
"2015-01-01"
)
),
configStreamDeliveryInfo = list(
lastStatus = "Success"|"Failure"|"Not_Applicable",
lastErrorCode = "string",
lastErrorMessage = "string",
lastStatusChangeTime = as.POSIXct(
"2015-01-01"
)
)
)
)
)
A list of delivery channel names.
svc$describe_delivery_channel_status(
DeliveryChannelNames = list(
"string"
)
)