Module Values_1.IntegrationSource

Describes a zero-ETL integration.

Sourcetype nonrec t = {
  1. sourceArn : String512.t option;
    (*

    The ARN for the source of the integration.

    *)
  2. targetArn : String512.t option;
    (*

    The ARN for the target of the integration.

    *)
  3. description : IntegrationDescription.t option;
    (*

    A description for the integration.

    *)
  4. integrationName : String128.t option;
    (*

    A unique name for the integration.

    *)
  5. integrationArn : String128.t option;
    (*

    The Amazon Resource Name (ARN) for the integration.

    *)
  6. kmsKeyId : String2048.t option;
    (*

    The ARN of a KMS key used for encrypting the channel.

    *)
  7. additionalEncryptionContext : IntegrationAdditionalEncryptionContextMap.t option;
    (*

    An optional set of non-secret key–value pairs that contains additional contextual information for encryption. This can only be provided if KMSKeyId is provided.

    *)
  8. tags : IntegrationTagsList.t option;
    (*

    Metadata assigned to the resource consisting of a list of key-value pairs.

    *)
  9. status : IntegrationStatus.t option;
    (*

    The possible statuses are: CREATING: The integration is being created. ACTIVE: The integration creation succeeds. MODIFYING: The integration is being modified. FAILED: The integration creation fails. DELETING: The integration is deleted. SYNCING: The integration is synchronizing. NEEDS_ATTENTION: The integration needs attention, such as synchronization.

    *)
  10. createTime : IntegrationTimestamp.t option;
    (*

    The time that the integration was created, in UTC.

    *)
  11. integrationConfig : IntegrationConfig.t option;
    (*

    Properties associated with the integration.

    *)
  12. errors : IntegrationErrorList.t option;
    (*

    A list of errors associated with the integration.

    *)
  13. dataFilter : String2048.t option;
    (*

    Selects source tables for the integration using Maxwell filter syntax.

    *)
}
Sourceval make : ?sourceArn:??? -> ?targetArn:??? -> ?description:??? -> ?integrationName:??? -> ?integrationArn:??? -> ?kmsKeyId:??? -> ?additionalEncryptionContext:??? -> ?tags:??? -> ?status:??? -> ?createTime:??? -> ?integrationConfig:??? -> ?errors:??? -> ?dataFilter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Map of ([> `String of IntegrationString.t ] * [> `String of IntegrationString.t ]) list | `String of String512.t | `Structure of (string * [> `Boolean of ContinuousSync.t | `Map of ([> `String of IntegrationString.t ] * [> `String of IntegrationString.t ]) list | `String of String128.t ]) list | `Timestamp of IntegrationTimestamp.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