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.
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.
4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4351 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
4351 4352 4353 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4351 def unknown @unknown end |