aws-cdk-lib.aws_customerprofiles.CfnEventStreamProps

interface CfnEventStreamProps

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnEventStreamProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnEventStreamProps
Javasoftware.amazon.awscdk.services.customerprofiles.CfnEventStreamProps
Pythonaws_cdk.aws_customerprofiles.CfnEventStreamProps
TypeScript aws-cdk-lib » aws_customerprofiles » CfnEventStreamProps

Properties for defining a CfnEventStream.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const cfnEventStreamProps: customerprofiles.CfnEventStreamProps = {
  domainName: 'domainName',
  eventStreamName: 'eventStreamName',
  uri: 'uri',

  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
domainNamestringThe unique name of the domain.
eventStreamNamestringThe name of the event stream.
uristringThe StreamARN of the destination to deliver profile events to.
tags?CfnTag[]The tags used to organize, track, or control access for this resource.

domainName

Type: string

The unique name of the domain.


eventStreamName

Type: string

The name of the event stream.


uri

Type: string

The StreamARN of the destination to deliver profile events to.

For example, arn:aws:kinesis:region:account-id:stream/stream-name.


tags?

Type: CfnTag[] (optional)

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