#[non_exhaustive]pub struct UpdateLinkAttributesInput {
pub directory_arn: Option<String>,
pub typed_link_specifier: Option<TypedLinkSpecifier>,
pub attribute_updates: Option<Vec<LinkAttributeUpdate>>,
}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 updated typed link resides. For more information, see arns or Typed Links.
typed_link_specifier: Option<TypedLinkSpecifier>Allows a typed link specifier to be accepted as input.
attribute_updates: Option<Vec<LinkAttributeUpdate>>The attributes update structure.
Implementations§
source§impl UpdateLinkAttributesInput
impl UpdateLinkAttributesInput
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 updated typed link resides. For more information, see arns or Typed Links.
sourcepub fn typed_link_specifier(&self) -> Option<&TypedLinkSpecifier>
pub fn typed_link_specifier(&self) -> Option<&TypedLinkSpecifier>
Allows a typed link specifier to be accepted as input.
sourcepub fn attribute_updates(&self) -> &[LinkAttributeUpdate]
pub fn attribute_updates(&self) -> &[LinkAttributeUpdate]
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 UpdateLinkAttributesInput
impl UpdateLinkAttributesInput
sourcepub fn builder() -> UpdateLinkAttributesInputBuilder
pub fn builder() -> UpdateLinkAttributesInputBuilder
Creates a new builder-style object to manufacture UpdateLinkAttributesInput.
Trait Implementations§
source§impl Clone for UpdateLinkAttributesInput
impl Clone for UpdateLinkAttributesInput
source§fn clone(&self) -> UpdateLinkAttributesInput
fn clone(&self) -> UpdateLinkAttributesInput
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 UpdateLinkAttributesInput
impl Debug for UpdateLinkAttributesInput
source§impl PartialEq for UpdateLinkAttributesInput
impl PartialEq for UpdateLinkAttributesInput
source§fn eq(&self, other: &UpdateLinkAttributesInput) -> bool
fn eq(&self, other: &UpdateLinkAttributesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateLinkAttributesInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateLinkAttributesInput
impl Send for UpdateLinkAttributesInput
impl Sync for UpdateLinkAttributesInput
impl Unpin for UpdateLinkAttributesInput
impl UnwindSafe for UpdateLinkAttributesInput
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.