interface AgentRuntimeArtifactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimePropsMixin.AgentRuntimeArtifactProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimePropsMixin_AgentRuntimeArtifactProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimePropsMixin.AgentRuntimeArtifactProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimePropsMixin.AgentRuntimeArtifactProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimePropsMixin » AgentRuntimeArtifactProperty |
The artifact of the agent.
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 agentRuntimeArtifactProperty: bedrockagentcore_mixins.CfnRuntimePropsMixin.AgentRuntimeArtifactProperty = {
codeConfiguration: {
code: {
s3: {
bucket: 'bucket',
prefix: 'prefix',
versionId: 'versionId',
},
},
entryPoint: ['entryPoint'],
runtime: 'runtime',
},
containerConfiguration: {
containerUri: 'containerUri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| code | IResolvable | Code | Representation of a code configuration. |
| container | IResolvable | Container | Representation of a container configuration. |
codeConfiguration?
Type:
IResolvable | Code
(optional)
Representation of a code configuration.
containerConfiguration?
Type:
IResolvable | Container
(optional)
Representation of a container configuration.

.NET
Go
Java
Python
TypeScript