Struct aws_sdk_datasync::operation::create_location_fsx_lustre::CreateLocationFsxLustreInput
source · #[non_exhaustive]pub struct CreateLocationFsxLustreInput {
pub fsx_filesystem_arn: Option<String>,
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) for the FSx for Lustre file system.
security_group_arns: Option<Vec<String>>
The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Lustre file system.
subdirectory: Option<String>
A subdirectory in the location's path. This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.
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 CreateLocationFsxLustreInput
impl CreateLocationFsxLustreInput
sourcepub fn fsx_filesystem_arn(&self) -> Option<&str>
pub fn fsx_filesystem_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the FSx for Lustre file system.
sourcepub fn security_group_arns(&self) -> &[String]
pub fn security_group_arns(&self) -> &[String]
The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Lustre 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. This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.
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 CreateLocationFsxLustreInput
impl CreateLocationFsxLustreInput
sourcepub fn builder() -> CreateLocationFsxLustreInputBuilder
pub fn builder() -> CreateLocationFsxLustreInputBuilder
Creates a new builder-style object to manufacture CreateLocationFsxLustreInput
.
Trait Implementations§
source§impl Clone for CreateLocationFsxLustreInput
impl Clone for CreateLocationFsxLustreInput
source§fn clone(&self) -> CreateLocationFsxLustreInput
fn clone(&self) -> CreateLocationFsxLustreInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateLocationFsxLustreInput
impl Debug for CreateLocationFsxLustreInput
source§impl PartialEq for CreateLocationFsxLustreInput
impl PartialEq for CreateLocationFsxLustreInput
source§fn eq(&self, other: &CreateLocationFsxLustreInput) -> bool
fn eq(&self, other: &CreateLocationFsxLustreInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateLocationFsxLustreInput
Auto Trait Implementations§
impl Freeze for CreateLocationFsxLustreInput
impl RefUnwindSafe for CreateLocationFsxLustreInput
impl Send for CreateLocationFsxLustreInput
impl Sync for CreateLocationFsxLustreInput
impl Unpin for CreateLocationFsxLustreInput
impl UnwindSafe for CreateLocationFsxLustreInput
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> 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