Class: Aws::Kinesis::Types::CloudWatchLogsUpdateInput

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

Overview

The updated Amazon CloudWatch Logs settings for a channel.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies whether logging to Amazon CloudWatch Logs is enabled.

Returns:

  • (Boolean)


386
387
388
389
390
391
392
# File 'lib/aws-sdk-kinesis/types.rb', line 386

class CloudWatchLogsUpdateInput < 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.

Returns:

  • (String)


386
387
388
389
390
391
392
# File 'lib/aws-sdk-kinesis/types.rb', line 386

class CloudWatchLogsUpdateInput < 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.

Returns:

  • (String)


386
387
388
389
390
391
392
# File 'lib/aws-sdk-kinesis/types.rb', line 386

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