Show / Hide Table of Contents

Class CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty

The configuration that specifies where to read agent traces for online evaluation.

Inheritance
object
CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty
Implements
CfnOnlineEvaluationConfigPropsMixin.IDataSourceConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty : CfnOnlineEvaluationConfigPropsMixin.IDataSourceConfigProperty
Syntax (vb)
Public Class CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty Implements CfnOnlineEvaluationConfigPropsMixin.IDataSourceConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-onlineevaluationconfig-datasourceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore;

             var dataSourceConfigProperty = new DataSourceConfigProperty {
                 CloudWatchLogs = new CloudWatchLogsInputConfigProperty {
                     LogGroupNames = new [] { "logGroupNames" },
                     ServiceNames = new [] { "serviceNames" }
                 }
             };

Synopsis

Constructors

DataSourceConfigProperty()

The configuration that specifies where to read agent traces for online evaluation.

Properties

CloudWatchLogs

The configuration for reading agent traces from CloudWatch logs.

Constructors

DataSourceConfigProperty()

The configuration that specifies where to read agent traces for online evaluation.

public DataSourceConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-onlineevaluationconfig-datasourceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore;

             var dataSourceConfigProperty = new DataSourceConfigProperty {
                 CloudWatchLogs = new CloudWatchLogsInputConfigProperty {
                     LogGroupNames = new [] { "logGroupNames" },
                     ServiceNames = new [] { "serviceNames" }
                 }
             };

Properties

CloudWatchLogs

The configuration for reading agent traces from CloudWatch logs.

public object? CloudWatchLogs { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-onlineevaluationconfig-datasourceconfig.html#cfn-bedrockagentcore-onlineevaluationconfig-datasourceconfig-cloudwatchlogs

Type union: either IResolvable or CfnOnlineEvaluationConfigPropsMixin.ICloudWatchLogsInputConfigProperty

Implements

CfnOnlineEvaluationConfigPropsMixin.IDataSourceConfigProperty
Back to top Generated by DocFX