Class: Aws::CloudWatchLogs::Types::LogFieldType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::LogFieldType
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Defines the data type structure for a log field, including the type, element information, and nested fields for complex types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#element ⇒ Types::LogFieldType
For array or collection types, specifies the element type information.
-
#fields ⇒ Array<Types::LogFieldsListItem>
For complex types, contains the nested field definitions.
-
#type ⇒ String
The data type of the log field.
Instance Attribute Details
#element ⇒ Types::LogFieldType
For array or collection types, specifies the element type information.
5100 5101 5102 5103 5104 5105 5106 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 5100 class LogFieldType < Struct.new( :type, :element, :fields) SENSITIVE = [] include Aws::Structure end |
#fields ⇒ Array<Types::LogFieldsListItem>
For complex types, contains the nested field definitions.
5100 5101 5102 5103 5104 5105 5106 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 5100 class LogFieldType < Struct.new( :type, :element, :fields) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the log field.
5100 5101 5102 5103 5104 5105 5106 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 5100 class LogFieldType < Struct.new( :type, :element, :fields) SENSITIVE = [] include Aws::Structure end |