Class: Aws::BedrockAgentCoreControl::Types::DataSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::DataSourceConfig
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
DataSourceConfig is a union - when making an API calls you must set exactly one of the members.
Note:
DataSourceConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataSourceConfig corresponding to the set member.
The configuration that specifies where to read agent traces for online evaluation.
Direct Known Subclasses
Defined Under Namespace
Classes: CloudWatchLogs, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_logs ⇒ Types::CloudWatchLogsInputConfig
The CloudWatch logs configuration for reading agent traces from log groups.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#cloud_watch_logs ⇒ Types::CloudWatchLogsInputConfig
The CloudWatch logs configuration for reading agent traces from log groups.
2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2726 class DataSourceConfig < Struct.new( :cloud_watch_logs, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CloudWatchLogs < DataSourceConfig; end class Unknown < DataSourceConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2726 2727 2728 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2726 def unknown @unknown end |