Interface CfnRuntime.ICodeProperty
Object represents source code from zip file.
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRuntime.ICodeProperty
Syntax (vb)
Public Interface CfnRuntime.ICodeProperty
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.BedrockAgentCore;
var codeProperty = new CodeProperty {
S3 = new S3LocationProperty {
Bucket = "bucket",
Prefix = "prefix",
// the properties below are optional
VersionId = "versionId"
}
};
Synopsis
Properties
| S3 | S3 Location Configuration. |
Properties
S3
S3 Location Configuration.
object? S3 { get; }