Show / Hide Table of Contents

Interface CfnRealtimeLogConfigPropsMixin.IEndPointProperty

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

Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnRealtimeLogConfigPropsMixin.IEndPointProperty
Syntax (vb)
Public Interface CfnRealtimeLogConfigPropsMixin.IEndPointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.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.Mixins.Preview.AWS.CloudFront.Mixins;

             var endPointProperty = new EndPointProperty {
                 KinesisStreamConfig = new KinesisStreamConfigProperty {
                     RoleArn = "roleArn",
                     StreamArn = "streamArn"
                 },
                 StreamType = "streamType"
             };

Synopsis

Properties

KinesisStreamConfig

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

StreamType

The type of data stream where you are sending real-time log data.

Properties

KinesisStreamConfig

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

object? KinesisStreamConfig { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnRealtimeLogConfigPropsMixin.IKinesisStreamConfigProperty

StreamType

The type of data stream where you are sending real-time log data.

string? StreamType { get; }
Property Value

string

Remarks

The only valid value is Kinesis .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html#cfn-cloudfront-realtimelogconfig-endpoint-streamtype

Back to top Generated by DocFX