1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetLinkAttributes`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`directory_arn(impl Into<String>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::directory_arn) / [`set_directory_arn(Option<String>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::set_directory_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that is associated with the Directory where the typed link resides. For more information, see <code>arns</code> or <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p><br>
    ///   - [`typed_link_specifier(TypedLinkSpecifier)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::typed_link_specifier) / [`set_typed_link_specifier(Option<TypedLinkSpecifier>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::set_typed_link_specifier):<br>required: **true**<br><p>Allows a typed link specifier to be accepted as input.</p><br>
    ///   - [`attribute_names(impl Into<String>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::attribute_names) / [`set_attribute_names(Option<Vec::<String>>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::set_attribute_names):<br>required: **true**<br><p>A list of attribute names whose values will be retrieved.</p><br>
    ///   - [`consistency_level(ConsistencyLevel)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::consistency_level) / [`set_consistency_level(Option<ConsistencyLevel>)`](crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::set_consistency_level):<br>required: **false**<br><p>The consistency level at which to retrieve the attributes on a typed link.</p><br>
    /// - On success, responds with [`GetLinkAttributesOutput`](crate::operation::get_link_attributes::GetLinkAttributesOutput) with field(s):
    ///   - [`attributes(Option<Vec::<AttributeKeyAndValue>>)`](crate::operation::get_link_attributes::GetLinkAttributesOutput::attributes): <p>The attributes that are associated with the typed link.</p>
    /// - On failure, responds with [`SdkError<GetLinkAttributesError>`](crate::operation::get_link_attributes::GetLinkAttributesError)
    pub fn get_link_attributes(&self) -> crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder {
        crate::operation::get_link_attributes::builders::GetLinkAttributesFluentBuilder::new(self.handle.clone())
    }
}