interface AutoStartConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRServerless.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrserverless#CfnApplicationPropsMixin_AutoStartConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrserverless.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_emrserverless.CfnApplicationPropsMixin.AutoStartConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrserverless » 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 { aws_emrserverless as emrserverless } from '@aws-cdk/cfn-property-mixins';
const autoStartConfigurationProperty: emrserverless.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