Interface CfnProcessingJob.FeatureStoreOutputProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnProcessingJob.FeatureStoreOutputProperty.Jsii$Proxy
- Enclosing class:
- CfnProcessingJob
@Stability(Stable)
public static interface CfnProcessingJob.FeatureStoreOutputProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 FeatureStoreOutputProperty featureStoreOutputProperty = FeatureStoreOutputProperty.builder()
         .featureGroupName("featureGroupName")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJob.FeatureStoreOutputPropertystatic final classAn implementation forCfnProcessingJob.FeatureStoreOutputProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The name of the Amazon SageMaker FeatureGroup to use as the destination for processing job output.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getFeatureGroupNameThe 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. - See Also:
 
- 
builder
 
-