#[non_exhaustive]pub struct DescribeSpaceOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeSpaceOutput
.
Implementations§
source§impl DescribeSpaceOutputBuilder
impl DescribeSpaceOutputBuilder
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The ID of the associated Domain.
sourcepub fn space_arn(self, input: impl Into<String>) -> Self
pub fn space_arn(self, input: impl Into<String>) -> Self
The space's Amazon Resource Name (ARN).
sourcepub fn set_space_arn(self, input: Option<String>) -> Self
pub fn set_space_arn(self, input: Option<String>) -> Self
The space's Amazon Resource Name (ARN).
sourcepub fn space_name(self, input: impl Into<String>) -> Self
pub fn space_name(self, input: impl Into<String>) -> Self
The name of the space.
sourcepub fn set_space_name(self, input: Option<String>) -> Self
pub fn set_space_name(self, input: Option<String>) -> Self
The name of the space.
sourcepub fn home_efs_file_system_uid(self, input: impl Into<String>) -> Self
pub fn home_efs_file_system_uid(self, input: impl Into<String>) -> Self
The ID of the space's profile in the Amazon Elastic File System volume.
sourcepub fn set_home_efs_file_system_uid(self, input: Option<String>) -> Self
pub fn set_home_efs_file_system_uid(self, input: Option<String>) -> Self
The ID of the space's profile in the Amazon Elastic File System volume.
sourcepub fn status(self, input: SpaceStatus) -> Self
pub fn status(self, input: SpaceStatus) -> Self
The status.
sourcepub fn set_status(self, input: Option<SpaceStatus>) -> Self
pub fn set_status(self, input: Option<SpaceStatus>) -> Self
The status.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The last modified time.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The last modified time.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The creation time.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The creation time.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
The failure reason.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
The failure reason.
sourcepub fn space_settings(self, input: SpaceSettings) -> Self
pub fn space_settings(self, input: SpaceSettings) -> Self
A collection of space settings.
sourcepub fn set_space_settings(self, input: Option<SpaceSettings>) -> Self
pub fn set_space_settings(self, input: Option<SpaceSettings>) -> Self
A collection of space settings.
sourcepub fn build(self) -> DescribeSpaceOutput
pub fn build(self) -> DescribeSpaceOutput
Consumes the builder and constructs a DescribeSpaceOutput
.
Trait Implementations§
source§impl Clone for DescribeSpaceOutputBuilder
impl Clone for DescribeSpaceOutputBuilder
source§fn clone(&self) -> DescribeSpaceOutputBuilder
fn clone(&self) -> DescribeSpaceOutputBuilder
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 DescribeSpaceOutputBuilder
impl Debug for DescribeSpaceOutputBuilder
source§impl Default for DescribeSpaceOutputBuilder
impl Default for DescribeSpaceOutputBuilder
source§fn default() -> DescribeSpaceOutputBuilder
fn default() -> DescribeSpaceOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DescribeSpaceOutputBuilder> for DescribeSpaceOutputBuilder
impl PartialEq<DescribeSpaceOutputBuilder> for DescribeSpaceOutputBuilder
source§fn eq(&self, other: &DescribeSpaceOutputBuilder) -> bool
fn eq(&self, other: &DescribeSpaceOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeSpaceOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DescribeSpaceOutputBuilder
impl Send for DescribeSpaceOutputBuilder
impl Sync for DescribeSpaceOutputBuilder
impl Unpin for DescribeSpaceOutputBuilder
impl UnwindSafe for DescribeSpaceOutputBuilder
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