Module Values_1.CreateIntegrationResourcePropertyRequestSource

This API can be used for setting up the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. To set both source and target properties the same API needs to be invoked with the Glue connection ARN as ResourceArn with SourceProcessingProperties and the Glue database ARN as ResourceArn with TargetProcessingProperties respectively.

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

    The connection ARN of the source, or the database ARN of the target.

    *)
  2. sourceProcessingProperties : SourceProcessingProperties.t option;
    (*

    The resource properties associated with the integration source.

    *)
  3. targetProcessingProperties : TargetProcessingProperties.t option;
    (*

    The resource properties associated with the integration target.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceProcessingProperties:??? -> ?targetProcessingProperties:??? -> ?tags:??? -> resourceArn:String512.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of String512.t | `Structure of (string * [> `String of String128.t ]) list ]) 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