Class CfnRuntimePropsMixin.CodeProperty
Object represents source code from zip file.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRuntimePropsMixin.CodeProperty : CfnRuntimePropsMixin.ICodeProperty
Syntax (vb)
Public Class CfnRuntimePropsMixin.CodeProperty Implements CfnRuntimePropsMixin.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.CfnPropertyMixins.AWS.BedrockAgentCore;
var codeProperty = new CodeProperty {
S3 = new S3LocationProperty {
Bucket = "bucket",
Prefix = "prefix",
VersionId = "versionId"
}
};
Synopsis
Constructors
| CodeProperty() | Object represents source code from zip file. |
Properties
| S3 | S3 Location Configuration. |
Constructors
CodeProperty()
Object represents source code from zip file.
public CodeProperty()
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.CfnPropertyMixins.AWS.BedrockAgentCore;
var codeProperty = new CodeProperty {
S3 = new S3LocationProperty {
Bucket = "bucket",
Prefix = "prefix",
VersionId = "versionId"
}
};
Properties
S3
S3 Location Configuration.
public object? S3 { get; set; }