pub struct MoverSourceEndpointResult {
pub description: Output<Option<String>>,
pub export: Output<Option<String>>,
pub host: Output<String>,
pub name: Output<String>,
pub nfs_version: Output<Option<String>>,
pub storage_mover_id: Output<String>,
}
Fields§
§description: Output<Option<String>>
Specifies a description for the Storage Mover Source Endpoint.
export: Output<Option<String>>
Specifies the directory being exported from the server. Changing this forces a new resource to be created.
host: Output<String>
Specifies the host name or IP address of the server exporting the file system. Changing this forces a new resource to be created.
name: Output<String>
Specifies the name which should be used for this Storage Mover Source Endpoint. Changing this forces a new resource to be created.
nfs_version: Output<Option<String>>
Specifies the NFS protocol version. Possible values are NFSauto
, NFSv3
and NFSv4
. Defaults to NFSauto
. Changing this forces a new resource to be created.
storage_mover_id: Output<String>
Specifies the ID of the Storage Mover for this Storage Mover Source Endpoint. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for MoverSourceEndpointResult
impl RefUnwindSafe for MoverSourceEndpointResult
impl Send for MoverSourceEndpointResult
impl Sync for MoverSourceEndpointResult
impl Unpin for MoverSourceEndpointResult
impl UnwindSafe for MoverSourceEndpointResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more