Struct aws_sdk_fsx::types::SvmEndpoint
source · #[non_exhaustive]pub struct SvmEndpoint {
pub dns_name: Option<String>,
pub ip_addresses: Option<Vec<String>>,
}Expand description
An Amazon FSx for NetApp ONTAP storage virtual machine (SVM) has four endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dns_name: Option<String>The file system's DNS name. You can mount your file system using its DNS name.
ip_addresses: Option<Vec<String>>The SVM endpoint's IP addresses.
Implementations§
source§impl SvmEndpoint
impl SvmEndpoint
source§impl SvmEndpoint
impl SvmEndpoint
sourcepub fn builder() -> SvmEndpointBuilder
pub fn builder() -> SvmEndpointBuilder
Creates a new builder-style object to manufacture SvmEndpoint.
Trait Implementations§
source§impl Clone for SvmEndpoint
impl Clone for SvmEndpoint
source§fn clone(&self) -> SvmEndpoint
fn clone(&self) -> SvmEndpoint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SvmEndpoint
impl Debug for SvmEndpoint
source§impl PartialEq<SvmEndpoint> for SvmEndpoint
impl PartialEq<SvmEndpoint> for SvmEndpoint
source§fn eq(&self, other: &SvmEndpoint) -> bool
fn eq(&self, other: &SvmEndpoint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SvmEndpoint
Auto Trait Implementations§
impl RefUnwindSafe for SvmEndpoint
impl Send for SvmEndpoint
impl Sync for SvmEndpoint
impl Unpin for SvmEndpoint
impl UnwindSafe for SvmEndpoint
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