List Event Streams
customerprofiles_list_event_streams | R Documentation |
Returns a list of all the event streams in a specific domain¶
Description¶
Returns a list of all the event streams in a specific domain.
Usage¶
customerprofiles_list_event_streams(DomainName, NextToken, MaxResults)
Arguments¶
DomainName |
[required] The unique name of the domain. |
NextToken |
Identifies the next page of results to return. |
MaxResults |
The maximum number of objects returned per page. |
Value¶
A list with the following syntax:
list(
Items = list(
list(
DomainName = "string",
EventStreamName = "string",
EventStreamArn = "string",
State = "RUNNING"|"STOPPED",
StoppedSince = as.POSIXct(
"2015-01-01"
),
DestinationSummary = list(
Uri = "string",
Status = "HEALTHY"|"UNHEALTHY",
UnhealthySince = as.POSIXct(
"2015-01-01"
)
),
Tags = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_event_streams(
DomainName = "string",
NextToken = "string",
MaxResults = 123
)