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

pub struct ParameterProperties {
    pub allowed_pattern: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub name: Option<Value<String>>,
    pub type_: Value<String>,
    pub value: Value<String>,
}

Properties for the Parameter resource.

Fields

Property AllowedPattern.

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

Property Description.

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

Property Name.

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

Property Type.

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

Property Value.

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

Trait Implementations

impl Debug for ParameterProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ParameterProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ParameterProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ParameterProperties> for Parameter
[src]

[src]

Performs the conversion.

Auto Trait Implementations