interface AgentRuntimeArtifactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.AgentRuntimeArtifactProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_AgentRuntimeArtifactProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.AgentRuntimeArtifactProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.AgentRuntimeArtifactProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » 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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const agentRuntimeArtifactProperty: bedrockagentcore.CfnRuntime.AgentRuntimeArtifactProperty = {
codeConfiguration: {
code: {
s3: {
bucket: 'bucket',
prefix: 'prefix',
// the properties below are optional
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