interface AutoStopConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRServerless.Mixins.CfnApplicationPropsMixin.AutoStopConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrserverless/mixins#CfnApplicationPropsMixin_AutoStopConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.CfnApplicationPropsMixin.AutoStopConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_emrserverless.mixins.CfnApplicationPropsMixin.AutoStopConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrserverless » mixins » CfnApplicationPropsMixin » AutoStopConfigurationProperty |
The configuration for an application to automatically stop after a certain amount of time being idle.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emrserverless_mixins } from '@aws-cdk/mixins-preview/aws-emrserverless';
const autoStopConfigurationProperty: emrserverless_mixins.CfnApplicationPropsMixin.AutoStopConfigurationProperty = {
enabled: false,
idleTimeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Enables the application to automatically stop after a certain amount of time being idle. |
| idle | number | The amount of idle time in minutes after which your application will automatically stop. |
enabled?
Type:
boolean | IResolvable
(optional, default: true)
Enables the application to automatically stop after a certain amount of time being idle.
Defaults to true.
idleTimeoutMinutes?
Type:
number
(optional)
The amount of idle time in minutes after which your application will automatically stop.
Defaults to 15 minutes.

.NET
Go
Java
Python
TypeScript