Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RecommendationJobOutputConfig

import type { RecommendationJobOutputConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Provides information about the output configuration for the compiled model.

interface RecommendationJobOutputConfig {
CompiledOutputConfig?: RecommendationJobCompiledOutputConfig | null;
KmsKeyId?: string | null;
}

§Properties

§
CompiledOutputConfig?: RecommendationJobCompiledOutputConfig | null
[src]

Provides information about the output configuration for the compiled model.

§
KmsKeyId?: string | null
[src]

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:::key/"
  • // KMS Key Alias "alias/ExampleAlias"
  • // Amazon Resource Name (ARN) of a KMS Key Alias "arn:aws:kms:::alias/"

For more information about key identifiers, see Key identifiers (KeyID) in the Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.