Module Values_0.BatchDataCaptureConfigSource

Configuration to control how SageMaker captures inference data for batch transform jobs.

Sourcetype nonrec t = {
  1. destinationS3Uri : S3Uri.t;
    (*

    The Amazon S3 location being used to capture the data.

    *)
  2. kmsKeyId : KmsKeyId.t option;
    (*

    The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that hosts the batch transform job. The KmsKeyId can be any of the following formats: Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab Key ARN: arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab Alias name: alias/ExampleAlias Alias name ARN: arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias

    *)
  3. generateInferenceId : Boolean.t option;
    (*

    Flag that indicates whether to append inference id to the output.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> ?generateInferenceId:??? -> destinationS3Uri:S3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of S3Uri.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