interface AutoStartConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRServerless.Mixins.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrserverless/mixins#CfnApplicationPropsMixin_AutoStartConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_emrserverless.mixins.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrserverless » mixins » CfnApplicationPropsMixin » AutoStartConfigurationProperty |
The configuration for an application to automatically start on job submission.
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 autoStartConfigurationProperty: emrserverless_mixins.CfnApplicationPropsMixin.AutoStartConfigurationProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Enables the application to automatically start on job submission. |
enabled?
Type:
boolean | IResolvable
(optional, default: true)
Enables the application to automatically start on job submission.

.NET
Go
Java
Python
TypeScript