Struct aws_sdk_clouddirectory::operation::update_object_attributes::UpdateObjectAttributesInput
source · #[non_exhaustive]pub struct UpdateObjectAttributesInput {
pub directory_arn: Option<String>,
pub object_reference: Option<ObjectReference>,
pub attribute_updates: Option<Vec<ObjectAttributeUpdate>>,
}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.directory_arn: Option<String>The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
object_reference: Option<ObjectReference>The reference that identifies the object.
attribute_updates: Option<Vec<ObjectAttributeUpdate>>The attributes update structure.
Implementations§
source§impl UpdateObjectAttributesInput
impl UpdateObjectAttributesInput
sourcepub fn directory_arn(&self) -> Option<&str>
pub fn directory_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
sourcepub fn object_reference(&self) -> Option<&ObjectReference>
pub fn object_reference(&self) -> Option<&ObjectReference>
The reference that identifies the object.
sourcepub fn attribute_updates(&self) -> &[ObjectAttributeUpdate]
pub fn attribute_updates(&self) -> &[ObjectAttributeUpdate]
The attributes update structure.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .attribute_updates.is_none().
source§impl UpdateObjectAttributesInput
impl UpdateObjectAttributesInput
sourcepub fn builder() -> UpdateObjectAttributesInputBuilder
pub fn builder() -> UpdateObjectAttributesInputBuilder
Creates a new builder-style object to manufacture UpdateObjectAttributesInput.
Trait Implementations§
source§impl Clone for UpdateObjectAttributesInput
impl Clone for UpdateObjectAttributesInput
source§fn clone(&self) -> UpdateObjectAttributesInput
fn clone(&self) -> UpdateObjectAttributesInput
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 UpdateObjectAttributesInput
impl Debug for UpdateObjectAttributesInput
source§impl PartialEq for UpdateObjectAttributesInput
impl PartialEq for UpdateObjectAttributesInput
source§fn eq(&self, other: &UpdateObjectAttributesInput) -> bool
fn eq(&self, other: &UpdateObjectAttributesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateObjectAttributesInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateObjectAttributesInput
impl Send for UpdateObjectAttributesInput
impl Sync for UpdateObjectAttributesInput
impl Unpin for UpdateObjectAttributesInput
impl UnwindSafe for UpdateObjectAttributesInput
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> 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>
Creates a shared type from an unshared type.