Module Values_1.RecommendationJobOutputConfigSource

Provides information about the output configuration for the compiled model.

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

    The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt your output artifacts with Amazon S3 server-side encryption. The SageMaker execution role must have kms:GenerateDataKey permission. The KmsKeyId can be any of the following formats: // KMS Key ID "1234abcd-12ab-34cd-56ef-1234567890ab" // Amazon Resource Name (ARN) of a KMS Key "arn:aws:kms:<region>:<account>:key/<key-id-12ab-34cd-56ef-1234567890ab>" // KMS Key Alias "alias/ExampleAlias" // Amazon Resource Name (ARN) of a KMS Key Alias "arn:aws:kms:<region>:<account>:alias/<ExampleAlias>" For more information about key identifiers, see Key identifiers (KeyID) in the Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.

    *)
  2. compiledOutputConfig : RecommendationJobCompiledOutputConfig.t option;
    (*

    Provides information about the output configuration for the compiled model.

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