interface HarnessAgentCoreRuntimeEnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessAgentCoreRuntimeEnvironmentProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessAgentCoreRuntimeEnvironmentProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessAgentCoreRuntimeEnvironmentProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessAgentCoreRuntimeEnvironmentProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessAgentCoreRuntimeEnvironmentProperty |
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 harnessAgentCoreRuntimeEnvironmentProperty: bedrockagentcore.CfnHarness.HarnessAgentCoreRuntimeEnvironmentProperty = {
agentRuntimeArn: 'agentRuntimeArn',
agentRuntimeId: 'agentRuntimeId',
agentRuntimeName: 'agentRuntimeName',
filesystemConfigurations: [{
sessionStorage: {
mountPath: 'mountPath',
},
}],
lifecycleConfiguration: {
idleRuntimeSessionTimeout: 123,
maxLifetime: 123,
},
networkConfiguration: {
networkMode: 'networkMode',
// the properties below are optional
networkModeConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the underlying AgentCore Runtime. |
| agent | string | The ID of the underlying AgentCore Runtime. |
| agent | string | The name of the underlying AgentCore Runtime. |
| filesystem | IResolvable | (IResolvable | Filesystem)[] | |
| lifecycle | IResolvable | Lifecycle | |
| network | IResolvable | Network |
agentRuntimeArn?
Type:
string
(optional)
The ARN of the underlying AgentCore Runtime.
agentRuntimeId?
Type:
string
(optional)
The ID of the underlying AgentCore Runtime.
agentRuntimeName?
Type:
string
(optional)
The name of the underlying AgentCore Runtime.
filesystemConfigurations?
Type:
IResolvable | (IResolvable | Filesystem)[]
(optional)
lifecycleConfiguration?
Type:
IResolvable | Lifecycle
(optional)
networkConfiguration?
Type:
IResolvable | Network
(optional)

.NET
Go
Java
Python
TypeScript