Class: Aws::SecurityLake::Types::LogSourceResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityLake::Types::LogSourceResource
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-securitylake/types.rb
Overview
LogSourceResource is a union - when making an API calls you must set exactly one of the members.
LogSourceResource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LogSourceResource corresponding to the set member.
The supported source types from which logs and events are collected in Amazon Security Lake. For a list of supported Amazon Web Services services, see the [Amazon Security Lake User Guide].
[1]: docs.aws.amazon.com/security-lake/latest/userguide/internal-sources.html
Direct Known Subclasses
Defined Under Namespace
Classes: AwsLogSource, CustomLogSource, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_log_source ⇒ Types::AwsLogSourceResource
Amazon Security Lake supports log and event collection for natively supported Amazon Web Services services.
-
#custom_log_source ⇒ Types::CustomLogSourceResource
Amazon Security Lake supports custom source types.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_log_source ⇒ Types::AwsLogSourceResource
Amazon Security Lake supports log and event collection for natively supported Amazon Web Services services. For more information, see the [Amazon Security Lake User Guide].
[1]: docs.aws.amazon.com/security-lake/latest/userguide/internal-sources.html
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 |
# File 'lib/aws-sdk-securitylake/types.rb', line 1477 class LogSourceResource < Struct.new( :aws_log_source, :custom_log_source, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsLogSource < LogSourceResource; end class CustomLogSource < LogSourceResource; end class Unknown < LogSourceResource; end end |
#custom_log_source ⇒ Types::CustomLogSourceResource
Amazon Security Lake supports custom source types. For more information, see the [Amazon Security Lake User Guide].
[1]: docs.aws.amazon.com/security-lake/latest/userguide/custom-sources.html
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 |
# File 'lib/aws-sdk-securitylake/types.rb', line 1477 class LogSourceResource < Struct.new( :aws_log_source, :custom_log_source, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsLogSource < LogSourceResource; end class CustomLogSource < LogSourceResource; end class Unknown < LogSourceResource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1477 1478 1479 |
# File 'lib/aws-sdk-securitylake/types.rb', line 1477 def unknown @unknown end |