interface CodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.CodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_CodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.CodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.CodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const codeConfigurationProperty: bedrockagentcore.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