Describe Delivery Channel Status
configservice_describe_delivery_channel_status | R Documentation |
Returns the current status of the specified delivery channel¶
Description¶
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.
Usage¶
Arguments¶
DeliveryChannelNames
A list of delivery channel names.
Value¶
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"
)
)
)
)
)