Show / Hide Table of Contents

Class CfnFlowVersionPropsMixin.PromptInferenceConfigurationProperty

Contains inference configurations for the prompt.

Inheritance
object
CfnFlowVersionPropsMixin.PromptInferenceConfigurationProperty
Implements
CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
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.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.PromptInferenceConfigurationProperty : CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.PromptInferenceConfigurationProperty Implements CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-promptinferenceconfiguration.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.Bedrock;

             var promptInferenceConfigurationProperty = new PromptInferenceConfigurationProperty {
                 Text = new PromptModelInferenceConfigurationProperty {
                     MaxTokens = 123,
                     StopSequences = new [] { "stopSequences" },
                     Temperature = 123,
                     TopP = 123
                 }
             };

Synopsis

Constructors

PromptInferenceConfigurationProperty()

Contains inference configurations for the prompt.

Properties

Text

Contains inference configurations for a text prompt.

Constructors

PromptInferenceConfigurationProperty()

Contains inference configurations for the prompt.

public PromptInferenceConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-promptinferenceconfiguration.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.Bedrock;

             var promptInferenceConfigurationProperty = new PromptInferenceConfigurationProperty {
                 Text = new PromptModelInferenceConfigurationProperty {
                     MaxTokens = 123,
                     StopSequences = new [] { "stopSequences" },
                     Temperature = 123,
                     TopP = 123
                 }
             };

Properties

Text

Contains inference configurations for a text prompt.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-promptinferenceconfiguration.html#cfn-bedrock-flowversion-promptinferenceconfiguration-text

Type union: either IResolvable or CfnFlowVersionPropsMixin.IPromptModelInferenceConfigurationProperty

Implements

CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
Back to top Generated by DocFX