interface CodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimePropsMixin.CodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimePropsMixin_CodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimePropsMixin.CodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimePropsMixin.CodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimePropsMixin » 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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const codeConfigurationProperty: bedrockagentcore_mixins.CfnRuntimePropsMixin.CodeConfigurationProperty = {
code: {
s3: {
bucket: 'bucket',
prefix: 'prefix',
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
(optional)
Object represents source code from zip file.
entryPoint?
Type:
string[]
(optional)
List of entry points.
runtime?
Type:
string
(optional)
Managed runtime types.

.NET
Go
Java
Python
TypeScript