pub struct ListObjectAttributesRequest {
pub consistency_level: Option<String>,
pub directory_arn: String,
pub facet_filter: Option<SchemaFacet>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub object_reference: ObjectReference,
}Fields§
§consistency_level: Option<String>Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
directory_arn: StringThe Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
facet_filter: Option<SchemaFacet>Used to filter the list of object attributes that are associated with a certain facet.
max_results: Option<i64>The maximum number of items to be retrieved in a single call. This is an approximate number.
next_token: Option<String>The pagination token.
object_reference: ObjectReferenceThe reference that identifies the object whose attributes will be listed.
Trait Implementations§
Source§impl Clone for ListObjectAttributesRequest
impl Clone for ListObjectAttributesRequest
Source§fn clone(&self) -> ListObjectAttributesRequest
fn clone(&self) -> ListObjectAttributesRequest
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 ListObjectAttributesRequest
impl Debug for ListObjectAttributesRequest
Source§impl Default for ListObjectAttributesRequest
impl Default for ListObjectAttributesRequest
Source§fn default() -> ListObjectAttributesRequest
fn default() -> ListObjectAttributesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListObjectAttributesRequest
Auto Trait Implementations§
impl Freeze for ListObjectAttributesRequest
impl RefUnwindSafe for ListObjectAttributesRequest
impl Send for ListObjectAttributesRequest
impl Sync for ListObjectAttributesRequest
impl Unpin for ListObjectAttributesRequest
impl UnwindSafe for ListObjectAttributesRequest
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