Module Values_2.IntegrationResourcePropertySource

A structure representing an integration resource property.

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

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

    *)
  2. resourcePropertyArn : Values_1.String512.t option;
    (*

    The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*

    *)
  3. sourceProcessingProperties : Values_1.SourceProcessingProperties.t option;
    (*

    The resource properties associated with the integration source.

    *)
  4. targetProcessingProperties : Values_1.TargetProcessingProperties.t option;
    (*

    The resource properties associated with the integration target.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourcePropertyArn:??? -> ?sourceProcessingProperties:??? -> ?targetProcessingProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.String512.t | `Structure of (string * [> `String of string ]) 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