public static interface CfnRealtimeLogConfig.EndPointProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudfront.*; EndPointProperty endPointProperty = EndPointProperty.builder() .kinesisStreamConfig(KinesisStreamConfigProperty.builder() .roleArn("roleArn") .streamArn("streamArn") .build()) .streamType("streamType") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnRealtimeLogConfig.EndPointProperty.Builder
A builder for
CfnRealtimeLogConfig.EndPointProperty |
static class |
CfnRealtimeLogConfig.EndPointProperty.Jsii$Proxy
An implementation for
CfnRealtimeLogConfig.EndPointProperty |
Modifier and Type | Method and Description |
---|---|
static CfnRealtimeLogConfig.EndPointProperty.Builder |
builder() |
java.lang.Object |
getKinesisStreamConfig()
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
java.lang.String |
getStreamType()
The type of data stream where you are sending real-time log data.
|
java.lang.Object getKinesisStreamConfig()
java.lang.String getStreamType()
The only valid value is Kinesis
.
static CfnRealtimeLogConfig.EndPointProperty.Builder builder()