public static interface CfnFeatureGroup.OfflineStoreConfigProperty
Provide an OfflineStoreConfig
in a request to CreateFeatureGroup
to create an OfflineStore
.
To encrypt an OfflineStore
using at rest data encryption, specify AWS Key Management Service (KMS) key ID, or KMSKeyId
, in S3StorageConfig
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; OfflineStoreConfigProperty offlineStoreConfigProperty = OfflineStoreConfigProperty.builder() .s3StorageConfig(S3StorageConfigProperty.builder() .s3Uri("s3Uri") // the properties below are optional .kmsKeyId("kmsKeyId") .build()) // the properties below are optional .dataCatalogConfig(DataCatalogConfigProperty.builder() .catalog("catalog") .database("database") .tableName("tableName") .build()) .disableGlueTableCreation(false) .tableFormat("tableFormat") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFeatureGroup.OfflineStoreConfigProperty.Builder
A builder for
CfnFeatureGroup.OfflineStoreConfigProperty |
static class |
CfnFeatureGroup.OfflineStoreConfigProperty.Jsii$Proxy
An implementation for
CfnFeatureGroup.OfflineStoreConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFeatureGroup.OfflineStoreConfigProperty.Builder |
builder() |
default java.lang.Object |
getDataCatalogConfig()
The meta data of the Glue table that is autogenerated when an `OfflineStore` is created.
|
default java.lang.Object |
getDisableGlueTableCreation()
Set to `True` to disable the automatic creation of an AWS Glue table when configuring an `OfflineStore` .
|
java.lang.Object |
getS3StorageConfig()
The Amazon Simple Storage (Amazon S3) location of `OfflineStore` .
|
default java.lang.String |
getTableFormat()
`CfnFeatureGroup.OfflineStoreConfigProperty.TableFormat`.
|
java.lang.Object getS3StorageConfig()
default java.lang.Object getDataCatalogConfig()
default java.lang.Object getDisableGlueTableCreation()
default java.lang.String getTableFormat()
static CfnFeatureGroup.OfflineStoreConfigProperty.Builder builder()