Interface CfnRealtimeLogConfig.KinesisStreamConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRealtimeLogConfig.KinesisStreamConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnRealtimeLogConfig
@Stability(Stable)
public static interface CfnRealtimeLogConfig.KinesisStreamConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
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.*; KinesisStreamConfigProperty kinesisStreamConfigProperty = KinesisStreamConfigProperty.builder() .roleArn("roleArn") .streamArn("streamArn") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRealtimeLogConfig.KinesisStreamConfigProperty
static final class
An implementation forCfnRealtimeLogConfig.KinesisStreamConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
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.The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
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.For more information the IAM role, see Real-time log configuration IAM role in the Amazon CloudFront Developer Guide .
-
getStreamArn
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data. -
builder
-