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