Struct cfn::aws::ssm::DocumentProperties [] [src]

pub struct DocumentProperties {
    pub content: Value<Value>,
    pub document_type: Option<Value<String>>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the Document resource.

Fields

Property Content.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DocumentType.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DocumentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for DocumentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for DocumentProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DocumentProperties> for Document
[src]

[src]

Performs the conversion.

Auto Trait Implementations