Struct aws_sdk_s3control::types::AsyncOperation
source · #[non_exhaustive]pub struct AsyncOperation { /* private fields */ }
Expand description
A container for the information about an asynchronous operation.
Implementations§
source§impl AsyncOperation
impl AsyncOperation
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that the request was sent to the service.
sourcepub fn operation(&self) -> Option<&AsyncOperationName>
pub fn operation(&self) -> Option<&AsyncOperationName>
The specific operation for the asynchronous request.
sourcepub fn request_token_arn(&self) -> Option<&str>
pub fn request_token_arn(&self) -> Option<&str>
The request token associated with the request.
sourcepub fn request_parameters(&self) -> Option<&AsyncRequestParameters>
pub fn request_parameters(&self) -> Option<&AsyncRequestParameters>
The parameters associated with the request.
sourcepub fn request_status(&self) -> Option<&str>
pub fn request_status(&self) -> Option<&str>
The current status of the request.
sourcepub fn response_details(&self) -> Option<&AsyncResponseDetails>
pub fn response_details(&self) -> Option<&AsyncResponseDetails>
The details of the response.
source§impl AsyncOperation
impl AsyncOperation
sourcepub fn builder() -> AsyncOperationBuilder
pub fn builder() -> AsyncOperationBuilder
Creates a new builder-style object to manufacture AsyncOperation
.
Trait Implementations§
source§impl Clone for AsyncOperation
impl Clone for AsyncOperation
source§fn clone(&self) -> AsyncOperation
fn clone(&self) -> AsyncOperation
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 AsyncOperation
impl Debug for AsyncOperation
source§impl PartialEq<AsyncOperation> for AsyncOperation
impl PartialEq<AsyncOperation> for AsyncOperation
source§fn eq(&self, other: &AsyncOperation) -> bool
fn eq(&self, other: &AsyncOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.