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 [`GetDataIntegration`](crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder::set_identifier):<br>required: **true**<br><p>A unique identifier.</p><br>
    /// - On success, responds with [`GetDataIntegrationOutput`](crate::operation::get_data_integration::GetDataIntegrationOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::arn): <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::id): <p>A unique identifier.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::name): <p>The name of the DataIntegration.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::description): <p>The KMS key for the DataIntegration.</p>
    ///   - [`kms_key(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::kms_key): <p>The KMS key for the DataIntegration.</p>
    ///   - [`source_uri(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::source_uri): <p>The URI of the data source.</p>
    ///   - [`schedule_configuration(Option<ScheduleConfiguration>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::schedule_configuration): <p>The name of the data and how often it should be pulled from the source.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::tags): <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
    ///   - [`file_configuration(Option<FileConfiguration>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::file_configuration): <p>The configuration for what files should be pulled from the source.</p>
    ///   - [`object_configuration(Option<HashMap::<String, HashMap::<String, Vec::<String>>>>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::object_configuration): <p>The configuration for what data should be pulled from the source.</p>
    /// - On failure, responds with [`SdkError<GetDataIntegrationError>`](crate::operation::get_data_integration::GetDataIntegrationError)
    pub fn get_data_integration(&self) -> crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder {
        crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder::new(self.handle.clone())
    }
}