interface EndPointProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnRealtimeLogConfig.EndPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnRealtimeLogConfig_EndPointProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnRealtimeLogConfig.EndPointProperty |
Python | aws_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
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
.