Module Values_0.AsyncInferenceOutputConfigSource

Specifies the configuration for asynchronous inference invocation outputs.

Sourcetype nonrec t = {
  1. kmsKeyId : KmsKeyId.t option;
    (*

    The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that SageMaker uses to encrypt the asynchronous inference output in Amazon S3.

    *)
  2. s3OutputPath : DestinationS3Uri.t option;
    (*

    The Amazon S3 location to upload inference responses to.

    *)
  3. notificationConfig : AsyncInferenceNotificationConfig.t option;
    (*

    Specifies the configuration for notifications of inference results for asynchronous inference.

    *)
  4. s3FailurePath : DestinationS3Uri.t option;
    (*

    The Amazon S3 location to upload failure inference responses to.

    *)
}
Sourceval make : ?kmsKeyId:??? -> ?s3OutputPath:??? -> ?notificationConfig:??? -> ?s3FailurePath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KmsKeyId.t | `Structure of (string * [> `List of [> `Enum of string ] list | `String of SnsTopicArn.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