Show / Hide Table of Contents

Class DocumentArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DocumentArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ssm
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DocumentArgs : ResourceArgs

Constructors

View Source

DocumentArgs()

Declaration
public DocumentArgs()

Properties

View Source

AttachmentsSources

One or more configuration blocks describing attachments sources to a version of a document. Defined below.

Declaration
public InputList<DocumentAttachmentsSourceArgs> AttachmentsSources { get; set; }
Property Value
Type Description
InputList<DocumentAttachmentsSourceArgs>
View Source

Content

The JSON or YAML content of the document.

Declaration
public Input<string> Content { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DocumentFormat

The format of the document. Valid document types include: JSON and YAML

Declaration
public Input<string> DocumentFormat { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DocumentType

The type of the document. Valid document types include: Automation, Command, Package, Policy, and Session

Declaration
public Input<string> DocumentType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the document.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Permissions

Additional Permissions to attach to the document. See Permissions below for details.

Declaration
public InputMap<string> Permissions { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Tags

A map of tags to assign to the object.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

TargetType

The target type which defines the kinds of resources the document can run on. For example, /AWS::EC2::Instance. For a list of valid resource types, see AWS Resource Types Reference (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)

Declaration
public Input<string> TargetType { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.