Class CfnPrompt.TextS3LocationProperty
The Amazon S3 location of the prompt text.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPrompt.TextS3LocationProperty : CfnPrompt.ITextS3LocationProperty
Syntax (vb)
Public Class CfnPrompt.TextS3LocationProperty Implements CfnPrompt.ITextS3LocationProperty
Remarks
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.Bedrock;
var textS3LocationProperty = new TextS3LocationProperty {
Bucket = "bucket",
Key = "key",
// the properties below are optional
Version = "version"
};
Synopsis
Constructors
| TextS3LocationProperty() | The Amazon S3 location of the prompt text. |
Properties
| Bucket | The Amazon S3 bucket containing the prompt text. |
| Key | The object key for the Amazon S3 location. |
| Version | The version of the Amazon S3 location to use. |
Constructors
TextS3LocationProperty()
The Amazon S3 location of the prompt text.
public TextS3LocationProperty()
Remarks
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.Bedrock;
var textS3LocationProperty = new TextS3LocationProperty {
Bucket = "bucket",
Key = "key",
// the properties below are optional
Version = "version"
};
Properties
Bucket
The Amazon S3 bucket containing the prompt text.
public string Bucket { get; set; }
Property Value
Remarks
Key
The object key for the Amazon S3 location.
public string Key { get; set; }
Property Value
Remarks
Version
The version of the Amazon S3 location to use.
public string? Version { get; set; }