Class: Aws::CloudFront::Types::KinesisStreamConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::KinesisStreamConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
When making an API call, you may pass KinesisStreamConfig data as a hash:
{
role_arn: "string", # required
stream_arn: "string", # required
}
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_arn ⇒ String
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.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
Instance Attribute Details
#role_arn ⇒ String
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*.
7942 7943 7944 7945 7946 7947 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 7942 class KinesisStreamConfig < Struct.new( :role_arn, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
7942 7943 7944 7945 7946 7947 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 7942 class KinesisStreamConfig < Struct.new( :role_arn, :stream_arn) SENSITIVE = [] include Aws::Structure end |