Skip to content

Create Event Stream

customerprofiles_create_event_stream R Documentation

Creates an event stream, which is a subscription to real-time events, such as when profiles are created and updated through Amazon Connect Customer Profiles

Description

Creates an event stream, which is a subscription to real-time events, such as when profiles are created and updated through Amazon Connect Customer Profiles.

Each event stream can be associated with only one Kinesis Data Stream destination in the same region and Amazon Web Services account as the customer profiles domain

Usage

customerprofiles_create_event_stream(DomainName, Uri, EventStreamName,
  Tags)

Arguments

DomainName

[required] The unique name of the domain.

Uri

[required] The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name

EventStreamName

[required] The name of the event stream.

Tags

The tags used to organize, track, or control access for this resource.

Value

A list with the following syntax:

list(
  EventStreamArn = "string",
  Tags = list(
    "string"
  )
)

Request syntax

svc$create_event_stream(
  DomainName = "string",
  Uri = "string",
  EventStreamName = "string",
  Tags = list(
    "string"
  )
)