UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

17 lines (16 loc) 676 B
"use strict"; // CloudFormation Resource AWS::SSM::Document Object.defineProperty(exports, "__esModule", { value: true }); exports.Document_Type = void 0; const base_1 = require("../../base"); exports.Document_Type = 'AWS::SSM::Document'; /** * The AWS::SSM::Document resource is an SSM document in AWS Systems * Manager that defines the actions that Systems Manager performs, which * can be used to set up and run commands on your instances. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html} */ function Document(props) { return new base_1.CfnResource(exports.Document_Type, props); } exports.default = Document;