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

OfflineStoreConfig

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

The configuration of an OfflineStore.

Provide an OfflineStoreConfig in a request to CreateFeatureGroup to create an OfflineStore.

To encrypt an OfflineStore using at rest data encryption, specify Amazon Web Services Key Management Service (KMS) key ID, or KMSKeyId, in S3StorageConfig.

interface OfflineStoreConfig {
DataCatalogConfig?: DataCatalogConfig | null;
DisableGlueTableCreation?: boolean | null;
S3StorageConfig: S3StorageConfig;
TableFormat?: TableFormat | null;
}

§Properties

§
DataCatalogConfig?: DataCatalogConfig | null
[src]

The meta data of the Glue table that is autogenerated when an OfflineStore is created.

§
DisableGlueTableCreation?: boolean | null
[src]

Set to True to disable the automatic creation of an Amazon Web Services Glue table when configuring an OfflineStore.

§
S3StorageConfig: S3StorageConfig
[src]

The Amazon Simple Storage (Amazon S3) location of OfflineStore.

§
TableFormat?: TableFormat | null
[src]

Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg.