interface LifecycleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.LifecycleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_LifecycleConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.LifecycleConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.LifecycleConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » LifecycleConfigurationProperty |
Configuration for managing the lifecycle of runtime sessions and resources.
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 lifecycleConfigurationProperty: bedrockagentcore.CfnRuntime.LifecycleConfigurationProperty = {
idleRuntimeSessionTimeout: 123,
maxLifetime: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| idle | number | Timeout in seconds for idle runtime sessions. |
| max | number | Maximum lifetime in seconds for runtime sessions. |
idleRuntimeSessionTimeout?
Type:
number
(optional)
Timeout in seconds for idle runtime sessions.
maxLifetime?
Type:
number
(optional)
Maximum lifetime in seconds for runtime sessions.

.NET
Go
Java
Python
TypeScript