#[non_exhaustive]pub struct InvalidObjectState {
pub storage_class: Option<StorageClass>,
pub access_tier: Option<IntelligentTieringAccessTier>,
pub message: Option<String>,
/* private fields */
}
Expand description
Object is archived and inaccessible until restored.
If the object you are retrieving is stored in the S3 Glacier Flexible Retrieval storage class, the S3 Glacier Deep Archive storage class, the S3 Intelligent-Tiering Archive Access tier, or the S3 Intelligent-Tiering Deep Archive Access tier, before you can retrieve the object you must first restore a copy using RestoreObject. Otherwise, this operation returns an InvalidObjectState
error. For information about restoring archived objects, see Restoring Archived Objects in the Amazon S3 User Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.storage_class: Option<StorageClass>
§access_tier: Option<IntelligentTieringAccessTier>
§message: Option<String>
Implementations§
Source§impl InvalidObjectState
impl InvalidObjectState
pub fn storage_class(&self) -> Option<&StorageClass>
pub fn access_tier(&self) -> Option<&IntelligentTieringAccessTier>
Source§impl InvalidObjectState
impl InvalidObjectState
Sourcepub fn builder() -> InvalidObjectStateBuilder
pub fn builder() -> InvalidObjectStateBuilder
Creates a new builder-style object to manufacture InvalidObjectState
.
Trait Implementations§
Source§impl Clone for InvalidObjectState
impl Clone for InvalidObjectState
Source§fn clone(&self) -> InvalidObjectState
fn clone(&self) -> InvalidObjectState
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 InvalidObjectState
impl Debug for InvalidObjectState
Source§impl Display for InvalidObjectState
impl Display for InvalidObjectState
Source§impl Error for InvalidObjectState
impl Error for InvalidObjectState
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for InvalidObjectState
impl PartialEq for InvalidObjectState
Source§impl ProvideErrorMetadata for InvalidObjectState
impl ProvideErrorMetadata for InvalidObjectState
Source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message,
request ID, and potentially additional information.
Source§impl RequestId for InvalidObjectState
impl RequestId for InvalidObjectState
Source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.Source§impl RequestIdExt for InvalidObjectState
impl RequestIdExt for InvalidObjectState
Source§fn extended_request_id(&self) -> Option<&str>
fn extended_request_id(&self) -> Option<&str>
Returns the S3 Extended Request ID necessary when contacting AWS Support.
impl StructuralPartialEq for InvalidObjectState
Auto Trait Implementations§
impl Freeze for InvalidObjectState
impl RefUnwindSafe for InvalidObjectState
impl Send for InvalidObjectState
impl Sync for InvalidObjectState
impl Unpin for InvalidObjectState
impl UnwindSafe for InvalidObjectState
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.