1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIdNamespace`](crate::operation::get_id_namespace::builders::GetIdNamespaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id_namespace_name(impl Into<String>)`](crate::operation::get_id_namespace::builders::GetIdNamespaceFluentBuilder::id_namespace_name) / [`set_id_namespace_name(Option<String>)`](crate::operation::get_id_namespace::builders::GetIdNamespaceFluentBuilder::set_id_namespace_name):<br>required: **true**<br><p>The name of the ID namespace.</p><br>
    /// - On success, responds with [`GetIdNamespaceOutput`](crate::operation::get_id_namespace::GetIdNamespaceOutput) with field(s):
    ///   - [`id_namespace_name(String)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::id_namespace_name): <p>The name of the ID namespace.</p>
    ///   - [`id_namespace_arn(String)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::id_namespace_arn): <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::description): <p>The description of the ID namespace.</p>
    ///   - [`input_source_config(Option<Vec::<IdNamespaceInputSource>>)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::input_source_config): <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
    ///   - [`id_mapping_workflow_properties(Option<Vec::<IdNamespaceIdMappingWorkflowProperties>>)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::id_mapping_workflow_properties): <p>Determines the properties of <code>IdMappingWorkflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
    ///   - [`r#type(IdNamespaceType)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::type): <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>.</p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow.</p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all <code>sourceIds</code> will resolve to.</p>
    ///   - [`role_arn(Option<String>)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in this <code>IdNamespace</code> on your behalf as part of a workflow run.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::created_at): <p>The timestamp of when the ID namespace was created.</p>
    ///   - [`updated_at(DateTime)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::updated_at): <p>The timestamp of when the ID namespace was last updated.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_id_namespace::GetIdNamespaceOutput::tags): <p>The tags used to organize, track, or control access for this resource.</p>
    /// - On failure, responds with [`SdkError<GetIdNamespaceError>`](crate::operation::get_id_namespace::GetIdNamespaceError)
    pub fn get_id_namespace(&self) -> crate::operation::get_id_namespace::builders::GetIdNamespaceFluentBuilder {
        crate::operation::get_id_namespace::builders::GetIdNamespaceFluentBuilder::new(self.handle.clone())
    }
}