Show / Hide Table of Contents

Class CfnPrompt.TextS3LocationProperty

The Amazon S3 location of the prompt text.

Inheritance
object
CfnPrompt.TextS3LocationProperty
Implements
CfnPrompt.ITextS3LocationProperty
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.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPrompt.TextS3LocationProperty : CfnPrompt.ITextS3LocationProperty
Syntax (vb)
Public Class CfnPrompt.TextS3LocationProperty Implements CfnPrompt.ITextS3LocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-texts3location.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-texts3location.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-texts3location.html#cfn-bedrock-prompt-texts3location-bucket

Key

The object key for the Amazon S3 location.

public string Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-texts3location.html#cfn-bedrock-prompt-texts3location-key

Version

The version of the Amazon S3 location to use.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-texts3location.html#cfn-bedrock-prompt-texts3location-version

Implements

CfnPrompt.ITextS3LocationProperty
Back to top Generated by DocFX