aws_sdk_appintegrations/client/get_data_integration.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetDataIntegration`](crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`GetDataIntegrationOutput`](crate::operation::get_data_integration::GetDataIntegrationOutput) with field(s):
8 /// - [`arn(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::arn): <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
9 /// - [`id(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::id): <p>A unique identifier.</p>
10 /// - [`name(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::name): <p>The name of the DataIntegration.</p>
11 /// - [`description(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::description): <p>The KMS key ARN for the DataIntegration.</p>
12 /// - [`kms_key(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::kms_key): <p>The KMS key ARN for the DataIntegration.</p>
13 /// - [`source_uri(Option<String>)`](crate::operation::get_data_integration::GetDataIntegrationOutput::source_uri): <p>The URI of the data source.</p>
14 /// - [`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>
15 /// - [`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>
16 /// - [`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>
17 /// - [`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>
18 /// - On failure, responds with [`SdkError<GetDataIntegrationError>`](crate::operation::get_data_integration::GetDataIntegrationError)
19 pub fn get_data_integration(&self) -> crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder {
20 crate::operation::get_data_integration::builders::GetDataIntegrationFluentBuilder::new(self.handle.clone())
21 }
22}