interface KinesisStreamConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnRealtimeLogConfigPropsMixin.KinesisStreamConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnRealtimeLogConfigPropsMixin_KinesisStreamConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnRealtimeLogConfigPropsMixin.KinesisStreamConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnRealtimeLogConfigPropsMixin.KinesisStreamConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnRealtimeLogConfigPropsMixin » KinesisStreamConfigProperty |
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
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 kinesisStreamConfigProperty: cloudfront_mixins.CfnRealtimeLogConfigPropsMixin.KinesisStreamConfigProperty = {
roleArn: 'roleArn',
streamArn: 'streamArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream. |
| stream | string | The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data. |
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.
For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide .
streamArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

.NET
Go
Java
Python
TypeScript