interface FeatureStoreOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.FeatureStoreOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_FeatureStoreOutputProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.FeatureStoreOutputProperty |
Python | aws_cdk.aws_sagemaker.CfnProcessingJob.FeatureStoreOutputProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » FeatureStoreOutputProperty |
Configuration for processing job outputs in Amazon SageMaker Feature Store.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const featureStoreOutputProperty: sagemaker.CfnProcessingJob.FeatureStoreOutputProperty = {
featureGroupName: 'featureGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| feature | string | The name of the Amazon SageMaker FeatureGroup to use as the destination for processing job output. |
featureGroupName
Type:
string
The name of the Amazon SageMaker FeatureGroup to use as the destination for processing job output.
Note that your processing script is responsible for putting records into your Feature Store.

.NET
Go
Java
Python
TypeScript