aws-cdk-lib.aws_emrserverless.CfnApplication.AutoStopConfigurationProperty

interface AutoStopConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.EMRServerless.CfnApplication.AutoStopConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemrserverless#CfnApplication_AutoStopConfigurationProperty
Javasoftware.amazon.awscdk.services.emrserverless.CfnApplication.AutoStopConfigurationProperty
Pythonaws_cdk.aws_emrserverless.CfnApplication.AutoStopConfigurationProperty
TypeScript aws-cdk-lib » aws_emrserverless » CfnApplication » 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 { aws_emrserverless as emrserverless } from 'aws-cdk-lib';
const autoStopConfigurationProperty: emrserverless.CfnApplication.AutoStopConfigurationProperty = {
  enabled: false,
  idleTimeoutMinutes: 123,
};

Properties

NameTypeDescription
enabled?boolean | IResolvableEnables the application to automatically stop after a certain amount of time being idle.
idleTimeoutMinutes?numberThe amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.

enabled?

Type: boolean | IResolvable (optional)

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.

Minimum : 1

Maximum : 10080