#[non_exhaustive]pub struct GetLinkAttributesInput {
pub directory_arn: Option<String>,
pub typed_link_specifier: Option<TypedLinkSpecifier>,
pub attribute_names: Option<Vec<String>>,
pub consistency_level: Option<ConsistencyLevel>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
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 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_names: Option<Vec<String>>A list of attribute names whose values will be retrieved.
consistency_level: Option<ConsistencyLevel>The consistency level at which to retrieve the attributes on a typed link.
Implementations§
source§impl GetLinkAttributesInput
impl GetLinkAttributesInput
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 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_names(&self) -> &[String]
pub fn attribute_names(&self) -> &[String]
A list of attribute names whose values will be retrieved.
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_names.is_none().
sourcepub fn consistency_level(&self) -> Option<&ConsistencyLevel>
pub fn consistency_level(&self) -> Option<&ConsistencyLevel>
The consistency level at which to retrieve the attributes on a typed link.
source§impl GetLinkAttributesInput
impl GetLinkAttributesInput
sourcepub fn builder() -> GetLinkAttributesInputBuilder
pub fn builder() -> GetLinkAttributesInputBuilder
Creates a new builder-style object to manufacture GetLinkAttributesInput.
Trait Implementations§
source§impl Clone for GetLinkAttributesInput
impl Clone for GetLinkAttributesInput
source§fn clone(&self) -> GetLinkAttributesInput
fn clone(&self) -> GetLinkAttributesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetLinkAttributesInput
impl Debug for GetLinkAttributesInput
source§impl PartialEq for GetLinkAttributesInput
impl PartialEq for GetLinkAttributesInput
source§fn eq(&self, other: &GetLinkAttributesInput) -> bool
fn eq(&self, other: &GetLinkAttributesInput) -> bool
self and other values to be equal, and is used
by ==.