Struct aws_sdk_datasync::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsOutputBuilder
source · #[non_exhaustive]pub struct DescribeLocationFsxOpenZfsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeLocationFsxOpenZfsOutput
.
Implementations§
source§impl DescribeLocationFsxOpenZfsOutputBuilder
impl DescribeLocationFsxOpenZfsOutputBuilder
sourcepub fn location_arn(self, input: impl Into<String>) -> Self
pub fn location_arn(self, input: impl Into<String>) -> Self
The ARN of the FSx for OpenZFS location that was described.
sourcepub fn set_location_arn(self, input: Option<String>) -> Self
pub fn set_location_arn(self, input: Option<String>) -> Self
The ARN of the FSx for OpenZFS location that was described.
sourcepub fn get_location_arn(&self) -> &Option<String>
pub fn get_location_arn(&self) -> &Option<String>
The ARN of the FSx for OpenZFS location that was described.
sourcepub fn location_uri(self, input: impl Into<String>) -> Self
pub fn location_uri(self, input: impl Into<String>) -> Self
The uniform resource identifier (URI) of the FSx for OpenZFS location that was described.
Example: fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder
sourcepub fn set_location_uri(self, input: Option<String>) -> Self
pub fn set_location_uri(self, input: Option<String>) -> Self
The uniform resource identifier (URI) of the FSx for OpenZFS location that was described.
Example: fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder
sourcepub fn get_location_uri(&self) -> &Option<String>
pub fn get_location_uri(&self) -> &Option<String>
The uniform resource identifier (URI) of the FSx for OpenZFS location that was described.
Example: fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder
sourcepub fn security_group_arns(self, input: impl Into<String>) -> Self
pub fn security_group_arns(self, input: impl Into<String>) -> Self
Appends an item to security_group_arns
.
To override the contents of this collection use set_security_group_arns
.
The ARNs of the security groups that are configured for the FSx for OpenZFS file system.
sourcepub fn set_security_group_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_arns(self, input: Option<Vec<String>>) -> Self
The ARNs of the security groups that are configured for the FSx for OpenZFS file system.
sourcepub fn get_security_group_arns(&self) -> &Option<Vec<String>>
pub fn get_security_group_arns(&self) -> &Option<Vec<String>>
The ARNs of the security groups that are configured for the FSx for OpenZFS file system.
sourcepub fn protocol(self, input: FsxProtocol) -> Self
pub fn protocol(self, input: FsxProtocol) -> Self
The type of protocol that DataSync uses to access your file system.
sourcepub fn set_protocol(self, input: Option<FsxProtocol>) -> Self
pub fn set_protocol(self, input: Option<FsxProtocol>) -> Self
The type of protocol that DataSync uses to access your file system.
sourcepub fn get_protocol(&self) -> &Option<FsxProtocol>
pub fn get_protocol(&self) -> &Option<FsxProtocol>
The type of protocol that DataSync uses to access your file system.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time that the FSx for OpenZFS location was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time that the FSx for OpenZFS location was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time that the FSx for OpenZFS location was created.
sourcepub fn build(self) -> DescribeLocationFsxOpenZfsOutput
pub fn build(self) -> DescribeLocationFsxOpenZfsOutput
Consumes the builder and constructs a DescribeLocationFsxOpenZfsOutput
.
Trait Implementations§
source§impl Clone for DescribeLocationFsxOpenZfsOutputBuilder
impl Clone for DescribeLocationFsxOpenZfsOutputBuilder
source§fn clone(&self) -> DescribeLocationFsxOpenZfsOutputBuilder
fn clone(&self) -> DescribeLocationFsxOpenZfsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeLocationFsxOpenZfsOutputBuilder
impl Default for DescribeLocationFsxOpenZfsOutputBuilder
source§fn default() -> DescribeLocationFsxOpenZfsOutputBuilder
fn default() -> DescribeLocationFsxOpenZfsOutputBuilder
source§impl PartialEq for DescribeLocationFsxOpenZfsOutputBuilder
impl PartialEq for DescribeLocationFsxOpenZfsOutputBuilder
source§fn eq(&self, other: &DescribeLocationFsxOpenZfsOutputBuilder) -> bool
fn eq(&self, other: &DescribeLocationFsxOpenZfsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeLocationFsxOpenZfsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeLocationFsxOpenZfsOutputBuilder
impl RefUnwindSafe for DescribeLocationFsxOpenZfsOutputBuilder
impl Send for DescribeLocationFsxOpenZfsOutputBuilder
impl Sync for DescribeLocationFsxOpenZfsOutputBuilder
impl Unpin for DescribeLocationFsxOpenZfsOutputBuilder
impl UnwindSafe for DescribeLocationFsxOpenZfsOutputBuilder
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