Struct aws_sdk_datasync::operation::create_location_fsx_open_zfs::CreateLocationFsxOpenZfsInput
source · #[non_exhaustive]pub struct CreateLocationFsxOpenZfsInput {
pub fsx_filesystem_arn: Option<String>,
pub protocol: Option<FsxProtocol>,
pub security_group_arns: Option<Vec<String>>,
pub subdirectory: Option<String>,
pub tags: Option<Vec<TagListEntry>>,
}
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.fsx_filesystem_arn: Option<String>
The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.
protocol: Option<FsxProtocol>
The type of protocol that DataSync uses to access your file system.
security_group_arns: Option<Vec<String>>
The ARNs of the security groups that are used to configure the FSx for OpenZFS file system.
subdirectory: Option<String>
A subdirectory in the location's path that must begin with /fsx
. DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).
The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
Implementations§
source§impl CreateLocationFsxOpenZfsInput
impl CreateLocationFsxOpenZfsInput
sourcepub fn fsx_filesystem_arn(&self) -> Option<&str>
pub fn fsx_filesystem_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.
sourcepub fn protocol(&self) -> Option<&FsxProtocol>
pub fn protocol(&self) -> Option<&FsxProtocol>
The type of protocol that DataSync uses to access your file system.
sourcepub fn security_group_arns(&self) -> &[String]
pub fn security_group_arns(&self) -> &[String]
The ARNs of the security groups that are used to configure the FSx for OpenZFS file system.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_group_arns.is_none()
.
sourcepub fn subdirectory(&self) -> Option<&str>
pub fn subdirectory(&self) -> Option<&str>
A subdirectory in the location's path that must begin with /fsx
. DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).
The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateLocationFsxOpenZfsInput
impl CreateLocationFsxOpenZfsInput
sourcepub fn builder() -> CreateLocationFsxOpenZfsInputBuilder
pub fn builder() -> CreateLocationFsxOpenZfsInputBuilder
Creates a new builder-style object to manufacture CreateLocationFsxOpenZfsInput
.
Trait Implementations§
source§impl Clone for CreateLocationFsxOpenZfsInput
impl Clone for CreateLocationFsxOpenZfsInput
source§fn clone(&self) -> CreateLocationFsxOpenZfsInput
fn clone(&self) -> CreateLocationFsxOpenZfsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateLocationFsxOpenZfsInput
impl PartialEq for CreateLocationFsxOpenZfsInput
source§fn eq(&self, other: &CreateLocationFsxOpenZfsInput) -> bool
fn eq(&self, other: &CreateLocationFsxOpenZfsInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateLocationFsxOpenZfsInput
Auto Trait Implementations§
impl Freeze for CreateLocationFsxOpenZfsInput
impl RefUnwindSafe for CreateLocationFsxOpenZfsInput
impl Send for CreateLocationFsxOpenZfsInput
impl Sync for CreateLocationFsxOpenZfsInput
impl Unpin for CreateLocationFsxOpenZfsInput
impl UnwindSafe for CreateLocationFsxOpenZfsInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more