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

pub struct AssociationProperties {
    pub association_name: Option<Value<String>>,
    pub document_version: Option<Value<String>>,
    pub instance_id: Option<Value<String>>,
    pub name: Value<String>,
    pub parameters: Option<ValueMap<ParameterValues>>,
    pub schedule_expression: Option<Value<String>>,
    pub targets: Option<ValueList<Target>>,
}

Properties for the Association resource.

Fields

Property AssociationName.

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

Property DocumentVersion.

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

Property InstanceId.

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

Property Name.

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

Property Parameters.

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

Property ScheduleExpression.

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

Property Targets.

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

Trait Implementations

impl Debug for AssociationProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for AssociationProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AssociationProperties> for Association
[src]

[src]

Performs the conversion.

Auto Trait Implementations