Module Values.IdMappingJobOutputSourceSource

An object containing KMSArn, outputS3Path, and roleARN.

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

    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;
    (*

    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 context_ : string
Sourceval make : ?kMSArn:??? -> roleArn:RoleArn.t -> outputS3Path:S3Path.t -> 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