interface EndPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnRealtimeLogConfig.EndPointProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnRealtimeLogConfig.EndPointProperty |
Python | aws_cdk.aws_cloudfront.CfnRealtimeLogConfig.EndPointProperty |
TypeScript | @aws-cdk/aws-cloudfront » CfnRealtimeLogConfig » EndPointProperty |
Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloudfront from '@aws-cdk/aws-cloudfront';
const endPointProperty: cloudfront.CfnRealtimeLogConfig.EndPointProperty = {
kinesisStreamConfig: {
roleArn: 'roleArn',
streamArn: 'streamArn',
},
streamType: 'streamType',
};
Properties
| Name | Type | Description |
|---|---|---|
| kinesis | IResolvable | Kinesis | Contains information about the Amazon Kinesis data stream where you are sending real-time log data. |
| stream | string | The type of data stream where you are sending real-time log data. |
kinesisStreamConfig
Type:
IResolvable | Kinesis
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
streamType
Type:
string
The type of data stream where you are sending real-time log data.
The only valid value is Kinesis .

.NET
Java
Python
TypeScript