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
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
Remarks
StreamType
The type of data stream where you are sending real-time log data.
string? StreamType { get; }