Class: Aws::ObservabilityAdmin::Types::SourceLogsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ObservabilityAdmin::Types::SourceLogsConfiguration
- Defined in:
- gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb
Overview
Configuration for selecting and handling source log groups for centralization.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_source_selection_criteria ⇒ String
The selection criteria that specifies which data sources to centralize.
-
#encrypted_log_group_strategy ⇒ String
A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK).
-
#log_group_selection_criteria ⇒ String
The selection criteria that specifies which source log groups to centralize.
Instance Attribute Details
#data_source_selection_criteria ⇒ String
The selection criteria that specifies which data sources to
centralize. The selection criteria uses the same filter expression
format as LogGroupSelectionCriteria, but operates on
DataSourceName and DataSourceType operands. When both
LogGroupSelectionCriteria and DataSourceSelectionCriteria are
specified, a log event must match both criteria to be centralized.
1860 1861 1862 1863 1864 1865 1866 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 1860 class SourceLogsConfiguration < Struct.new( :log_group_selection_criteria, :data_source_selection_criteria, :encrypted_log_group_strategy) SENSITIVE = [] include Aws::Structure end |
#encrypted_log_group_strategy ⇒ String
A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK). ALLOW will consider CMK encrypted source log groups for centralization while SKIP will skip CMK encrypted source log groups from centralization.
1860 1861 1862 1863 1864 1865 1866 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 1860 class SourceLogsConfiguration < Struct.new( :log_group_selection_criteria, :data_source_selection_criteria, :encrypted_log_group_strategy) SENSITIVE = [] include Aws::Structure end |
#log_group_selection_criteria ⇒ String
The selection criteria that specifies which source log groups to centralize. The selection criteria uses the same format as OAM link filters.
1860 1861 1862 1863 1864 1865 1866 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 1860 class SourceLogsConfiguration < Struct.new( :log_group_selection_criteria, :data_source_selection_criteria, :encrypted_log_group_strategy) SENSITIVE = [] include Aws::Structure end |