interface CodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.CodeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_CodeProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.CodeProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.CodeProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » CodeProperty |
Object represents source code from zip file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const codeProperty: bedrockagentcore.CfnRuntime.CodeProperty = {
s3: {
bucket: 'bucket',
prefix: 'prefix',
// the properties below are optional
versionId: 'versionId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | S3 | S3 Location Configuration. |
s3?
Type:
IResolvable | S3
(optional)
S3 Location Configuration.

.NET
Go
Java
Python
TypeScript