Class: Aws::ObservabilityAdmin::Types::DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ObservabilityAdmin::Types::DataSource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-observabilityadmin/types.rb
Overview
Information about a data source associated with the telemetry pipeline. For CloudWatch Logs sources, this includes both a name and type extracted from the log event metadata. For third-party sources (such as S3), this includes only a name, with the type field left empty.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the data source.
-
#type ⇒ String
The type of the data source.
Instance Attribute Details
#name ⇒ String
The name of the data source. For CloudWatch Logs sources, this corresponds to the ‘data_source_name` from the log event metadata. For third-party sources, this is either the configured `data_source_name` or defaults to the plugin name if not specified.
584 585 586 587 588 589 |
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 584 class DataSource < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the data source. For CloudWatch Logs sources, this corresponds to the ‘data_source_type` from the log event metadata. For third-party sources, this field is empty.
584 585 586 587 588 589 |
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 584 class DataSource < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |