interface CodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.CodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_CodeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.CodeConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.CodeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » CodeConfigurationProperty |
Representation of a code configuration.
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 codeConfigurationProperty: bedrockagentcore.CfnRuntime.CodeConfigurationProperty = {
code: {
s3: {
bucket: 'bucket',
prefix: 'prefix',
// the properties below are optional
versionId: 'versionId',
},
},
entryPoint: ['entryPoint'],
runtime: 'runtime',
};
Properties
| Name | Type | Description |
|---|---|---|
| code | IResolvable | Code | Object represents source code from zip file. |
| entry | string[] | List of entry points. |
| runtime | string | Managed runtime types. |
code
Type:
IResolvable | Code
Object represents source code from zip file.
entryPoint
Type:
string[]
List of entry points.
runtime
Type:
string
Managed runtime types.

.NET
Go
Java
Python
TypeScript