aws_sdk_customerprofiles/client/get_integration.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetIntegration`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_name(impl Into<String>)`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
/// - [`uri(impl Into<String>)`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder::uri) / [`set_uri(Option<String>)`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder::set_uri):<br>required: **true**<br><p>The URI of the S3 bucket or any other type of data source.</p><br>
/// - On success, responds with [`GetIntegrationOutput`](crate::operation::get_integration::GetIntegrationOutput) with field(s):
/// - [`domain_name(String)`](crate::operation::get_integration::GetIntegrationOutput::domain_name): <p>The unique name of the domain.</p>
/// - [`uri(String)`](crate::operation::get_integration::GetIntegrationOutput::uri): <p>The URI of the S3 bucket or any other type of data source.</p>
/// - [`object_type_name(Option<String>)`](crate::operation::get_integration::GetIntegrationOutput::object_type_name): <p>The name of the profile object type.</p>
/// - [`created_at(DateTime)`](crate::operation::get_integration::GetIntegrationOutput::created_at): <p>The timestamp of when the domain was created.</p>
/// - [`last_updated_at(DateTime)`](crate::operation::get_integration::GetIntegrationOutput::last_updated_at): <p>The timestamp of when the domain was most recently edited.</p>
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_integration::GetIntegrationOutput::tags): <p>The tags used to organize, track, or control access for this resource.</p>
/// - [`object_type_names(Option<HashMap::<String, String>>)`](crate::operation::get_integration::GetIntegrationOutput::object_type_names): <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event. It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>, <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
/// - [`workflow_id(Option<String>)`](crate::operation::get_integration::GetIntegrationOutput::workflow_id): <p>Unique identifier for the workflow.</p>
/// - [`is_unstructured(Option<bool>)`](crate::operation::get_integration::GetIntegrationOutput::is_unstructured): <p>Boolean that shows if the Flow that's associated with the Integration is created in Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition.</p>
/// - [`role_arn(Option<String>)`](crate::operation::get_integration::GetIntegrationOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make Customer Profiles requests on your behalf.</p>
/// - [`event_trigger_names(Option<Vec::<String>>)`](crate::operation::get_integration::GetIntegrationOutput::event_trigger_names): <p>A list of unique names for active event triggers associated with the integration. This list would be empty if no Event Trigger is associated with the integration.</p>
/// - On failure, responds with [`SdkError<GetIntegrationError>`](crate::operation::get_integration::GetIntegrationError)
pub fn get_integration(&self) -> crate::operation::get_integration::builders::GetIntegrationFluentBuilder {
crate::operation::get_integration::builders::GetIntegrationFluentBuilder::new(self.handle.clone())
}
}