public addDocumentSteps()

in use_cases/custom-cloud9-ssm/lib/index.ts [59:67]


    public addDocumentSteps(steps: string): void {
        // Add the mainSteps section if it doesn't exist
        if (!('mainSteps' in this.document.content)) {
            this.document.content['mainSteps'] = []
        }

        // Add the new step
        this.document.content['mainSteps'].push(...yaml.parse(steps))
    }