interface EventStreamReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CustomerProfiles.EventStreamReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscustomerprofiles#EventStreamReference |
Java | software.amazon.awscdk.interfaces.customerprofiles.EventStreamReference |
Python | aws_cdk.interfaces.aws_customerprofiles.EventStreamReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_customerprofiles } from 'aws-cdk-lib/interfaces';
const eventStreamReference: interfaces_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