Struct aws_sdk_datasync::operation::describe_discovery_job::builders::DescribeDiscoveryJobOutputBuilder
source · #[non_exhaustive]pub struct DescribeDiscoveryJobOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeDiscoveryJobOutput
.
Implementations§
source§impl DescribeDiscoveryJobOutputBuilder
impl DescribeDiscoveryJobOutputBuilder
sourcepub fn storage_system_arn(self, input: impl Into<String>) -> Self
pub fn storage_system_arn(self, input: impl Into<String>) -> Self
The ARN of the on-premises storage system you're running the discovery job on.
sourcepub fn set_storage_system_arn(self, input: Option<String>) -> Self
pub fn set_storage_system_arn(self, input: Option<String>) -> Self
The ARN of the on-premises storage system you're running the discovery job on.
sourcepub fn get_storage_system_arn(&self) -> &Option<String>
pub fn get_storage_system_arn(&self) -> &Option<String>
The ARN of the on-premises storage system you're running the discovery job on.
sourcepub fn discovery_job_arn(self, input: impl Into<String>) -> Self
pub fn discovery_job_arn(self, input: impl Into<String>) -> Self
The ARN of the discovery job.
sourcepub fn set_discovery_job_arn(self, input: Option<String>) -> Self
pub fn set_discovery_job_arn(self, input: Option<String>) -> Self
The ARN of the discovery job.
sourcepub fn get_discovery_job_arn(&self) -> &Option<String>
pub fn get_discovery_job_arn(&self) -> &Option<String>
The ARN of the discovery job.
sourcepub fn collection_duration_minutes(self, input: i32) -> Self
pub fn collection_duration_minutes(self, input: i32) -> Self
The number of minutes that the discovery job runs.
sourcepub fn set_collection_duration_minutes(self, input: Option<i32>) -> Self
pub fn set_collection_duration_minutes(self, input: Option<i32>) -> Self
The number of minutes that the discovery job runs.
sourcepub fn get_collection_duration_minutes(&self) -> &Option<i32>
pub fn get_collection_duration_minutes(&self) -> &Option<i32>
The number of minutes that the discovery job runs.
sourcepub fn status(self, input: DiscoveryJobStatus) -> Self
pub fn status(self, input: DiscoveryJobStatus) -> Self
Indicates the status of a discovery job. For more information, see Discovery job statuses.
sourcepub fn set_status(self, input: Option<DiscoveryJobStatus>) -> Self
pub fn set_status(self, input: Option<DiscoveryJobStatus>) -> Self
Indicates the status of a discovery job. For more information, see Discovery job statuses.
sourcepub fn get_status(&self) -> &Option<DiscoveryJobStatus>
pub fn get_status(&self) -> &Option<DiscoveryJobStatus>
Indicates the status of a discovery job. For more information, see Discovery job statuses.
sourcepub fn job_start_time(self, input: DateTime) -> Self
pub fn job_start_time(self, input: DateTime) -> Self
The time when the discovery job started.
sourcepub fn set_job_start_time(self, input: Option<DateTime>) -> Self
pub fn set_job_start_time(self, input: Option<DateTime>) -> Self
The time when the discovery job started.
sourcepub fn get_job_start_time(&self) -> &Option<DateTime>
pub fn get_job_start_time(&self) -> &Option<DateTime>
The time when the discovery job started.
sourcepub fn job_end_time(self, input: DateTime) -> Self
pub fn job_end_time(self, input: DateTime) -> Self
The time when the discovery job ended.
sourcepub fn set_job_end_time(self, input: Option<DateTime>) -> Self
pub fn set_job_end_time(self, input: Option<DateTime>) -> Self
The time when the discovery job ended.
sourcepub fn get_job_end_time(&self) -> &Option<DateTime>
pub fn get_job_end_time(&self) -> &Option<DateTime>
The time when the discovery job ended.
sourcepub fn build(self) -> DescribeDiscoveryJobOutput
pub fn build(self) -> DescribeDiscoveryJobOutput
Consumes the builder and constructs a DescribeDiscoveryJobOutput
.
Trait Implementations§
source§impl Clone for DescribeDiscoveryJobOutputBuilder
impl Clone for DescribeDiscoveryJobOutputBuilder
source§fn clone(&self) -> DescribeDiscoveryJobOutputBuilder
fn clone(&self) -> DescribeDiscoveryJobOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDiscoveryJobOutputBuilder
impl Default for DescribeDiscoveryJobOutputBuilder
source§fn default() -> DescribeDiscoveryJobOutputBuilder
fn default() -> DescribeDiscoveryJobOutputBuilder
source§impl PartialEq for DescribeDiscoveryJobOutputBuilder
impl PartialEq for DescribeDiscoveryJobOutputBuilder
source§fn eq(&self, other: &DescribeDiscoveryJobOutputBuilder) -> bool
fn eq(&self, other: &DescribeDiscoveryJobOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDiscoveryJobOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDiscoveryJobOutputBuilder
impl RefUnwindSafe for DescribeDiscoveryJobOutputBuilder
impl Send for DescribeDiscoveryJobOutputBuilder
impl Sync for DescribeDiscoveryJobOutputBuilder
impl Unpin for DescribeDiscoveryJobOutputBuilder
impl UnwindSafe for DescribeDiscoveryJobOutputBuilder
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