> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/managedservicesplanparameters-object/managedservicesstartstopplanparameters-object.md).

# ManagedServicesStartStopPlanParameters Object

## Description

Additional parameters for a Managed Services Start/Stop plan.

## Properties

### startStopMode

Indicates what type of start & stop actions will be created.

Type: `string`

Allowed Values:

* `start-stop-combined`
* `start-stop`
* `start-only`
* `stop-only`

Required: Yes

### stopTimeInSeconds

Time (in seconds) after which the resources will be stopped. Required if `startStopMode` is set to `start-stop-combined` or `start-stop`.

Type: `integer`

Required: Conditional

## Sample JSON

```javascript
{
   "startStopMode": "start-stop-combined",
   "stopTimeInSeconds": 43200
}
```
