Interface CfnRealtimeLogConfigPropsMixin.EndPointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRealtimeLogConfigPropsMixin.EndPointProperty.Jsii$Proxy
Enclosing class:
CfnRealtimeLogConfigPropsMixin

@Stability(Stable) public static interface CfnRealtimeLogConfigPropsMixin.EndPointProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
 EndPointProperty endPointProperty = EndPointProperty.builder()
         .kinesisStreamConfig(KinesisStreamConfigProperty.builder()
                 .roleArn("roleArn")
                 .streamArn("streamArn")
                 .build())
         .streamType("streamType")
         .build();
 

See Also: