Class: Aws::SageMaker::Types::UpdateFeatureGroupRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::UpdateFeatureGroupRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #feature_additions  ⇒ Array<Types::FeatureDefinition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Updates the feature group.
 - 
  
    
      #feature_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name or Amazon Resource Name (ARN) of the feature group that you’re updating.
 - 
  
    
      #online_store_config  ⇒ Types::OnlineStoreConfigUpdate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Updates the feature group online store configuration.
 - 
  
    
      #throughput_config  ⇒ Types::ThroughputConfigUpdate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new throughput configuration for the feature group.
 
Instance Attribute Details
#feature_additions ⇒ Array<Types::FeatureDefinition>
Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you’ve made a valid request. It takes some time after you’ve made a valid request for Feature Store to update the feature group.
      47883 47884 47885 47886 47887 47888 47889 47890  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 47883 class UpdateFeatureGroupRequest < Struct.new( :feature_group_name, :feature_additions, :online_store_config, :throughput_config) SENSITIVE = [] include Aws::Structure end  | 
  
#feature_group_name ⇒ String
The name or Amazon Resource Name (ARN) of the feature group that you’re updating.
      47883 47884 47885 47886 47887 47888 47889 47890  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 47883 class UpdateFeatureGroupRequest < Struct.new( :feature_group_name, :feature_additions, :online_store_config, :throughput_config) SENSITIVE = [] include Aws::Structure end  | 
  
#online_store_config ⇒ Types::OnlineStoreConfigUpdate
Updates the feature group online store configuration.
      47883 47884 47885 47886 47887 47888 47889 47890  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 47883 class UpdateFeatureGroupRequest < Struct.new( :feature_group_name, :feature_additions, :online_store_config, :throughput_config) SENSITIVE = [] include Aws::Structure end  | 
  
#throughput_config ⇒ Types::ThroughputConfigUpdate
The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.
      47883 47884 47885 47886 47887 47888 47889 47890  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 47883 class UpdateFeatureGroupRequest < Struct.new( :feature_group_name, :feature_additions, :online_store_config, :throughput_config) SENSITIVE = [] include Aws::Structure end  |