interface EventStreamReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.EventStreamReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#EventStreamReference |
Java | software.amazon.awscdk.services.customerprofiles.EventStreamReference |
Python | aws_cdk.aws_customerprofiles.EventStreamReference |
TypeScript | aws-cdk-lib » aws_customerprofiles » EventStreamReference |
A reference to a EventStream resource.
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 eventStreamReference: customerprofiles.EventStreamReference = {
domainName: 'domainName',
eventStreamArn: 'eventStreamArn',
eventStreamName: 'eventStreamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainName of the EventStream resource. |
| event | string | The ARN of the EventStream resource. |
| event | string | The EventStreamName of the EventStream resource. |
domainName
Type:
string
The DomainName of the EventStream resource.
eventStreamArn
Type:
string
The ARN of the EventStream resource.
eventStreamName
Type:
string
The EventStreamName of the EventStream resource.

.NET
Go
Java
Python
TypeScript