Struct aws_sdk_fsx::model::OntapVolumeConfiguration [−][src]
#[non_exhaustive]pub struct OntapVolumeConfiguration {
pub flex_cache_endpoint_type: Option<FlexCacheEndpointType>,
pub junction_path: Option<String>,
pub security_style: Option<SecurityStyle>,
pub size_in_megabytes: Option<i32>,
pub storage_efficiency_enabled: Option<bool>,
pub storage_virtual_machine_id: Option<String>,
pub storage_virtual_machine_root: Option<bool>,
pub tiering_policy: Option<TieringPolicy>,
pub uuid: Option<String>,
pub ontap_volume_type: Option<OntapVolumeType>,
}Expand description
The configuration of an Amazon FSx for NetApp ONTAP volume
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.flex_cache_endpoint_type: Option<FlexCacheEndpointType>Specifies the FlexCache endpoint type of the volume. Valid values are the following:
-
NONEspecifies that the volume doesn't have a FlexCache configuration.NONEis the default. -
ORIGINspecifies that the volume is the origin volume for a FlexCache volume. -
CACHEspecifies that the volume is a FlexCache volume.
junction_path: Option<String>Specifies the directory that NAS clients use to mount the volume, along with the SVM DNS name or IP address.
You can create a JunctionPath directly below a parent volume junction or on a
directory within a volume. A JunctionPath for a volume named vol3 might
be /vol1/vol2/vol3, or /vol1/dir2/vol3, or even /dir1/dir2/vol3..
security_style: Option<SecurityStyle>The security style for the volume, which can be UNIX,
NTFS, or MIXED.
size_in_megabytes: Option<i32>The configured size of the volume, in megabytes (MBs).
storage_efficiency_enabled: Option<bool>The volume's storage efficiency setting.
storage_virtual_machine_id: Option<String>The ID of the volume's storage virtual machine.
storage_virtual_machine_root: Option<bool>A boolean flag indicating whether this volume is the root volume for its storage virtual machine (SVM). Only one volume on an SVM can be the root volume. This value defaults to false. If this value is true, then this is the SVM root volume.
This flag is useful when you're deleting an SVM, because you must first delete all non-root volumes. This flag, when set to false, helps you identify which volumes to delete before you can delete the SVM.
tiering_policy: Option<TieringPolicy>The volume's TieringPolicy setting.
uuid: Option<String>The volume's UUID (universally unique identifier).
ontap_volume_type: Option<OntapVolumeType>Specifies the type of volume. Valid values are the following:
-
RWspecifies a read-write volume.RWis the default. -
DPspecifies a data protection volume. You can protect data by replicating it to data protection mirror copies and use data protection mirror copies to recover data when a disaster occurs. -
LSspecifies a load-sharing mirror volume. A load-sharing mirror reduces the network traffic to a FlexVol volume by providing additional read-only access to clients.
Implementations
Specifies the FlexCache endpoint type of the volume. Valid values are the following:
-
NONEspecifies that the volume doesn't have a FlexCache configuration.NONEis the default. -
ORIGINspecifies that the volume is the origin volume for a FlexCache volume. -
CACHEspecifies that the volume is a FlexCache volume.
Specifies the directory that NAS clients use to mount the volume, along with the SVM DNS name or IP address.
You can create a JunctionPath directly below a parent volume junction or on a
directory within a volume. A JunctionPath for a volume named vol3 might
be /vol1/vol2/vol3, or /vol1/dir2/vol3, or even /dir1/dir2/vol3..
The security style for the volume, which can be UNIX,
NTFS, or MIXED.
The configured size of the volume, in megabytes (MBs).
The volume's storage efficiency setting.
The ID of the volume's storage virtual machine.
A boolean flag indicating whether this volume is the root volume for its storage virtual machine (SVM). Only one volume on an SVM can be the root volume. This value defaults to false. If this value is true, then this is the SVM root volume.
This flag is useful when you're deleting an SVM, because you must first delete all non-root volumes. This flag, when set to false, helps you identify which volumes to delete before you can delete the SVM.
The volume's TieringPolicy setting.
Specifies the type of volume. Valid values are the following:
-
RWspecifies a read-write volume.RWis the default. -
DPspecifies a data protection volume. You can protect data by replicating it to data protection mirror copies and use data protection mirror copies to recover data when a disaster occurs. -
LSspecifies a load-sharing mirror volume. A load-sharing mirror reduces the network traffic to a FlexVol volume by providing additional read-only access to clients.
Creates a new builder-style object to manufacture OntapVolumeConfiguration
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for OntapVolumeConfiguration
impl Send for OntapVolumeConfiguration
impl Sync for OntapVolumeConfiguration
impl Unpin for OntapVolumeConfiguration
impl UnwindSafe for OntapVolumeConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more