interface MaintenanceOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EC2.CfnLaunchTemplate.MaintenanceOptionsProperty | 
  Java | software.amazon.awscdk.services.ec2.CfnLaunchTemplate.MaintenanceOptionsProperty | 
  Python | aws_cdk.aws_ec2.CfnLaunchTemplate.MaintenanceOptionsProperty | 
  TypeScript  | @aws-cdk/aws-ec2 » CfnLaunchTemplate » MaintenanceOptionsProperty | 
The maintenance options of your instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const maintenanceOptionsProperty: ec2.CfnLaunchTemplate.MaintenanceOptionsProperty = {
  autoRecovery: 'autoRecovery',
};
Properties
| Name | Type | Description | 
|---|---|---|
| auto | string | Disables the automatic recovery behavior of your instance or sets it to default. | 
autoRecovery?
Type:
string
(optional)
Disables the automatic recovery behavior of your instance or sets it to default.

 .NET
 Java
 Python
 TypeScript