Module Values.CreateIntegrationMessageSource

Creates a zero-ETL integration or S3 event integration with Amazon Redshift.

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

    The Amazon Resource Name (ARN) of the database to use as the source for replication.

    *)
  2. targetArn : TargetArn.t;
    (*

    The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

    *)
  3. integrationName : IntegrationName.t;
    (*

    The name of the integration.

    *)
  4. kMSKeyId : String_.t option;
    (*

    An Key Management Service (KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default Amazon Web Services owned key is used.

    *)
  5. tagList : TagList.t option;
    (*

    A list of tags.

    *)
  6. additionalEncryptionContext : EncryptionContextMap.t option;
    (*

    An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide. You can only include this parameter if you specify the KMSKeyId parameter.

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

    A description of the integration.

    *)
}
Sourceval context_ : string
Sourceval make : ?kMSKeyId:??? -> ?tagList:??? -> ?additionalEncryptionContext:??? -> ?description:??? -> sourceArn:SourceArn.t -> targetArn:TargetArn.t -> integrationName:IntegrationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of SourceArn.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