Class CfnAgent.S3IdentifierProperty
The identifier information for an Amazon S3 bucket.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAgent.S3IdentifierProperty : CfnAgent.IS3IdentifierProperty
Syntax (vb)
Public Class CfnAgent.S3IdentifierProperty Implements CfnAgent.IS3IdentifierProperty
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 s3IdentifierProperty = new S3IdentifierProperty {
S3BucketName = "s3BucketName",
S3ObjectKey = "s3ObjectKey"
};
Synopsis
Constructors
| S3IdentifierProperty() | The identifier information for an Amazon S3 bucket. |
Properties
| S3BucketName | The name of the S3 bucket. |
| S3ObjectKey | The S3 object key for the S3 resource. |
Constructors
S3IdentifierProperty()
The identifier information for an Amazon S3 bucket.
public S3IdentifierProperty()
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 s3IdentifierProperty = new S3IdentifierProperty {
S3BucketName = "s3BucketName",
S3ObjectKey = "s3ObjectKey"
};
Properties
S3BucketName
The name of the S3 bucket.
public string? S3BucketName { get; set; }
Property Value
Remarks
S3ObjectKey
The S3 object key for the S3 resource.
public string? S3ObjectKey { get; set; }