@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-28T21:34:18.917Z")
public interface CfnFeatureGroupProps
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.*; Object offlineStoreConfig; Object onlineStoreConfig; CfnFeatureGroupProps cfnFeatureGroupProps = CfnFeatureGroupProps.builder() .eventTimeFeatureName("eventTimeFeatureName") .featureDefinitions(List.of(FeatureDefinitionProperty.builder() .featureName("featureName") .featureType("featureType") .build())) .featureGroupName("featureGroupName") .recordIdentifierFeatureName("recordIdentifierFeatureName") // the properties below are optional .description("description") .offlineStoreConfig(offlineStoreConfig) .onlineStoreConfig(onlineStoreConfig) .roleArn("roleArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFeatureGroupProps.Builder
A builder for
CfnFeatureGroupProps |
static class |
CfnFeatureGroupProps.Jsii$Proxy
An implementation for
CfnFeatureGroupProps |
Modifier and Type | Method and Description |
---|---|
static CfnFeatureGroupProps.Builder |
builder() |
default java.lang.String |
getDescription()
A free form description of a `FeatureGroup` .
|
java.lang.String |
getEventTimeFeatureName()
The name of the feature that stores the `EventTime` of a Record in a `FeatureGroup` .
|
java.lang.Object |
getFeatureDefinitions()
A list of `Feature` s.
|
java.lang.String |
getFeatureGroupName()
The name of the `FeatureGroup` .
|
default java.lang.Object |
getOfflineStoreConfig()
The configuration of an `OfflineStore` .
|
default java.lang.Object |
getOnlineStoreConfig()
The configuration of an `OnlineStore` .
|
java.lang.String |
getRecordIdentifierFeatureName()
The name of the `Feature` whose value uniquely identifies a `Record` defined in the `FeatureGroup` `FeatureDefinitions` .
|
default java.lang.String |
getRoleArn()
The Amazon Resource Name (ARN) of the IAM execution role used to create the feature group.
|
default java.util.List<CfnTag> |
getTags()
Tags used to define a `FeatureGroup` .
|
java.lang.String getEventTimeFeatureName()
A EventTime
is point in time when a new event occurs that corresponds to the creation or update of a Record
in FeatureGroup
. All Records
in the FeatureGroup
must have a corresponding EventTime
.
java.lang.Object getFeatureDefinitions()
Valid FeatureType
s are Integral
, Fractional
and String
.
FeatureName
s cannot be any of the following: is_deleted
, write_time
, api_invocation_time
.
You can create up to 2,500 FeatureDefinition
s per FeatureGroup
.
java.lang.String getFeatureGroupName()
java.lang.String getRecordIdentifierFeatureName()
default java.lang.String getDescription()
default java.lang.Object getOfflineStoreConfig()
default java.lang.Object getOnlineStoreConfig()
default java.lang.String getRoleArn()
default java.util.List<CfnTag> getTags()
static CfnFeatureGroupProps.Builder builder()
CfnFeatureGroupProps.Builder
of CfnFeatureGroupProps