Describe Notification Rule
codestarnotifications_describe_notification_rule | R Documentation |
Returns information about a specified notification rule¶
Description¶
Returns information about a specified notification rule.
Usage¶
Arguments¶
Arn
[required] The Amazon Resource Name (ARN) of the notification rule.
Value¶
A list with the following syntax:
list(
Arn = "string",
Name = "string",
EventTypes = list(
list(
EventTypeId = "string",
ServiceName = "string",
EventTypeName = "string",
ResourceType = "string"
)
),
Resource = "string",
Targets = list(
list(
TargetAddress = "string",
TargetType = "string",
TargetStatus = "PENDING"|"ACTIVE"|"UNREACHABLE"|"INACTIVE"|"DEACTIVATED"
)
),
DetailType = "BASIC"|"FULL",
CreatedBy = "string",
Status = "ENABLED"|"DISABLED",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
LastModifiedTimestamp = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)