aws-cdk-lib.aws_cloudfront.CfnRealtimeLogConfig.EndPointProperty

interface EndPointProperty

LanguageType name
.NETAmazon.CDK.AWS.CloudFront.CfnRealtimeLogConfig.EndPointProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnRealtimeLogConfig_EndPointProperty
Javasoftware.amazon.awscdk.services.cloudfront.CfnRealtimeLogConfig.EndPointProperty
Pythonaws_cdk.aws_cloudfront.CfnRealtimeLogConfig.EndPointProperty
TypeScript aws-cdk-lib » 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 { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const endPointProperty: cloudfront.CfnRealtimeLogConfig.EndPointProperty = {
  kinesisStreamConfig: {
    roleArn: 'roleArn',
    streamArn: 'streamArn',
  },
  streamType: 'streamType',
};

Properties

NameTypeDescription
kinesisStreamConfigIResolvable | KinesisStreamConfigPropertyContains information about the Amazon Kinesis data stream where you are sending real-time log data.
streamTypestringThe type of data stream where you are sending real-time log data.

kinesisStreamConfig

Type: IResolvable | KinesisStreamConfigProperty

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 .