SsmDocument

An SSM document configuration for post-launch automation

Amazon Application Migration ServiceMigrationLift And ShiftCloud Migration

Properties

Name Type Description
actionName string Name of the SSM action
ssmDocumentName string SSM document name
timeoutSeconds integer Timeout in seconds
mustSucceedForCutover boolean Whether this action must succeed for cutover to proceed
parameters object SSM document parameters
View JSON Schema on GitHub

JSON Schema

application-migration-service-ssm-document-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-application-migration-service/json-schema/application-migration-service-ssm-document-schema.json",
  "title": "SsmDocument",
  "description": "An SSM document configuration for post-launch automation",
  "type": "object",
  "properties": {
    "actionName": {
      "type": "string",
      "description": "Name of the SSM action"
    },
    "ssmDocumentName": {
      "type": "string",
      "description": "SSM document name"
    },
    "timeoutSeconds": {
      "type": "integer",
      "description": "Timeout in seconds"
    },
    "mustSucceedForCutover": {
      "type": "boolean",
      "description": "Whether this action must succeed for cutover to proceed"
    },
    "parameters": {
      "type": "object",
      "description": "SSM document parameters"
    }
  }
}