Class: Aws::Kinesis::Types::CloudWatchLogs

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

Overview

The Amazon CloudWatch Logs settings for channel logging.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies whether logging to Amazon CloudWatch Logs is enabled.

Returns:

  • (Boolean)


362
363
364
365
366
367
368
# File 'lib/aws-sdk-kinesis/types.rb', line 362

class CloudWatchLogs < Struct.new(
  :enabled,
  :log_group_name,
  :log_stream_name)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_nameString

The name of the Amazon CloudWatch Logs log group. Defaults to /aws/kinesis/{channelName}/{channelId}.

Returns:

  • (String)


362
363
364
365
366
367
368
# File 'lib/aws-sdk-kinesis/types.rb', line 362

class CloudWatchLogs < Struct.new(
  :enabled,
  :log_group_name,
  :log_stream_name)
  SENSITIVE = []
  include Aws::Structure
end

#log_stream_nameString

The name of the Amazon CloudWatch Logs log stream. Defaults to DestinationDelivery.

Returns:

  • (String)


362
363
364
365
366
367
368
# File 'lib/aws-sdk-kinesis/types.rb', line 362

class CloudWatchLogs < Struct.new(
  :enabled,
  :log_group_name,
  :log_stream_name)
  SENSITIVE = []
  include Aws::Structure
end