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

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

Overview

Note:

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

Instance Attribute Details

#role_arnString

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*.

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

Returns:

  • (String)


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_arnString

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

Returns:

  • (String)


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