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

pub struct FileSystemProperties {
    pub encrypted: Option<Value<bool>>,
    pub file_system_tags: Option<ValueList<ElasticFileSystemTag>>,
    pub kms_key_id: Option<Value<String>>,
    pub performance_mode: Option<Value<String>>,
}

Properties for the FileSystem resource.

Fields

Property Encrypted.

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

Property FileSystemTags.

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

Property KmsKeyId.

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

Property PerformanceMode.

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

Trait Implementations

impl Debug for FileSystemProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for FileSystemProperties
[src]

[src]

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

impl Serialize for FileSystemProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<FileSystemProperties> for FileSystem
[src]

[src]

Performs the conversion.

Auto Trait Implementations