Show / Hide Table of Contents

Class CfnRealtimeLogConfig.KinesisStreamConfigProperty

Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

Inheritance
System.Object
CfnRealtimeLogConfig.KinesisStreamConfigProperty
Implements
CfnRealtimeLogConfig.IKinesisStreamConfigProperty
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.AWS.CloudFront.dll
Syntax (csharp)
public class KinesisStreamConfigProperty : Object, CfnRealtimeLogConfig.IKinesisStreamConfigProperty
Syntax (vb)
Public Class KinesisStreamConfigProperty
    Inherits Object
    Implements CfnRealtimeLogConfig.IKinesisStreamConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-kinesisstreamconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;

var kinesisStreamConfigProperty = new KinesisStreamConfigProperty {
    RoleArn = "roleArn",
    StreamArn = "streamArn"
};

Synopsis

Constructors

KinesisStreamConfigProperty()

Properties

RoleArn

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.

StreamArn

The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

Constructors

KinesisStreamConfigProperty()

public KinesisStreamConfigProperty()

Properties

RoleArn

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.

public string RoleArn { get; set; }
Property Value

System.String

Remarks

For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-kinesisstreamconfig.html#cfn-cloudfront-realtimelogconfig-kinesisstreamconfig-rolearn

StreamArn

The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

public string StreamArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-kinesisstreamconfig.html#cfn-cloudfront-realtimelogconfig-kinesisstreamconfig-streamarn

Implements

CfnRealtimeLogConfig.IKinesisStreamConfigProperty
Back to top Generated by DocFX