aws_sdk_customerprofiles/client/get_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 [`GetIntegration`](crate::operation::get_integration::builders::GetIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetIntegrationOutput`](crate::operation::get_integration::GetIntegrationOutput) with field(s):
9 /// - [`domain_name(String)`](crate::operation::get_integration::GetIntegrationOutput::domain_name): <p>The unique name of the domain.</p>
10 /// - [`uri(String)`](crate::operation::get_integration::GetIntegrationOutput::uri): <p>The URI of the S3 bucket or any other type of data source.</p>
11 /// - [`object_type_name(Option<String>)`](crate::operation::get_integration::GetIntegrationOutput::object_type_name): <p>The name of the profile object type.</p>
12 /// - [`created_at(DateTime)`](crate::operation::get_integration::GetIntegrationOutput::created_at): <p>The timestamp of when the domain was created.</p>
13 /// - [`last_updated_at(DateTime)`](crate::operation::get_integration::GetIntegrationOutput::last_updated_at): <p>The timestamp of when the domain was most recently edited.</p>
14 /// - [`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>
15 /// - [`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>
16 /// - [`workflow_id(Option<String>)`](crate::operation::get_integration::GetIntegrationOutput::workflow_id): <p>Unique identifier for the workflow.</p>
17 /// - [`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>
18 /// - [`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>
19 /// - [`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>
20 /// - [`scope(Option<Scope>)`](crate::operation::get_integration::GetIntegrationOutput::scope): <p>Specifies whether the integration applies to profile level data (associated with profiles) or domain level data (not associated with any specific profile). The default value is PROFILE.</p>
21 /// - On failure, responds with [`SdkError<GetIntegrationError>`](crate::operation::get_integration::GetIntegrationError)
22 pub fn get_integration(&self) -> crate::operation::get_integration::builders::GetIntegrationFluentBuilder {
23 crate::operation::get_integration::builders::GetIntegrationFluentBuilder::new(self.handle.clone())
24 }
25}