Module Values.JobOutputSourceSource

An object containing KMSArn, outputS3Path, and roleArn.

Sourcetype nonrec t = {
  1. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf as part of workflow execution.

    *)
  2. outputS3Path : S3Path.t option;
    (*

    The S3 path to which Entity Resolution will write the output table.

    *)
  3. kMSArn : KMSArn.t option;
    (*

    Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.

    *)
}
Sourceval make : ?roleArn:??? -> ?outputS3Path:??? -> ?kMSArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RoleArn.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