interface EndPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnRealtimeLogConfigPropsMixin_EndPointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnRealtimeLogConfigPropsMixin.EndPointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const endPointProperty: cloudfront.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