interface CfnEventStreamMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventStreamMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventStreamMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventStreamMixinProps |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventStreamMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventStreamMixinProps |
Properties for CfnEventStreamPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const cfnEventStreamMixinProps: customerprofiles_mixins.CfnEventStreamMixinProps = {
domainName: 'domainName',
eventStreamName: 'eventStreamName',
tags: [{
key: 'key',
value: 'value',
}],
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The unique name of the domain. |
| event | string | The name of the event stream. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
| uri? | string | The StreamARN of the destination to deliver profile events to. |
domainName?
Type:
string
(optional)
The unique name of the domain.
eventStreamName?
Type:
string
(optional)
The name of the event stream.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
uri?
Type:
string
(optional)
The StreamARN of the destination to deliver profile events to.
For example, arn:aws:kinesis:region:account-id:stream/stream-name.

.NET
Go
Java
Python
TypeScript