interface EndPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnRealtimeLogConfigPropsMixin_EndPointProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnRealtimeLogConfigPropsMixin » EndPointProperty |
Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const endPointProperty: cloudfront_mixins.CfnRealtimeLogConfigPropsMixin.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 in a real-time log configuration. |
| stream | string | The type of data stream where you are sending real-time log data. |
kinesisStreamConfig?
Type:
IResolvable | Kinesis
(optional)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
streamType?
Type:
string
(optional)
The type of data stream where you are sending real-time log data.
The only valid value is Kinesis .

.NET
Go
Java
Python
TypeScript