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 ==
.