Struct aws_sdk_backup::operation::update_report_plan::builders::UpdateReportPlanOutputBuilder
source · #[non_exhaustive]pub struct UpdateReportPlanOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateReportPlanOutput
.
Implementations§
source§impl UpdateReportPlanOutputBuilder
impl UpdateReportPlanOutputBuilder
sourcepub fn report_plan_name(self, input: impl Into<String>) -> Self
pub fn report_plan_name(self, input: impl Into<String>) -> Self
The unique name of the report plan.
sourcepub fn set_report_plan_name(self, input: Option<String>) -> Self
pub fn set_report_plan_name(self, input: Option<String>) -> Self
The unique name of the report plan.
sourcepub fn get_report_plan_name(&self) -> &Option<String>
pub fn get_report_plan_name(&self) -> &Option<String>
The unique name of the report plan.
sourcepub fn report_plan_arn(self, input: impl Into<String>) -> Self
pub fn report_plan_arn(self, input: impl Into<String>) -> Self
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
sourcepub fn set_report_plan_arn(self, input: Option<String>) -> Self
pub fn set_report_plan_arn(self, input: Option<String>) -> Self
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
sourcepub fn get_report_plan_arn(&self) -> &Option<String>
pub fn get_report_plan_arn(&self) -> &Option<String>
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The date and time that a report plan is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The date and time that a report plan is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The date and time that a report plan is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn build(self) -> UpdateReportPlanOutput
pub fn build(self) -> UpdateReportPlanOutput
Consumes the builder and constructs a UpdateReportPlanOutput
.
Trait Implementations§
source§impl Clone for UpdateReportPlanOutputBuilder
impl Clone for UpdateReportPlanOutputBuilder
source§fn clone(&self) -> UpdateReportPlanOutputBuilder
fn clone(&self) -> UpdateReportPlanOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateReportPlanOutputBuilder
impl Default for UpdateReportPlanOutputBuilder
source§fn default() -> UpdateReportPlanOutputBuilder
fn default() -> UpdateReportPlanOutputBuilder
source§impl PartialEq for UpdateReportPlanOutputBuilder
impl PartialEq for UpdateReportPlanOutputBuilder
source§fn eq(&self, other: &UpdateReportPlanOutputBuilder) -> bool
fn eq(&self, other: &UpdateReportPlanOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateReportPlanOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateReportPlanOutputBuilder
impl RefUnwindSafe for UpdateReportPlanOutputBuilder
impl Send for UpdateReportPlanOutputBuilder
impl Sync for UpdateReportPlanOutputBuilder
impl Unpin for UpdateReportPlanOutputBuilder
impl UnwindSafe for UpdateReportPlanOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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