pub struct GetObjectAttributesRequest {
pub attribute_names: Vec<String>,
pub consistency_level: Option<String>,
pub directory_arn: String,
pub object_reference: ObjectReference,
pub schema_facet: SchemaFacet,
}Fields§
§attribute_names: Vec<String>List of attribute names whose values will be retrieved.
consistency_level: Option<String>The consistency level at which to retrieve the attributes on an object.
directory_arn: StringThe Amazon Resource Name (ARN) that is associated with the Directory where the object resides.
object_reference: ObjectReferenceReference that identifies the object whose attributes will be retrieved.
schema_facet: SchemaFacetIdentifier for the facet whose attributes will be retrieved. See SchemaFacet for details.
Trait Implementations§
Source§impl Clone for GetObjectAttributesRequest
impl Clone for GetObjectAttributesRequest
Source§fn clone(&self) -> GetObjectAttributesRequest
fn clone(&self) -> GetObjectAttributesRequest
Returns a duplicate 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 GetObjectAttributesRequest
impl Debug for GetObjectAttributesRequest
Source§impl Default for GetObjectAttributesRequest
impl Default for GetObjectAttributesRequest
Source§fn default() -> GetObjectAttributesRequest
fn default() -> GetObjectAttributesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetObjectAttributesRequest
Auto Trait Implementations§
impl Freeze for GetObjectAttributesRequest
impl RefUnwindSafe for GetObjectAttributesRequest
impl Send for GetObjectAttributesRequest
impl Sync for GetObjectAttributesRequest
impl Unpin for GetObjectAttributesRequest
impl UnwindSafe for GetObjectAttributesRequest
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