Module Values.GetIntegrationResponseSource

Returns an integration for a domain.

Sourcetype nonrec t = {
  1. domainName : Name.t option;
    (*

    The unique name of the domain.

    *)
  2. uri : String1To255.t option;
    (*

    The URI of the S3 bucket or any other type of data source.

    *)
  3. objectTypeName : TypeName.t option;
    (*

    The name of the profile object type.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The timestamp of when the domain was created.

    *)
  5. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the domain was most recently edited.

    *)
  6. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
  7. objectTypeNames : ObjectTypeNames.t option;
    (*

    A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an ObjectTypeName (template) used to ingest the event. It supports the following event types: SegmentIdentify, ShopifyCreateCustomers, ShopifyUpdateCustomers, ShopifyCreateDraftOrders, ShopifyUpdateDraftOrders, ShopifyCreateOrders, and ShopifyUpdatedOrders.

    *)
  8. workflowId : String1To255.t option;
    (*

    Unique identifier for the workflow.

    *)
  9. isUnstructured : OptionalBoolean.t option;
    (*

    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.

    *)
  10. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role to make Customer Profiles requests on your behalf.

    *)
  11. eventTriggerNames : EventTriggerNames.t option;
    (*

    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.

    *)
  12. scope : Scope.t option;
    (*

    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.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainName:??? -> ?uri:??? -> ?objectTypeName:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?tags:??? -> ?objectTypeNames:??? -> ?workflowId:??? -> ?isUnstructured:??? -> ?roleArn:??? -> ?eventTriggerNames:??? -> ?scope:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OptionalBoolean.t | `Enum of string | `List of [> `String of Name.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t