Struct aws_sdk_backup::operation::describe_report_plan::builders::DescribeReportPlanOutputBuilder
source · #[non_exhaustive]pub struct DescribeReportPlanOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeReportPlanOutput
.
Implementations§
source§impl DescribeReportPlanOutputBuilder
impl DescribeReportPlanOutputBuilder
sourcepub fn report_plan(self, input: ReportPlan) -> Self
pub fn report_plan(self, input: ReportPlan) -> Self
Returns details about the report plan that is specified by its name. These details include the report plan's Amazon Resource Name (ARN), description, settings, delivery channel, deployment status, creation time, and last attempted and successful run times.
sourcepub fn set_report_plan(self, input: Option<ReportPlan>) -> Self
pub fn set_report_plan(self, input: Option<ReportPlan>) -> Self
Returns details about the report plan that is specified by its name. These details include the report plan's Amazon Resource Name (ARN), description, settings, delivery channel, deployment status, creation time, and last attempted and successful run times.
sourcepub fn get_report_plan(&self) -> &Option<ReportPlan>
pub fn get_report_plan(&self) -> &Option<ReportPlan>
Returns details about the report plan that is specified by its name. These details include the report plan's Amazon Resource Name (ARN), description, settings, delivery channel, deployment status, creation time, and last attempted and successful run times.
sourcepub fn build(self) -> DescribeReportPlanOutput
pub fn build(self) -> DescribeReportPlanOutput
Consumes the builder and constructs a DescribeReportPlanOutput
.
Trait Implementations§
source§impl Clone for DescribeReportPlanOutputBuilder
impl Clone for DescribeReportPlanOutputBuilder
source§fn clone(&self) -> DescribeReportPlanOutputBuilder
fn clone(&self) -> DescribeReportPlanOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeReportPlanOutputBuilder
impl Default for DescribeReportPlanOutputBuilder
source§fn default() -> DescribeReportPlanOutputBuilder
fn default() -> DescribeReportPlanOutputBuilder
source§impl PartialEq for DescribeReportPlanOutputBuilder
impl PartialEq for DescribeReportPlanOutputBuilder
source§fn eq(&self, other: &DescribeReportPlanOutputBuilder) -> bool
fn eq(&self, other: &DescribeReportPlanOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeReportPlanOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeReportPlanOutputBuilder
impl RefUnwindSafe for DescribeReportPlanOutputBuilder
impl Send for DescribeReportPlanOutputBuilder
impl Sync for DescribeReportPlanOutputBuilder
impl Unpin for DescribeReportPlanOutputBuilder
impl UnwindSafe for DescribeReportPlanOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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