interface DestinationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventStreamPropsMixin.DestinationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventStreamPropsMixin_DestinationDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventStreamPropsMixin.DestinationDetailsProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventStreamPropsMixin.DestinationDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventStreamPropsMixin » DestinationDetailsProperty |
Details regarding the Kinesis stream.
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 destinationDetailsProperty: customerprofiles_mixins.CfnEventStreamPropsMixin.DestinationDetailsProperty = {
status: 'status',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The status of enabling the Kinesis stream as a destination for export. |
| uri? | string | The StreamARN of the destination to deliver profile events to. |
status?
Type:
string
(optional)
The status of enabling the Kinesis stream as a destination for export.
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