Get Event Stream
customerprofiles_get_event_stream | R Documentation |
Returns information about the specified event stream in a specific domain¶
Description¶
Returns information about the specified event stream in a specific domain.
Usage¶
customerprofiles_get_event_stream(DomainName, EventStreamName)
Arguments¶
DomainName |
[required] The unique name of the domain. |
EventStreamName |
[required] The name of the event stream provided during create operations. |
Value¶
A list with the following syntax:
list(
DomainName = "string",
EventStreamArn = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "RUNNING"|"STOPPED",
StoppedSince = as.POSIXct(
"2015-01-01"
),
DestinationDetails = list(
Uri = "string",
Status = "HEALTHY"|"UNHEALTHY",
UnhealthySince = as.POSIXct(
"2015-01-01"
),
Message = "string"
),
Tags = list(
"string"
)
)
Request syntax¶
svc$get_event_stream(
DomainName = "string",
EventStreamName = "string"
)