Class: Aws::CloudFront::Types::KinesisStreamConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Contains information about the Amazon Kinesis data stream where you are sending real-time log data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The Amazon Resource Name (ARN) of an 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*.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-iam-role

Returns:

  • (String)


6765
6766
6767
6768
6769
6770
# File 'lib/aws-sdk-cloudfront/types.rb', line 6765

class KinesisStreamConfig < Struct.new(
  :role_arn,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.

Returns:

  • (String)


6765
6766
6767
6768
6769
6770
# File 'lib/aws-sdk-cloudfront/types.rb', line 6765

class KinesisStreamConfig < Struct.new(
  :role_arn,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end