Show / Hide Table of Contents

Class CfnMemory.LlmExtractionConfigProperty

Inheritance
object
CfnMemory.LlmExtractionConfigProperty
Implements
CfnMemory.ILlmExtractionConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMemory.LlmExtractionConfigProperty : CfnMemory.ILlmExtractionConfigProperty
Syntax (vb)
Public Class CfnMemory.LlmExtractionConfigProperty Implements CfnMemory.ILlmExtractionConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-llmextractionconfig.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.AWS.BedrockAgentCore;

             var llmExtractionConfigProperty = new LlmExtractionConfigProperty {
                 Definition = "definition",

                 // the properties below are optional
                 LlmExtractionInstruction = "llmExtractionInstruction",
                 Validation = new ValidationProperty {
                     NumberValidation = new NumberValidationProperty {
                         MaxValue = 123,
                         MinValue = 123
                     },
                     StringListValidation = new StringListValidationProperty {
                         AllowedValues = new [] { "allowedValues" },
                         MaxItems = 123
                     },
                     StringValidation = new StringValidationProperty {
                         AllowedValues = new [] { "allowedValues" }
                     }
                 }
             };

Synopsis

Constructors

LlmExtractionConfigProperty()

Properties

Definition

Definition for the metadata schema entry.

LlmExtractionInstruction

LLM extraction instruction.

Validation

Constructors

LlmExtractionConfigProperty()

public LlmExtractionConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-llmextractionconfig.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.AWS.BedrockAgentCore;

             var llmExtractionConfigProperty = new LlmExtractionConfigProperty {
                 Definition = "definition",

                 // the properties below are optional
                 LlmExtractionInstruction = "llmExtractionInstruction",
                 Validation = new ValidationProperty {
                     NumberValidation = new NumberValidationProperty {
                         MaxValue = 123,
                         MinValue = 123
                     },
                     StringListValidation = new StringListValidationProperty {
                         AllowedValues = new [] { "allowedValues" },
                         MaxItems = 123
                     },
                     StringValidation = new StringValidationProperty {
                         AllowedValues = new [] { "allowedValues" }
                     }
                 }
             };

Properties

Definition

Definition for the metadata schema entry.

public string Definition { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-llmextractionconfig.html#cfn-bedrockagentcore-memory-llmextractionconfig-definition

LlmExtractionInstruction

LLM extraction instruction.

public string? LlmExtractionInstruction { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-llmextractionconfig.html#cfn-bedrockagentcore-memory-llmextractionconfig-llmextractioninstruction

Validation

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-llmextractionconfig.html#cfn-bedrockagentcore-memory-llmextractionconfig-validation

Type union: either IResolvable or CfnMemory.IValidationProperty

Implements

CfnMemory.ILlmExtractionConfigProperty
Back to top Generated by DocFX