Struct aws_sdk_cloudcontrol::operation::delete_resource::builders::DeleteResourceOutputBuilder
source · #[non_exhaustive]pub struct DeleteResourceOutputBuilder { /* private fields */ }Expand description
A builder for DeleteResourceOutput.
Implementations§
source§impl DeleteResourceOutputBuilder
impl DeleteResourceOutputBuilder
sourcepub fn progress_event(self, input: ProgressEvent) -> Self
pub fn progress_event(self, input: ProgressEvent) -> Self
Represents the current status of the resource deletion request.
After you have initiated a resource deletion request, you can monitor the progress of your request by calling GetResourceRequestStatus using the RequestToken of the ProgressEvent returned by DeleteResource.
sourcepub fn set_progress_event(self, input: Option<ProgressEvent>) -> Self
pub fn set_progress_event(self, input: Option<ProgressEvent>) -> Self
Represents the current status of the resource deletion request.
After you have initiated a resource deletion request, you can monitor the progress of your request by calling GetResourceRequestStatus using the RequestToken of the ProgressEvent returned by DeleteResource.
sourcepub fn get_progress_event(&self) -> &Option<ProgressEvent>
pub fn get_progress_event(&self) -> &Option<ProgressEvent>
Represents the current status of the resource deletion request.
After you have initiated a resource deletion request, you can monitor the progress of your request by calling GetResourceRequestStatus using the RequestToken of the ProgressEvent returned by DeleteResource.
sourcepub fn build(self) -> DeleteResourceOutput
pub fn build(self) -> DeleteResourceOutput
Consumes the builder and constructs a DeleteResourceOutput.
Trait Implementations§
source§impl Clone for DeleteResourceOutputBuilder
impl Clone for DeleteResourceOutputBuilder
source§fn clone(&self) -> DeleteResourceOutputBuilder
fn clone(&self) -> DeleteResourceOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteResourceOutputBuilder
impl Debug for DeleteResourceOutputBuilder
source§impl Default for DeleteResourceOutputBuilder
impl Default for DeleteResourceOutputBuilder
source§fn default() -> DeleteResourceOutputBuilder
fn default() -> DeleteResourceOutputBuilder
source§impl PartialEq for DeleteResourceOutputBuilder
impl PartialEq for DeleteResourceOutputBuilder
source§fn eq(&self, other: &DeleteResourceOutputBuilder) -> bool
fn eq(&self, other: &DeleteResourceOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteResourceOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteResourceOutputBuilder
impl RefUnwindSafe for DeleteResourceOutputBuilder
impl Send for DeleteResourceOutputBuilder
impl Sync for DeleteResourceOutputBuilder
impl Unpin for DeleteResourceOutputBuilder
impl UnwindSafe for DeleteResourceOutputBuilder
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