Struct cfn::aws::efs::MountTargetProperties [] [src]

pub struct MountTargetProperties {
    pub file_system_id: Value<String>,
    pub ip_address: Option<Value<String>>,
    pub security_groups: ValueList<String>,
    pub subnet_id: Value<String>,
}

Properties for the MountTarget resource.

Fields

Property FileSystemId.

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

Property IpAddress.

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

Property SecurityGroups.

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

Property SubnetId.

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

Trait Implementations

impl Debug for MountTargetProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for MountTargetProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<MountTargetProperties> for MountTarget
[src]

[src]

Performs the conversion.

Auto Trait Implementations