List Notifications
| datazone_list_notifications | R Documentation |
Lists all Amazon DataZone notifications¶
Description¶
Lists all Amazon DataZone notifications.
Usage¶
datazone_list_notifications(afterTimestamp, beforeTimestamp,
domainIdentifier, maxResults, nextToken, subjects, taskStatus, type)
Arguments¶
afterTimestampThe time after which you want to list notifications.
beforeTimestampThe time before which you want to list notifications.
domainIdentifier[required] The identifier of the Amazon DataZone domain.
maxResultsThe maximum number of notifications to return in a single call to
list_notifications. When the number of notifications to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_notificationsto list the next set of notifications.nextTokenWhen the number of notifications is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of notifications, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_notificationsto list the next set of notifications.subjectsThe subjects of notifications.
taskStatusThe task status of notifications.
type[required] The type of notifications.
Value¶
A list with the following syntax:
list(
nextToken = "string",
notifications = list(
list(
actionLink = "string",
creationTimestamp = as.POSIXct(
"2015-01-01"
),
domainIdentifier = "string",
identifier = "string",
lastUpdatedTimestamp = as.POSIXct(
"2015-01-01"
),
message = "string",
metadata = list(
"string"
),
status = "ACTIVE"|"INACTIVE",
title = "string",
topic = list(
resource = list(
id = "string",
name = "string",
type = "PROJECT"
),
role = "PROJECT_OWNER"|"PROJECT_CONTRIBUTOR"|"PROJECT_VIEWER"|"DOMAIN_OWNER"|"PROJECT_SUBSCRIBER",
subject = "string"
),
type = "TASK"|"EVENT"
)
)
)