Class: Aws::CloudWatchLogs::Types::LogFieldsListItem

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

Overview

Represents a log field with its name and data type information for a specific data source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#log_field_nameString

The name of the log field.

Returns:

  • (String)


5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5448

class LogFieldsListItem < Struct.new(
  :log_field_name,
  :log_field_type)
  SENSITIVE = []
  include Aws::Structure
end

#log_field_typeTypes::LogFieldType

The data type information for the log field.

Returns:



5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5448

class LogFieldsListItem < Struct.new(
  :log_field_name,
  :log_field_type)
  SENSITIVE = []
  include Aws::Structure
end